/*
Theme Name:   taiga-child
Theme URI:    https://taiga-mizokawa.art
Description:  SWELL Child Theme for taiga-mizokawa.art
Author:       Mai Mizokawa
Author URI:   https://follow-the-rabbit.com
Template:     swell
Version:      1.0.0
Text Domain:  taiga-child
*/

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&family=Noto+Sans+JP:wght@300;400;500&display=swap');

/* ============================================
   DESIGN TOKENS
============================================ */
:root {
  --color-bg:           #F5F0E8;
  --color-bg-dark:      #2A1F14;
  --color-bg-manga:     #F5EBD8;
  --color-text:         #2A1F14;
  --color-text-light:   #7A6A5A;
  --color-accent:       #8B5E3C;
  --color-border:       #D4C4B0;
  --color-white:        #FFFFFF;

  --font-sans:          'DM Sans', 'Noto Sans JP', sans-serif;
  --font-size-base:     16px;
  --font-size-sm:       13px;
  --font-size-xs:       11px;

  --spacing-xs:         0.5rem;
  --spacing-sm:         1rem;
  --spacing-md:         2rem;
  --spacing-lg:         4rem;

  --transition:         0.2s ease;
  --radius:             0px; /* no border-radius — design spec */
}

/* ============================================
   RESET / BASE
============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { font-size: var(--font-size-base); }

body {
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================
   SWELL OVERRIDE — reset default styles
============================================ */
.l-header, .l-footer, .l-main { all: unset; display: block; }
#wrapper { background: var(--color-bg); }
