/* ============================================
   Lift My Spa — Blog Brand Stylesheet
   Pulled directly from liftmyspa.com (GHL)
   Brand vars match the live site:
     --color-mcjcftyz: #950819  (primary deep red)
     --color-mcjbtgij: #F3F0EC  (cream bg)
     --color-mcnw0qea: #BBCAA1  (sage accent)
     --color-mcnpzs3c: #F8D6D2  (blush accent)
   ============================================ */

:root {
  /* Brand palette (live site) */
  --brand-red: #950819;
  --brand-red-dark: #6e0612;
  --brand-red-soft: rgba(149, 8, 25, 0.08);

  --brand-cream: #F3F0EC;
  --brand-cream-dark: #E8E2D9;

  --brand-sage: #BBCAA1;
  --brand-blush: #F8D6D2;

  --neutral-100: #FFFFFF;
  --neutral-200: #F6F6F6;
  --neutral-300: #E2E2E2;
  --neutral-500: #757575;
  --neutral-700: #3A3A3A;
  --neutral-900: #1A1A1A;

  --text-primary: #1A1A1A;
  --text-secondary: #555555;
  --text-muted: #888888;
  --text-on-red: #FFFFFF;

  /* Typography */
  --headline-font: 'Manrope', system-ui, -apple-system, sans-serif;
  --body-font: 'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --container-max: 1200px;
  --container-narrow: 760px;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Shadow */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
}

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

/* ============================================
   Reset
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--neutral-100);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--headline-font);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
  color: var(--text-primary);
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
p { margin: 0 0 1em; }
a {
  color: var(--brand-red);
  text-decoration: none;
  transition: color 0.15s ease;
}
a:hover { color: var(--brand-red-dark); }
img { max-width: 100%; height: auto; display: block; }
ul { padding-left: 1.5em; }

/* ============================================
   Container
   ============================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--headline-font);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--brand-red);
  color: var(--text-on-red);
}
.btn-primary:hover {
  background: var(--brand-red-dark);
  color: var(--text-on-red);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--brand-red);
  border-color: var(--brand-red);
}
.btn-outline:hover {
  background: var(--brand-red);
  color: var(--text-on-red);
}
.btn-light {
  background: var(--neutral-100);
  color: var(--brand-red);
}
.btn-light:hover {
  background: var(--brand-cream);
  color: var(--brand-red-dark);
}
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ============================================
   Header
   ============================================ */
.site-header {
  background: var(--neutral-100);
  border-bottom: 1px solid var(--neutral-300);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.97);
}
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 16px 0;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo img {
  height: 56px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--headline-font);
}
.main-nav a:hover { color: var(--brand-red); }
.main-nav a.active { color: var(--brand-red); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-region {
  font-family: var(--headline-font);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
}

@media (max-width: 880px) {
  .main-nav { display: none; }
  .header-region { display: none; }
  .logo img { height: 44px; }
}

/* ============================================
   Footer  — replicates the live site footer
   White logo on deep red background
   ============================================ */
.site-footer {
  background: var(--brand-red);
  color: var(--text-on-red);
  padding: 64px 0 32px;
  margin-top: 80px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.footer-logo img {
  height: 64px;
  width: auto;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}
.footer-nav a {
  color: rgba(255, 255, 255, 0.95);
  font-family: var(--headline-font);
  font-weight: 600;
  font-size: 0.92rem;
}
.footer-nav a:hover {
  color: var(--brand-cream);
}
.footer-bottom {
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-copyright {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}
.footer-disclaimer {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 100%;
  line-height: 1.65;
}
@media (max-width: 640px) {
  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-nav { gap: 18px; }
}
