﻿/*
 * Pinckards Design Tokens (Phase 3A)
 *
 * Source of truth for every value here: site-ops/DESIGN_SYSTEM.md.
 * Values are taken verbatim from the active Elementor kit (post 512) via
 * the Premium Addons MCP's get-global-settings/get-theme-styles tools -
 * per that toolset's own contract, it can read the kit but cannot write
 * it, so this stylesheet is the practical token layer for the Phase 3A
 * build. When native Elementor Variables become genuinely available
 * (see ELEMENTOR_ARCHITECTURE.md's editor_v2/atomic-support finding),
 * these same values migrate there - this file is written so that move
 * is a mechanical copy, not a redesign.
 */

:root {
  /* ---- Colors ---- */
  --background-primary: #FAFAF8;
  --background-secondary: #556245;
  --background-tertiary: #FEF2DC;
  --text-primary: #333131;
  --text-secondary: #A1998F;
  --text-on-dark: #FAFAF8;
  --accent-primary: #AF5C3C;
  --accent-secondary: #556245;
  --border-subtle: #E5E1D6;

  /* ---- Typography ---- */
  --font-display: 'INLANDER ROUGH', serif;      /* Kit "Primary Headline" - self-hosted @font-face already loaded site-wide (confirmed on / and /about/), not declared here */
  --font-heading: 'Cormorant Garamond', Georgia, serif; /* Kit "Secondary Headline" */
  --font-body: 'Inter', sans-serif;              /* Kit "Body Text" */

  --text-hero: 600 clamp(40px, 5.5vw, 72px)/1.05 var(--font-display);
  --text-h1: 600 clamp(32px, 4vw, 48px)/1.1 var(--font-display);
  --text-h2: 600 28px/1.3 var(--font-heading);
  --text-h3: 600 22px/1.35 var(--font-heading);
  --text-h4: 600 16px/1.4 var(--font-body);
  --text-body: 400 16px/1.6 var(--font-body);
  --text-body-secondary: 400 14px/1.6 var(--font-body);
  --text-eyebrow: 500 13px/1 var(--font-display);
  --text-nav: 500 15px/1 var(--font-body);
  --text-button: 500 15px/1 var(--font-body);
  --text-quote: 600 italic 26px/1.4 var(--font-heading);

  --eyebrow-letter-spacing: 1.7px;
  --heading-letter-spacing: 1.1px;

  /* ---- Layout ---- */
  --width-container: 1140px;
  --width-narrow: 680px;
  --width-wide: 1400px;

  --section-spacing: 120px;
  --section-spacing-sm: 64px;
  --section-spacing-mobile: 64px;
  --section-spacing-sm-mobile: 40px;

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;

  --grid-gap: 24px;
  --grid-gap-mobile: 16px;

  /* ---- Shape ---- */
  --radius-sm: 4px;
  --radius-md: 8px;
  --hairline: 0.5px;
}

/* ---- Common UI ---- */

.pinckards-rebuilt .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: var(--accent-primary);
  color: var(--text-on-dark);
  font: var(--text-button);
  letter-spacing: 0.4px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: none;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.pinckards-rebuilt .btn-primary:hover { background: #8f4a2f; }

.pinckards-rebuilt .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 31px;
  background: transparent;
  color: var(--text-primary);
  font: var(--text-button);
  letter-spacing: 0.4px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 1px solid var(--text-primary);
  text-decoration: none;
  transition: all 0.2s ease;
}
.pinckards-rebuilt .btn-secondary:hover { background: var(--text-primary); color: var(--text-on-dark); }

.pinckards-rebuilt .text-link {
  color: var(--text-primary);
  text-decoration: underline;
  text-decoration-color: var(--accent-primary);
  text-underline-offset: 3px;
}

.pinckards-rebuilt .eyebrow {
  font: var(--text-eyebrow);
  letter-spacing: var(--eyebrow-letter-spacing);
  text-transform: uppercase;
  color: var(--accent-primary);
}

.pinckards-rebuilt .section--light-on-dark {
  background: var(--background-secondary);
  color: var(--text-on-dark);
}
.pinckards-rebuilt .section--light-on-dark .eyebrow { color: var(--background-tertiary); }
.pinckards-rebuilt .section--light-on-dark .btn-secondary { color: var(--text-on-dark); border-color: var(--text-on-dark); }
.pinckards-rebuilt .section--light-on-dark .btn-secondary:hover { background: var(--text-on-dark); color: var(--background-secondary); }

.pinckards-rebuilt .card {
  background: var(--background-primary);
  border: var(--hairline) solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
}

