:root {
  --brand-primary: #0F1115;
  --brand-secondary: #6D6E71;
  --brand-accent: #C5A572;
  --surface: #FFFFFF;
  --surface-muted: #F4F4F5;
  --text: #1B1D22;
  --text-muted: #5A5C61;
  --border: #E4E4E7;
  --font-display: 'Inter Tight', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 32px);
  --radius: 2px;
  --space-xs: 4px; --space-sm: 8px; --space-md: 16px; --space-lg: 32px; --space-xl: 64px; --space-2xl: 96px;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; background: var(--surface); color: var(--text); font-family: var(--font-body); font-size: 16px; line-height: 1.55; -webkit-font-smoothing: antialiased; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; font-weight: 700; letter-spacing: -0.02em; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

/* HEADER (shared across ALL pages · do not redefine) */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--surface); border-bottom: 1px solid var(--border); padding: 12px 0; }
.site-header-inner { display: grid; grid-template-columns: auto 1fr auto auto; gap: 24px; align-items: center; }
.site-header .logo { display: inline-flex; align-items: center; }
.site-header .logo img { height: 52px; width: auto; max-width: 280px; object-fit: contain; }
@media (max-width: 820px) { .site-header .logo img { height: 44px; } }
.site-header nav { display: flex; gap: 24px; justify-content: center; }
.site-header nav a { font-size: 14px; font-weight: 600; color: var(--text); }
.site-header nav a:hover { color: var(--brand-accent); }
.site-header .secondary-cta { font-size: 13px; font-weight: 700; color: var(--text); border: 1px solid var(--text); padding: 10px 18px; border-radius: var(--radius); }
.site-header .primary-cta { font-size: 13px; font-weight: 700; color: var(--brand-primary); background: var(--brand-accent); padding: 12px 20px; border-radius: var(--radius); text-transform: uppercase; letter-spacing: 0.04em; }
.site-header .primary-cta:hover { filter: brightness(0.92); }
@media (max-width: 820px) {
  .site-header-inner { grid-template-columns: auto 1fr auto; }
  .site-header nav { display: none; }
  .site-header .secondary-cta { display: none; }
}

/* MOBILE BOTTOM PHONE CTA */
.mobile-phone-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--brand-accent); color: var(--brand-primary); text-align: center; padding: 14px; font-weight: 700; font-size: 15px; z-index: 99; box-shadow: 0 -2px 8px rgba(0,0,0,0.1); }
@media (max-width: 820px) { .mobile-phone-bar { display: block; } body { padding-bottom: 56px; } }

/* FOOTER */
.site-footer { background: var(--brand-primary); color: rgba(255,255,255,0.85); padding: var(--space-2xl) 0 var(--space-lg); margin-top: var(--space-2xl); }
.site-footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: var(--space-xl); margin-bottom: var(--space-xl); }
.site-footer h4 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: var(--space-md); font-weight: 700; }
.site-footer p, .site-footer a { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.7; }
.site-footer a:hover { color: var(--brand-accent); }
.site-footer .footer-brand img { height: 64px; width: auto; max-width: 220px; object-fit: contain; margin-bottom: var(--space-md); filter: brightness(0) invert(1); opacity: 0.92; }
.site-footer .footer-logo { display: inline-block; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 6px; }
.site-footer .trust-strip { display: flex; flex-wrap: wrap; gap: var(--space-md); padding: var(--space-md) 0; border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); margin-top: var(--space-md); }
.site-footer .trust-chip { font-size: 12px; font-weight: 700; padding: 6px 10px; border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius); color: #fff; }
.site-footer .legal { display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--space-md); margin-top: var(--space-md); font-size: 12px; color: rgba(255,255,255,0.5); }
.site-footer .social { display: flex; gap: var(--space-sm); margin-top: var(--space-md); }
.site-footer .social a { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; color: #fff; }
.site-footer .social a:hover { background: var(--brand-accent); border-color: var(--brand-accent); color: var(--brand-primary); }
@media (max-width: 820px) { .site-footer-grid { grid-template-columns: 1fr; gap: var(--space-lg); } }

/* GENERAL BUTTONS */
.btn-primary { display: inline-block; background: var(--brand-accent); color: var(--brand-primary); padding: 14px 24px; border-radius: var(--radius); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 0.04em; border: none; cursor: pointer; }
.btn-primary:hover { filter: brightness(0.92); }
.btn-secondary { display: inline-block; background: transparent; color: var(--text); border: 1px solid var(--text); padding: 14px 24px; border-radius: var(--radius); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 0.04em; cursor: pointer; }
.btn-secondary:hover { background: var(--text); color: var(--surface); }
