/* Amu Brand Variables - Garden Eight Inspired */

:root {
    /* Colors - Garden Eight Palette */
    --color-base: #DCD7D0;            /* 温かみのあるベージュ背景 */
    --color-base-warm: #E8E4DE;       /* 明るいベージュ */
    --color-ink: #1E1F1F;             /* 深い黒 - メインテキスト */
    --color-ink-soft: #3A3B3B;        /* 柔らかい黒 */
    --color-stone: #9A9590;           /* ミュートテキスト */
    --color-mist: #C4BFB8;            /* ボーダー色 */

    /* アクセントカラー */
    --color-onsen: #DC5648;           /* コーラルレッド */
    --color-onsen-deep: #C44A3D;      /* ホバー時 */
    --color-bamboo: #8FA67A;          /* 竹の色 */
    --color-clay: #C4A882;            /* 土の色 */

    /* 機能色 */
    --color-white: #FFFFFF;
    --color-overlay: rgba(30, 31, 31, 0.5);
    --color-overlay-light: rgba(30, 31, 31, 0.08);
    --color-glow: rgba(220, 86, 72, 0.15);

    /* Typography - エレガントな組版 */
    --font-heading: "Shippori Mincho", "游明朝", "Yu Mincho", serif;
    --font-body: "Noto Sans JP", "Hiragino Sans", sans-serif;

    --font-size-hero: clamp(3rem, 10vw, 6rem);
    --font-size-xl: clamp(1.5rem, 3vw, 2.5rem);
    --font-size-lg: 1.375rem;
    --font-size-md: 1.0625rem;
    --font-size-base: 0.9375rem;
    --font-size-sm: 0.875rem;
    --font-size-xs: 0.75rem;

    --line-height-tight: 1.2;
    --line-height-base: 1.7;
    --line-height-relaxed: 1.9;

    --letter-spacing-tight: -0.02em;
    --letter-spacing-base: 0.02em;
    --letter-spacing-wide: 0.08em;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;

    /* Layout */
    --container-max-width: 960px;
    --container-padding: 40px;

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Borders - ピル形状 */
    --border-thin: 1px solid var(--color-mist);
    --border-radius-sm: 4px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 28px;
    --border-radius-full: 100px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(30, 31, 31, 0.06);
    --shadow-md: 0 8px 24px rgba(30, 31, 31, 0.08);
    --shadow-lg: 0 16px 48px rgba(30, 31, 31, 0.12);
    --shadow-inner: inset 0 2px 4px rgba(30, 31, 31, 0.04);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-blur: blur(20px);
}

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500&family=Shippori+Mincho:wght@400;500;600&display=swap');

/* Responsive */
@media (max-width: 768px) {
    :root {
        --font-size-hero: clamp(2.5rem, 12vw, 4rem);
        --font-size-xl: 1.5rem;
        --font-size-lg: 1.25rem;
        --container-padding: 24px;
        --space-xl: 3rem;
        --space-2xl: 4rem;
    }
}
