/* ============================================================
   BASE — variables, reset, typography
   ============================================================ */

:root {
  /* Surfaces */
  --bg:          #f5f0e6;       /* warm cream — primary surface */
  --bg-soft:     #ede6d6;       /* slightly deeper cream */
  --surface:     #ffffff;
  --ink:         #2a2723;       /* deep warm charcoal — main text */
  --ink-soft:    #58524a;
  --ink-muted:   #8a8278;
  --line:        rgba(42, 39, 35, 0.12);

  /* Dark surfaces (used in hero, footer, modal, CTAs) */
  --dark:        #1f1d1a;
  --dark-2:      #2a2723;
  --dark-3:      #383330;
  --on-dark:     #f5f0e6;
  --on-dark-soft:#c9c2b4;
  --on-dark-muted:#8a8278;
  --line-dark:   rgba(245, 240, 230, 0.14);

  /* Accent — warm amber/gold for CTAs (construction-appropriate, not pest-control green) */
  --accent:      #e8a23a;       /* primary CTA */
  --accent-2:    #f0b75a;       /* hover/lighter */
  --accent-ink:  #2a1d08;       /* text on accent */

  /* Type */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Misc */
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow:    0 10px 30px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
  --container: 1200px;
  --nav-h:     70px;

  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.25rem; }

p  { color: var(--ink-soft); }

::selection { background: var(--accent); color: var(--accent-ink); }
