/* ===========================================================
   Silvermoon Landscaping Sarasota — Design Tokens
   Direction: "Gallery Monograph" — ink, paper, brass.
   Deliberately divergent from the warm-terracotta build.
   =========================================================== */

:root {
  /* Canvas */
  --ink:        #0e0e0c;        /* primary dark surface */
  --ink-2:      #161614;        /* card/elevated dark */
  --ink-3:      #1f1f1c;        /* hairline dark */
  --paper:      #f1ead8;        /* warm off-white type */
  --paper-2:    #e6dec7;        /* muted paper */
  --paper-3:    #c9c0a7;        /* deep muted paper */
  --rule:       #2a2a26;        /* hairline on dark */
  --rule-light: #d8d0b8;        /* hairline on paper */

  /* Accent — restrained brass; used at most twice per surface */
  --brass:      #b08754;
  --brass-deep: #8a6a3e;

  /* Type */
  --display: 'Cormorant Garamond', 'EB Garamond', 'Iowan Old Style', Georgia, serif;
  --body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --mono:    'JetBrains Mono', 'IBM Plex Mono', ui-monospace, Menlo, monospace;

  /* Scale (fluid) */
  --step--1: clamp(0.78rem, 0.74rem + 0.2vw, 0.86rem);
  --step-0:  clamp(0.95rem, 0.90rem + 0.25vw, 1.05rem);
  --step-1:  clamp(1.12rem, 1.05rem + 0.4vw, 1.28rem);
  --step-2:  clamp(1.4rem,  1.25rem + 0.7vw, 1.7rem);
  --step-3:  clamp(1.9rem,  1.55rem + 1.6vw, 2.6rem);
  --step-4:  clamp(2.6rem,  2.0rem  + 2.8vw, 4.0rem);
  --step-5:  clamp(3.4rem,  2.5rem  + 4.2vw, 5.6rem);
  --step-6:  clamp(4.5rem,  3.2rem  + 6.0vw, 7.6rem);

  /* Layout */
  --maxw:     1320px;
  --gutter:   clamp(1.25rem, 1.0rem + 1.5vw, 2.5rem);
  --rule-w:   1px;
  --radius:   0px;             /* monograph — no rounded cards */
  --shadow:   none;            /* hard-edged; borders do the work */
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
