/* ============================================================
   Theme: NORD  -  light, warm, Scandinavian minimal
   ------------------------------------------------------------
   For: Scandi / modern brunch / minimalist cafes (the Moose
   family - "Swedish brunch" energy, built fresh and generic).
   Mood: morning light in a Copenhagen cafe. Warm oat and bone,
   blonde wood, a honey-amber accent, a calm editorial serif,
   generous whitespace, sharp restrained corners. Buttons carry
   dark text on amber, the way Scandi signage does.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Newsreader:opsz,wght@6..72,400;6..72,500;6..72,600&family=Hanken+Grotesk:wght@400;500;600;700&display=swap');

.theme-nord {
  /* -------- Surfaces (warm oat / bone) ------------------- */
  --bg:        #F7F4ED;
  --bg-2:      #EEE9DE;
  --surface:   #FFFFFF;

  /* -------- Text (warm charcoal) ------------------------- */
  --fg:            #232019;
  --fg-muted:      #6B655B;
  --heading-color: #232019;

  /* -------- Accent (honey amber) + soft tan -------------- */
  --accent:        #D9A032;   /* fills, rule - dark text on it  */
  --accent-bright: #976812;   /* deep caramel - links/prices AA */
  --accent-hover:  #C28A1E;
  --accent-2:      #B99A6A;   /* soft tan - decorative          */
  --on-accent:     #232019;   /* dark text on amber (Scandi)    */

  --hairline:   rgba(35, 32, 25, 0.12);
  --hairline-2: rgba(35, 32, 25, 0.22);

  /* -------- Hero (soft warm veil) ------------------------ */
  --hero-ink: #FFFFFF;
  --hero-min-h: 88vh;
  --hero-overlay:
    radial-gradient(120% 100% at 50% 44%, rgba(35,32,25,0.18) 0%, rgba(35,32,25,0.40) 70%, rgba(30,27,20,0.74) 100%),
    linear-gradient(180deg, rgba(35,32,25,0.10) 0%, rgba(30,27,20,0.66) 100%);

  /* -------- Footer (warm charcoal) ----------------------- */
  --footer-bg:     #232019;
  --footer-fg:     rgba(247, 244, 237, 0.78);
  --footer-strong: #FFFFFF;
  --footer-head:   #D9A032;

  /* -------- Type ----------------------------------------- */
  --font-display: 'Newsreader', Georgia, 'Times New Roman', serif;
  --font-body:    'Hanken Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --fs-hero: clamp(2.6rem, 6vw + 1rem, 5rem);
  --heading-weight: 500;
  --heading-tracking: -0.01em;
  --eyebrow-tracking: 0.3em;

  /* -------- Sharp, restrained corners -------------------- */
  --radius-1: 2px;
  --radius-2: 3px;
  --radius-3: 6px;
  --radius-btn: 4px;   /* Scandi signage - barely-rounded, not a pill */
  --rule-color: var(--accent);
  --shadow-1: 0 1px 2px rgba(35,32,25,0.04), 0 8px 24px rgba(35,32,25,0.06);
  --shadow-2: 0 16px 40px rgba(35,32,25,0.10);
}

/* ---- Structural personality: airy, minimal ---------------- */

/* Borderless hairline menu - maximal restraint */
.theme-nord .menu-group {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}
.theme-nord .menu-group__title {
  border-bottom: 1px solid var(--hairline-2);
}

/* A touch more air between sections */
.theme-nord section { padding-block: clamp(var(--space-9), 11vw, var(--space-10)); }

/* Calm, lighter intro lede */
.theme-nord .intro__lede { font-weight: 400; }
