/* =========================================
   1. GLOBAL IMPORTS & VARIABLES
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

:root {
    /* --- BRAND PALETTE --- */
    --primary-gold: #B37839;
    --primary-light: #EA964C;
    --accent-dark: #2C1E12;
    --bg-cream: #FDFBF7;
    --white: #ffffff;
    
    /* --- TYPOGRAPHY --- */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    
    /* --- SPACING & LAYOUT --- */
    --container-width: 1200px;
    --section-padding: 100px 20px;
    
    /* --- FLAT DESIGN SETTINGS --- */
    --border-radius: 0px; /* REMOVED CURVES globally */
}

/* =========================================
   2. RESET & FULL WIDTH FIX
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* =========================================
   3. GLOBAL STYLES
   ========================================= */
body {
    font-family: var(--font-body);
    color: var(--accent-dark);
    background-color: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-gold);
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: 0.5px;
}

p {
    color: #665c54;
    font-weight: 300;
    margin-bottom: 20px;
    font-size: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul { list-style: none; padding: 0; margin: 0; }

/* =========================================
   4. UTILITIES & FLAT BUTTONS
   ========================================= */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

section { padding: var(--section-padding); }

/* Global Flat Buttons */
.btn-gold, .btn-pill, .submit-btn {
    display: inline-block;
    background-color: var(--primary-gold) !important;
    border: 1px solid var(--primary-gold) !important;
    color: #fff !important;
    padding: 14px 40px; /* Larger flat padding */
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    
    /* FLAT DESIGN: No Radius, No Shadow */
    border-radius: 0px !important; 
    box-shadow: none !important;
}

.btn-gold:hover, .btn-pill:hover, .submit-btn:hover {
    background-color: var(--primary-light) !important;
    border-color: var(--primary-light) !important;
    color: #fff !important;
    transform: none; /* Removed lift effect */
}