/*
  Central design tokens for the Martin Wedding site.
  Change colors, fonts and spacing here — nothing else in the CSS should
  hardcode a color value outside this file.
*/
:root {
  /* Mediterranean palette: white Ibiza architecture, sand, warm light.
     Lightened and desaturated pass — less red weight, more pastel, more
     white space breathing room than the original saturated set. */
  --color-white: #ffffff;
  --color-warm-white: #fdfbf7;
  --color-sand: #f1ebe1;
  --color-sand-deep: #d9cfc0;
  --color-stone: #f7f3ed;
  --color-ink: #33362f;
  --color-ink-soft: #66655c;
  --color-line: #e6ded2;
  --color-mediterranean: #9bbbc0;
  --color-mediterranean-deep: #527f88;
  --color-terracotta: #bd8a78;

  /* Watercolor accent tones — a soft nod to the couple's save-the-date
     artwork (peach/blush sky, sage leaf). Used sparingly, as accents only. */
  --color-blush: #f7ebe5;
  --color-blush-deep: #dfc9bb;
  --color-sage: #c2cbb8;

  /* New pastel tones for the lighter Mediterranean direction. */
  --color-dusty-pink: #d8b9b4;
  --color-pale-blue: #e0ebeb;
  --color-soft-olive: #b7bba5;
  --color-pale-yellow: #f4efdf;

  /* Typography */
  --font-serif: "Fraunces", "Iowan Old Style", "Palatino Linotype", serif;
  --font-sans: "Jost", "Helvetica Neue", Arial, sans-serif;
  --font-script: "Alex Brush", "Brush Script MT", cursive;

  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.75rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-xxl: 8rem;

  /* Misc */
  --radius: 2px;
  --max-width: 1180px;
  --transition-slow: 900ms cubic-bezier(0.22, 1, 0.36, 1);
  --transition-medium: 450ms cubic-bezier(0.22, 1, 0.36, 1);
}
