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

:root {
    /* Color Palette (Refined Dark Theme - 3 Colors) */
    --clr-primary-green: #212517; /* Main Dark Background */
    --clr-dark-green: #212517;
    --clr-olive-green: #212517;
    --clr-antique-gold: #c6ad85; /* Accent (Warm Tan) */
    --clr-soft-champagne: #c6ad85; 
    --clr-warm-ivory: #d1c4b2; /* Main Light Text (Light Beige) */
    --clr-cream: #4e4e34; /* Dark Olive Green */
    --clr-soft-stone: #212517; /* Surfaces/Cards (Dark) */
    --clr-dark-text: #212517; /* Dark text for light elements */
    --clr-muted-text: rgba(209, 196, 178, 0.7); /* Muted Light Beige */
    --clr-white: #212517; /* Cards/Containers (Dark) */

    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Manrope', sans-serif;

    /* Spacing & Layout */
    --container-max-width: 1280px;
    --section-padding: clamp(4rem, 8vw, 8rem);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 32px;
    --border-radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--clr-primary-green);
    color: var(--clr-warm-ivory);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography Base */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--clr-warm-ivory);
    line-height: 1.2;
    font-weight: 500;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
}

p {
    margin-bottom: 1rem;
    color: var(--clr-muted-text);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.text-center {
    text-align: center;
}

.text-gold {
    color: var(--clr-antique-gold);
}

.text-ivory {
    color: var(--clr-warm-ivory);
}

.bg-primary {
    background-color: var(--clr-primary-green);
    color: var(--clr-warm-ivory);
}

.bg-ivory {
    background-color: var(--clr-primary-green);
}

.bg-cream {
    background-color: var(--clr-cream);
}

.bg-dark {
    background-color: var(--clr-dark-green);
    color: var(--clr-warm-ivory);
}

.bg-olive {
    background-color: var(--clr-olive-green);
    color: var(--clr-warm-ivory);
}

.bg-primary h2,
.bg-primary h3,
.bg-primary p,
.bg-dark h2,
.bg-dark h3,
.bg-dark p,
.bg-olive h2,
.bg-olive h3,
.bg-olive p {
    color: var(--clr-warm-ivory);
}

.bg-primary p,
.bg-dark p,
.bg-olive p {
    opacity: 0.9;
}

.eyebrow {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--clr-antique-gold);
    display: block;
    margin-bottom: 0.75rem;
}

/* Focus States for Accessibility */
:focus-visible {
    outline: 2px solid var(--clr-antique-gold);
    outline-offset: 4px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: var(--border-radius-full);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    text-decoration: none;
    line-height: 1;
}

.btn-primary {
    background-color: var(--clr-antique-gold);
    color: var(--clr-primary-green);
}

.btn-primary:hover {
    background-color: var(--clr-warm-ivory);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--clr-antique-gold);
    border: 1px solid var(--clr-antique-gold);
}

.bg-primary .btn-secondary,
.bg-dark .btn-secondary {
    color: var(--clr-warm-ivory);
    border-color: var(--clr-warm-ivory);
}

.btn-secondary:hover {
    background-color: var(--clr-primary-green);
    color: var(--clr-warm-ivory);
}

.bg-primary .btn-secondary:hover,
.bg-dark .btn-secondary:hover {
    background-color: var(--clr-warm-ivory);
    color: var(--clr-primary-green);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}