/*
 * Theme Name:  Brandcoves
 * Theme URI:   https://brandcoves.com
 * Description: Maison Commerce — the official Brandcoves theme. Cormorant Garamond + Outfit, warm parchment palette.
 * Version:     1.0.0
 * Author:      Brandcoves
 * Text Domain: brandcoves
 * Requires at least: 6.3
 * Requires PHP: 8.1
 */

/* ── Design tokens (global scope, mirrors plugin's :root) ──────── */
:root {
  --bc-cream:         #F7F4EF;
  --bc-white:         #FFFFFF;
  --bc-ink:           #1A1614;
  --bc-ink-light:     #4A4440;
  --bc-muted:         #8C8278;
  --bc-border:        #E8E3DC;
  --bc-border-strong: #CBC3BA;
  --bc-accent:        #C9503A;
  --bc-accent-dark:   #A83D2A;
  --bc-green:         #4A6741;
  --bc-radius:        4px;
  --bc-font-display:  'Cormorant Garamond', Georgia, serif;
  --bc-font-body:     'Outfit', system-ui, sans-serif;
  --bc-transition:    0.22s cubic-bezier(.4,0,.2,1);

  --bc-header-h:      64px;
  --bc-footer-ink:    #14110F;
}

/* ── Base reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bc-cream);
  color: var(--bc-ink);
  font-family: var(--bc-font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* WordPress admin bar offset */
body.admin-bar .bc-header { top: 32px; }
@media screen and (max-width: 782px) {
  body.admin-bar .bc-header { top: 46px; }
}
