/* ==========================================================================
   TOFFEE BEAN — Design System
   Extracted from NACCU mockup style.css
   Author: SlingSoft Apps (slingsoft.app)
   ========================================================================== */

/* ── FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ── DESIGN TOKENS ── */
:root {
    /* Brand Palette */
    --deep-brown: #1a0f08;
    --mid-brown: #3d2314;
    --brown: #6B3A1F;
    --caramel: #C47B2B;
    --copper: #D4883A;
    --sand: #E8C9A0;
    --latte: #f3e6d5;
    --cream: #faf5ee;
    --warm-white: #fffcf7;
    --gold: #D4963A;
    --gold-light: #E8C9A0;
    --terracotta: #C2613A;

    /* Neutrals */
    --dark: #1a0f08;
    --text: #2d1e12;
    --muted: #7a6350;
    --border: rgba(107, 58, 31, .1);

    /* Typography */
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'DM Sans', -apple-system, sans-serif;

    /* Motion */
    --ease: cubic-bezier(.25, .46, .45, .94);
}

/* ── RESETS ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--sans);
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    font-size: 1rem;
    line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: .35s var(--ease); }
ul { list-style: none; }

/* ── LAYOUT ── */
.wrap {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--serif); }

/* ── SECTION RHYTHM ── */
.naccu-section { padding: 110px 0; }
.naccu-sec-header { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.naccu-sec-header h2 {
    font-family: var(--serif);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 14px;
}
.naccu-sec-header p {
    font-size: .95rem;
    color: var(--muted);
    line-height: 1.8;
}

/* ── SECTION TAG (label) ── */
.naccu-sec-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--brown);
    margin-bottom: 18px;
}
.naccu-sec-tag::before, .naccu-sec-tag::after {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--caramel);
    border-radius: 2px;
}

/* ── BUTTONS ── */
.naccu-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--sans);
    font-weight: 600;
    font-size: .88rem;
    padding: 16px 36px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: .35s var(--ease);
    text-decoration: none;
}
.naccu-btn-primary {
    background: var(--brown);
    color: #fff;
}
.naccu-btn-primary:hover {
    background: var(--deep-brown);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(36, 22, 16, .2);
}
.naccu-btn-white {
    background: #fff;
    color: var(--dark);
}
.naccu-btn-white:hover {
    background: var(--cream);
    transform: translateY(-2px);
}
.naccu-btn-outline {
    border: 1.5px solid var(--brown);
    color: var(--brown);
    background: transparent;
}
.naccu-btn-outline:hover {
    background: var(--brown);
    color: #fff;
}
.naccu-btn svg { width: 18px; height: 18px; }

/* ── ANIMATIONS ── */
.naccu-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.naccu-reveal.show {
    opacity: 1;
    transform: translateY(0);
}

/* ── RESPONSIVE UTILITIES ── */
@media (max-width: 768px) {
    .wrap { padding: 0 20px; }
    .naccu-section { padding: 80px 0; }
    .naccu-sec-header h2 { font-size: 2.2rem; }
}
