/* Bay Sunset — palette sampled from the client's own MARRY ME sunset photograph */

:root {
  --paper:      #FBF5EE;
  --paper-2:    #F5E9DC;
  --paper-3:    #EEDCCB;

  --ink:        #2B2036;
  --ink-2:      #3E2F4E;
  --ink-3:      #56425F;

  --coral:      #B84C2B;
  --coral-deep: #9C3D1E;
  --coral-ink:  #A83F23;
  --apricot:    #EE9F66;
  --mauve:      #AA7A8B;
  --violet:     #7A6987;

  --gold:       #C08A2E;
  --gold-lit:   #F2C86B;

  --neon:       #FF3FA0;
  --neon-2:     #38DCE6;

  /* text roles — secondary tints carry the plum hue, never gray */
  --on-paper:      var(--ink);
  --on-paper-soft: #6B5A72;
  --on-ink:        #F6EDE3;
  --on-ink-soft:   #C9B6C4;

  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-text:    "Karla", "Segoe UI", system-ui, sans-serif;

  /* modular scale, 1.25 */
  --t-xs:   0.8125rem;
  --t-sm:   0.9375rem;
  --t-base: 1.0625rem;
  --t-lg:   1.25rem;
  --t-xl:   1.5rem;
  --t-2xl:  clamp(1.45rem, 4.2vw, 2rem);
  --t-3xl:  clamp(1.75rem, 5.2vw, 3.25rem);
  --t-4xl:  clamp(2.05rem, 6.4vw, 4.25rem);
  --t-5xl:  clamp(2.5rem, 8.2vw, 5.5rem);

  --s-1:  0.375rem;
  --s-2:  0.75rem;
  --s-3:  1.125rem;
  --s-4:  1.75rem;
  --s-5:  2.5rem;
  --s-6:  3.5rem;
  --s-7:  5rem;
  --s-8:  7rem;

  --measure: 64ch;
  --page:    78rem;
  --gutter:  clamp(1.25rem, 5vw, 4rem);

  --radius:    4px;
  --radius-lg: 10px;

  /* depth: real offset plus soft blur, tinted plum rather than black */
  --lift-1: 0 2px 6px rgba(43, 32, 54, 0.10);
  --lift-2: 0 10px 28px -6px rgba(43, 32, 54, 0.22);
  --lift-3: 0 26px 60px -18px rgba(43, 32, 54, 0.34);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

