:root {
    --primary: #0d4f3c;
    --gold: #c9a84c;
    --gold-light: #d4b86a;
    --gold-gradient: linear-gradient(135deg, #d4b86a 0%, #c9a84c 100%);
    --hero-gradient: linear-gradient(135deg, #0a3d2e 0%, #0d4f3c 60%, #147a5c 100%);
    --background: #fdfdfc;
    --text: #1a3a2a;
    --text-light: #4a6a5a;
    --border: #e0d8c8;
    --card: #ffffff;
    --secondary: #f5f3ed;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--background);
    color: var(--text);
    line-height: 1.6;
}

h1, h2, h3, h4 { 
    font-family: 'Playfair Display', Georgia, serif;
    letter-spacing: -0.02em; 
}

.container {
    max-width: 80rem;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 1024px) {
    .container { 
        padding-left: 2.5rem; 
        padding-right: 2.5rem; 
    }
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

.text-primary { color: var(--primary); }
.text-white { color: #fff; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-light); }
.text-75 { color: rgba(26, 58, 42, 0.75); }
.text-80 { color: rgba(26, 58, 42, 0.8); }
.text-85 { color: rgba(26, 58, 42, 0.85); }

.bg-primary { background-color: var(--primary); }
.bg-hero-gradient { background: var(--hero-gradient); }
.bg-gold-gradient { background: var(--gold-gradient); }
.bg-card { background: var(--card); }
.bg-secondary { background: var(--secondary); }
.border-border { border-color: var(--border); }
.border { border: 1px solid var(--border); }

.font-display { font-family: 'Playfair Display', Georgia, serif; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.italic { font-style: italic; }
.uppercase { text-transform: uppercase; }

.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; }
.text-7xl { font-size: 4.5rem; }

@media (min-width: 768px) {
    .md-4xl { font-size: 2.25rem; }
    .md-5xl { font-size: 3rem; }
    .md-6xl { font-size: 3.75rem; }
    .md-7xl { font-size: 4.5rem; }
}

.tracking-wide { letter-spacing: 0.04em; }
.tracking-2 { letter-spacing: 0.2em; }
.tracking-3 { letter-spacing: 0.3em; }
.leading-105 { line-height: 1.05; }
.leading-relaxed { line-height: 1.625; }
.leading-tight { line-height: 1.25; }

.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-7 { margin-bottom: 1.75rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-14 { margin-bottom: 3.5rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mr-2 { margin-right: 0.5rem; }
.ml-2 { margin-left: 0.5rem; }

.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-9 { gap: 2.25rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-14 { gap: 3.5rem; }

.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-7 { padding: 1.75rem; }
.p-8 { padding: 2rem; }
.p-12 { padding: 3rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.pt-24 { padding-top: 6rem; }
.pb-24 { padding-bottom: 6rem; }

.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none !important; }
.inline-flex { display: inline-flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.shrink-0 { flex-shrink: 0; }

.min-h-screen { min-height: 90vh; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-11 { height: 2.75rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-20 { height: 5rem; }
.h-72 { height: 18rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-11 { width: 2.75rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.w-72 { width: 18rem; }
.w-full { width: 100%; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }

.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-2xl { border-radius: 1rem; }

.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.bottom-8 { bottom: 2rem; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.sticky { position: sticky; }
.top-0 { top: 0; }
.z-50 { z-index: 50; }

.overflow-hidden { overflow: hidden; }
.object-cover { object-fit: cover; }

.shadow-elegant { box-shadow: 0 20px 60px -20px rgba(10, 61, 46, 0.3); }
.shadow-gold { box-shadow: 0 10px 40px -15px rgba(201, 168, 76, 0.5); }
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); }

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

.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }

.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (min-width: 640px) {
    .sm-grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
    .sm-flex-row { flex-direction: row; }
    .sm-text-center { text-align: center; }
}

@media (min-width: 768px) {
    .md-flex { display: flex; }
    .md-hidden { display: none !important; }
    .md-grid { display: grid; }
    .md-grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
    .md-grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
    .md-grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
    .md-grid-cols-5 { grid-template-columns: repeat(5, 1fr); }
    .md-text-left { text-align: left; }
    .md-col-span-2 { grid-column: span 2; }
    .md-col-span-3 { grid-column: span 3; }
    .md-flex-row { flex-direction: row; }
}

.transition { transition: all 0.15s ease; }

.group:hover .group-gap-3 { gap: 0.75rem; }
.group:hover .group-bg-gold { background: var(--gold-gradient); }

.opacity-0 { opacity: 0; }
.opacity-10 { opacity: 0.1; }
.opacity-70 { opacity: 0.7; }
.opacity-80 { opacity: 0.8; }
.opacity-90 { opacity: 0.9; }
.opacity-100 { opacity: 1; }

.backdrop-blur { backdrop-filter: blur(12px); }
.bg-opacity-85 { background-color: rgba(253, 253, 252, 0.85); }

select, input, textarea {
    font-family: inherit;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    background: var(--background);
    width: 100%;
}

select:focus, input:focus, textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--primary);
    border-color: var(--gold);
}

.gold-divider {
    height: 2px;
    width: 60px;
    background: var(--gold-gradient);
    display: inline-block;
}

header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(12px);
    background-color: rgba(253, 253, 252, 0.85);
    border-bottom: 1px solid var(--border);
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

header nav a {
    font-size: 0.875rem;
    letter-spacing: 0.04em;
    color: rgba(26, 58, 42, 0.75);
    transition: color 0.15s ease;
}

header nav a:hover { 
    color: var(--primary); 
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 0.375rem;
    background: var(--gold-gradient);
    color: var(--primary);
    font-weight: 600;
    transition: transform 0.15s ease;
    box-shadow: 0 10px 40px -15px rgba(201, 168, 76, 0.5);
    border: none;
    cursor: pointer;
}

.btn-primary:hover { 
    transform: scale(1.02); 
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 0.375rem;
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    transition: background-color 0.15s ease;
    background: transparent;
    cursor: pointer;
}

.btn-secondary:hover { 
    background-color: rgba(255,255,255,0.1); 
}

.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 0.375rem;
    background-color: var(--primary);
    color: #fff;
    font-weight: 500;
    transition: background-color 0.15s ease;
    border: none;
    cursor: pointer;
}

.btn-dark:hover { 
    background-color: rgba(13, 79, 60, 0.9); 
}

.service-card {
    padding: 2rem;
    border-radius: 0.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    display: block;
    color: inherit;
    text-decoration: none;
}

.service-card:hover {
    border-color: var(--gold);
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05);
}

.icon-box {
    height: 3.5rem;
    width: 3.5rem;
    border-radius: 0.375rem;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px -15px rgba(201, 168, 76, 0.5);
}

.icon-box-sm {
    height: 2.75rem;
    width: 2.75rem;
    border-radius: 0.375rem;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-box {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 0.5rem;
    background: var(--card);
    border: 1px solid var(--border);
}

footer {
    background-color: var(--primary);
    color: #fff;
    margin-top: 6rem;
}

.mobile-menu {
    display: none;
    border-top: 1px solid var(--border);
    background: var(--background);
}

.mobile-menu.show { 
    display: block; 
}

.hero-slide {
    transition: opacity 1s ease-in-out;
}

.hero-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}
