/* Phoenix Artisans — Color tokens
   Source: Phoenix_Artisans_Brand_Guide_v1.0.docx */
:root {
  /* Base palette (as named in the brand guide) */
  --pa-linen: #E9E1CE;      /* Warm Linen — background */
  --pa-taupe: #917F67;      /* Warm Taupe — primary brand */
  --pa-taupe-hover: #7C6A55;
  --pa-heading: #4F463A;    /* Dark Heading */
  --pa-body: #5F584D;       /* Body Text */
  --pa-footer: #6B5B49;     /* Footer */
  --pa-gold: #B89A67;       /* Accent Gold */
  --pa-white: #FFFFFF;

  /* Derived neutrals (not in guide; interpolated for utility) */
  --pa-linen-light: #F5F0E4;
  --pa-taupe-soft: #EFE7D8;   /* linen tinted toward taupe, for cards/panels */
  --pa-border: #D8CDB4;

  /* Semantic aliases */
  --color-bg: var(--pa-linen);
  --color-bg-alt: var(--pa-linen-light);
  --color-surface: var(--pa-white);
  --color-surface-muted: var(--pa-taupe-soft);
  --color-border: var(--pa-border);

  --color-text-heading: var(--pa-heading);
  --color-text-body: var(--pa-body);
  --color-text-muted: var(--pa-taupe);
  --color-text-inverse: var(--pa-white);

  --color-brand: var(--pa-taupe);
  --color-brand-hover: var(--pa-taupe-hover);
  --color-accent: var(--pa-gold);

  --color-footer-bg: var(--pa-footer);
  --color-footer-text: var(--pa-linen-light);

  --color-link: var(--pa-taupe);
  --color-link-hover: var(--pa-heading);
}

/* Phoenix Artisans — Typography tokens */
@font-face {
  font-family: 'Cormorant Garamond';
  src: local('Cormorant Garamond');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=Lato:wght@300;400;700;900&display=swap');

:root {
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Lato', 'Source Sans Pro', -apple-system, sans-serif;

  /* Recommended sizes, per brand guide */
  --text-hero: clamp(40px, 5vw, 60px);   /* 56–64px */
  --text-section: 42px;
  --text-small-heading: 28px;
  --text-body: 18px;
  --text-small: 16px;
  --text-eyebrow: 13px;

  --leading-display: 1.15;
  --leading-body: 1.6;

  --tracking-eyebrow: 0.16em;
  --tracking-heading: 0.01em;
}

/* Phoenix Artisans — Spacing, radius, shadow, motion tokens
   (not specified in brand guide; interpolated to match its restrained, boutique feel) */
:root {
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  --radius-sm: 4px;
  --radius-md: 8px;   /* buttons, per brand guide */
  --radius-lg: 12px;
  --radius-full: 999px;

  --shadow-soft: 0 8px 24px rgba(79, 70, 58, 0.08);
  --shadow-card: 0 2px 8px rgba(79, 70, 58, 0.06);

  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast: 150ms;
  --duration-standard: 240ms;

  --content-max-width: 1200px;
}
