@charset "UTF-8";

/* ==========================================================================
   Design Tokens — Business Ship Corporate
   A single source of truth for colors, typography, spacing, and effects.
   ========================================================================== */

:root {
    /* ── Color Palette ──────────────────────────────────────────────────── */

    /* Primary — Champagne Gold */
    --color-primary: #C5A47E;
    --color-primary-hover: #AB8860;
    --color-primary-light: rgba(197, 164, 126, 0.12);
    --color-primary-subtle: rgba(197, 164, 126, 0.06);

    /* Neutral */
    --color-text: #2D2D2D;
    --color-text-light: #6B6B6B;
    --color-text-muted: #999999;
    --color-surface: #FFFFFF;
    --color-bg: #FFFFFF;
    --color-bg-warm: #F9F8F6;
    --color-bg-accent: #F0EDE8;
    --color-border: #E6E1DC;
    --color-border-light: rgba(0, 0, 0, 0.06);

    /* Functional */
    --color-line-green: #06C755;
    --color-footer-bg: #2A2A2A;
    --color-footer-text: #CCCCCC;
    --color-overlay: rgba(0, 0, 0, 0.03);

    /* ── Typography ─────────────────────────────────────────────────────── */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Noto Sans JP', sans-serif;

    /* Scale (rem based on 62.5% root = 10px) */
    --text-display: clamp(3.2rem, 5vw, 4.8rem);
    --text-h1: clamp(2.4rem, 4vw, 3.2rem);
    --text-h2: 2.8rem;
    --text-h3: 2.4rem;
    --text-subtitle: 1.8rem;
    --text-body: 1.6rem;
    --text-small: 1.4rem;
    --text-caption: 1.2rem;
    --text-micro: 1rem;

    /* Tracking */
    --tracking-wide: 0.15em;
    --tracking-normal: 0.08em;
    --tracking-tight: 0.03em;

    /* ── Spacing ─────────────────────────────────────────────────────────── */
    --space-2xs: 4px;
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 40px;
    --space-xl: 64px;
    --space-2xl: 80px;
    --space-3xl: 120px;

    /* ── Layout ──────────────────────────────────────────────────────────── */
    --width-container: 1100px;
    --width-narrow: 800px;
    --width-wide: 1440px;

    /* ── Radius ──────────────────────────────────────────────────────────── */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* ── Elevation (Shadows) ─────────────────────────────────────────────── */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.1);
    --shadow-gold: 0 8px 30px rgba(197, 164, 126, 0.15);
    --shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.04);

    /* ── Transitions ─────────────────────────────────────────────────────── */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --duration-fast: 0.2s;
    --duration-normal: 0.35s;
    --duration-slow: 0.6s;
    --t-fast: 0.3s ease;
    --t-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

    /* ── Z-Index Scale ───────────────────────────────────────────────────── */
    --z-base: 1;
    --z-dropdown: 10;
    --z-sticky: 50;
    --z-header: 100;
    --z-overlay: 200;
    --z-modal: 300;
}
