/*
 * tokens.css
 * Design system foundation — all CSS custom properties.
 * Every other stylesheet imports from here; never hardcode values elsewhere.
 */

:root {

  /* ─── Colors ──────────────────────────────────────────────────────────── */

  --color-primary:   #1A0A00;   /* Deep espresso — main brand tone            */
  --color-accent:    #8B2635;   /* Burgundy red — highlights, CTAs             */
  --color-beige:     #F5F0E8;   /* Warm parchment — backgrounds, surfaces      */
  --color-ivory:     #FCF8F2;   /* Soft ivory — elevated cards, editorial air  */
  --color-wine:      #6F2432;   /* A deeper wine tone for selective emphasis   */
  --color-olive:     #6F6A52;   /* Muted vineyard olive for nuanced contrast   */
  --color-gold:      #B49A6C;   /* Quiet antique gold — sparing accents        */
  --color-dark:      #111111;   /* Near-black — headings, strong contrast      */
  --color-text:      #3D3530;   /* Warm dark brown — body copy                 */
  --color-text-soft: #5C4B43;   /* Softer editorial body copy                  */

  --color-white:     #FFFFFF;
  --color-border:    #DDD5C8;   /* Subtle warm border                          */
  --color-muted:     #9E918A;   /* Secondary text, captions                    */


  /* ─── Spacing ─────────────────────────────────────────────────────────── */

  --space-xs:  0.25rem;   /*  4px */
  --space-sm:  0.75rem;   /* 12px */
  --space-md:  1.5rem;    /* 24px */
  --space-lg:  3rem;      /* 48px */
  --space-xl:  6rem;      /* 96px */
  --space-2xl: 10rem;     /* 160px */
  --space-section: 7.5rem; /* 120px */
  --space-gallery: 5rem;  /* 80px */


  /* ─── Layout ──────────────────────────────────────────────────────────── */

  --container-width:       1280px;
  --container-padding:     var(--space-md);
  --container-width-narrow: 800px;
  --container-width-wide:  1440px;
  --measure-copy:          34rem;


  /* ─── Typography — font families ─────────────────────────────────────── */

  --font-serif: "Cormorant Garamond", "Georgia", serif;
  --font-sans:  "Jost", "Inter", system-ui, sans-serif;


  /* ─── Typography — scale ──────────────────────────────────────────────── */

  --text-xs:   0.75rem;    /* 12px */
  --text-sm:   0.875rem;   /* 14px */
  --text-base: 1rem;       /* 16px */
  --text-lg:   1.125rem;   /* 18px */
  --text-xl:   1.25rem;    /* 20px */
  --text-2xl:  1.5rem;     /* 24px */
  --text-3xl:  2rem;       /* 32px */
  --text-4xl:  2.75rem;    /* 44px */
  --text-5xl:  3.75rem;    /* 60px */
  --text-6xl:  5rem;       /* 80px */


  /* ─── Typography — leading & tracking ────────────────────────────────── */

  --leading-tight:  1.1;
  --leading-snug:   1.35;
  --leading-normal: 1.6;
  --leading-loose:  1.8;

  --tracking-tight:   -0.03em;
  --tracking-normal:   0em;
  --tracking-wide:     0.08em;
  --tracking-widest:   0.18em;


  /* ─── Border radius ───────────────────────────────────────────────────── */

  --radius-sm:   2px;
  --radius-md:   6px;
  --radius-lg:   12px;
  --radius-full: 999px;


  /* ─── Transitions ─────────────────────────────────────────────────────── */

  --ease-default: cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast:   150ms;
  --duration-base:   250ms;
  --duration-slow:   450ms;


  /* ─── Shadows ─────────────────────────────────────────────────────────── */

  --shadow-sm: 0 1px 3px rgba(26, 10, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(26, 10, 0, 0.12);
  --shadow-lg: 0 12px 40px rgba(26, 10, 0, 0.18);


  /* ─── Z-index layers ──────────────────────────────────────────────────── */

  --z-base:    0;
  --z-above:   10;
  --z-overlay: 100;
  --z-modal:   200;
  --z-header:  300;
  --z-toast:   400;

}

/* A slightly more generous reading scale on desktop keeps the editorial
 * typography comfortable without changing the compact mobile layout. */
@media (min-width: 769px) {
  :root {
    --text-xs:   0.8125rem; /* 13px */
    --text-sm:   0.9375rem; /* 15px */
    --text-base: 1.0625rem; /* 17px */
    --text-lg:   1.25rem;   /* 20px */
  }
}
