/*
Theme Name:       Cassidine Site
Theme URI:        https://cassidineconsulting.com
Author:           Cassidine Consulting
Author URI:       https://cassidineconsulting.com
Description:      Custom theme for Cassidine Consulting. Renders the homepage, the rebuild offer page, scorecard, and consultation booking page as raw full-canvas HTML for pixel-perfect design control. Forest green + gold brand palette. DM Serif Display + Inter + JetBrains Mono.
Version:          1.0.0
Tested up to:     6.6
Requires PHP:     7.2
License:          Proprietary
License URI:      https://cassidineconsulting.com
Tags:             business, professional, consulting, custom-templates
Text Domain:      cassidine-site
*/

/* ============================================================
   Brand tokens (used by fallback templates only — the four
   custom HTML pages bring their own complete stylesheets).
   ============================================================ */
:root {
  --hero-deep: #0a1812;
  --hero-bg:   #102b22;
  --gold:      #c9a84c;
  --gold-deep: #a88a30;
  --cream:     #f5f3ed;
  --text-dark: #1b1f17;
  --text-dark-soft: rgba(27, 31, 23, 0.74);
  --text-light: #ffffff;
  --text-light-soft: rgba(255, 255, 255, 0.72);
  --serif: 'DM Serif Display', 'Times New Roman', Georgia, serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono:  'JetBrains Mono', 'SF Mono', monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--hero-deep);
  color: var(--text-light);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-deep); }

/* Fallback page styling — used only for pages NOT served via
   the custom Cassidine templates (e.g. blog, archives, etc.). */
.cc-fallback {
  max-width: 720px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  text-align: center;
}
.cc-fallback h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  color: var(--text-light);
  margin: 0 0 24px;
}
.cc-fallback h1 em {
  color: var(--gold);
  font-style: italic;
}
.cc-fallback .lede {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-light-soft);
  margin-bottom: 40px;
}
.cc-fallback .cta {
  display: inline-block;
  padding: 16px 28px;
  background: var(--gold);
  color: var(--hero-deep);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all 0.2s;
}
.cc-fallback .cta:hover {
  background: #d4b755;
  transform: translateY(-1px);
}
.cc-fallback .eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 24px;
}
.cc-fallback .entry-content { text-align: left; color: var(--text-light-soft); }
.cc-fallback .entry-content p { margin-bottom: 16px; }
