/* ==========================================================================
   AZUR — Base : variables, reset, typographie
   ========================================================================== */


/* ── 1. Variables CSS ──────────────────────────────────────────────────────── */

:root {

  /* Palette */
  --ivory:      #F6F2EB;   /* fond principal */
  --cream:      #ECE7DD;   /* fond secondaire */
  --deep:       #1A1714;   /* hero, footer, citations */
  --charcoal:   #2C2824;   /* texte principal */
  --gold:       #B8956A;   /* accents, prix, filets */
  --gold-light: #D4B896;   /* hovers */
  --warm-grey:  #8E857A;   /* texte secondaire */
  --muted:      #6B635A;   /* texte éditorial */
  --sand:       #C9BEA8;   /* bordures, séparateurs */
  --white:      #FFFFFF;   /* cadres photo sur fond sombre */

  /* Typographie */
  --font-cormorant:   'Cormorant Garamond', Georgia, serif;
  --font-dm-sans:     'DM Sans', system-ui, sans-serif;
  --font-baskerville: 'Libre Baskerville', Georgia, serif;

  /* Espacements */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  8rem;

  /* Transitions */
  --transition-base: 0.3s ease;

  /* Header */
  --header-height: 80px;   /* hauteur du header fixe — sert à décaler .site-main */
}


/* ── 2. Reset ──────────────────────────────────────────────────────────────── */

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

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

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--ivory);
  color: var(--charcoal);
  font-family: var(--font-cormorant);
}

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

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

ul,
ol {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
  border: none;
  background: none;
}

button {
  cursor: pointer;
}


/* ── 3. Typographie — application des 3 familles ──────────────────────────── */

/* Cormorant Garamond → titres, prix, numéros */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-cormorant);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem);   font-weight: 300; }
h2 { font-size: clamp(1.8rem, 4vw, 3.2rem); font-weight: 300; }
h3 { font-size: clamp(1.4rem, 3vw, 2.2rem); font-weight: 400; }
h4 { font-size: clamp(1.1rem, 2vw, 1.6rem); font-weight: 400; }
h5 { font-size: 1.1rem;                      font-weight: 500; }
h6 { font-size: 1rem;                        font-weight: 500; }

/* Libre Baskerville → paragraphes éditoriaux */
p {
  font-family: var(--font-baskerville);
  font-style: italic;
  font-weight: 400;
  line-height: 1.85;
  color: var(--muted);
}

/* DM Sans → navigation, labels, boutons, breadcrumbs */
nav,
button,
.label,
.breadcrumb,
.nav-label,
.btn {
  font-family: var(--font-dm-sans);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
}

/* Prix en Cormorant Garamond */
.price,
.woocommerce-Price-amount {
  font-family: var(--font-cormorant);
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--gold);
}

/* Citations en Cormorant Garamond italic */
blockquote,
.citation {
  font-family: var(--font-cormorant);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: var(--charcoal);
}


/* Point doré du logo et du titre hero */
.logo-dot {
  color: var(--gold);
}


/* ── 4. Cadre photo — signature visuelle ──────────────────────────────────── */

.azur-framed {
  border: 10px solid var(--deep);
  padding: 28px;
  background: linear-gradient(135deg, #ECE7DD 0%, #F6F2EB 50%, #E8E3D8 100%);
  box-shadow: 4px 4px 20px rgba(0,0,0,0.18), 8px 8px 40px rgba(0,0,0,0.08), inset 3px 3px 8px rgba(0,0,0,0.2), inset -3px -3px 8px rgba(0,0,0,0.1);
}

.azur-framed.thin  { border-width: 6px;  padding: 18px; }
.azur-framed.gold  { border-color: #8B7355; }
.azur-framed.white { border-color: var(--white); background: var(--white); }
.azur-framed.large { border-width: 12px; padding: 36px; }
