@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* =====================
   DESIGN TOKENS
===================== */
:root {
    --green:        #1C3A2E;
    --green-light:  #2E5A47;
    --green-hover:  #122618;
    --gold:         #C4A35A;
    --gold-light:   #D4B470;
    --cream:        #FAF8F5;
    --beige:        #F0EBE3;
    --white:        #FFFFFF;
    --text:         #1A1A1A;
    --text-mid:     #5C5753;
    --text-light:   #9A9591;
    --border:       #E8E2DA;
    --shadow:       0 4px 24px rgba(28, 58, 46, 0.08);
    --shadow-lg:    0 8px 40px rgba(28, 58, 46, 0.13);
    --radius:       4px;
    --radius-lg:    10px;
    --transition:   all 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.7;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 0.02em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* =====================
   LAYOUT
===================== */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
}

/* =====================
   UTILITIES
===================== */
.mb-20  { margin-bottom: 20px; }
.mt-20  { margin-top: 20px; }
.text-right  { text-align: right; }
.text-center { text-align: center; }
.text-muted  { color: var(--text-light); font-size: 0.85rem; }

hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 32px 0;
}
