/* Template 59 - Terracotta Tuscan / Mediterranean Warmth */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Upright:wght@400;500;600;700&family=Lato:wght@300;400;700&display=swap');

:root {
    --terracotta: #c96442;
    --terracotta-light: #e07b5a;
    --sienna: #a0522d;
    --tuscany-cream: #f5e6d3;
    --olive: #6b7d3e;
    --olive-dark: #4a5a2a;
    --stone: #8b8378;
    --warm-white: #faf8f5;
    --charcoal: #3d3830;
    --gold: #c9a962;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.8;
    color: var(--charcoal);
    background: var(--warm-white);
    font-weight: 400;
}

/* Subtle texture */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c96442' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
    position: relative;
    z-index: 1;
}

/* Header - Tuscan Style */
.site-header {
    background: var(--tuscany-cream);
    padding: 1.75rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--terracotta);
    box-shadow: 0 2px 20px rgba(201, 100, 66, 0.1);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo a {
    font-family: 'Cormorant Upright', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--terracotta);
    text-decoration: none;
    letter-spacing: 0.02em;
    position: relative;
}

.site-logo a::before,
.site-logo a::after {
    content: '~';
    color: var(--olive);
    margin: 0 0.5rem;
    font-weight: 300;
}

.site-nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.site-nav a {
    color: var(--charcoal);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 4px;
}

.site-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--terracotta);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.site-nav a:hover {
    color: var(--terracotta);
}

.site-nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.section.head {
    padding: 7rem 0 5rem;
    text-align: center;
    background: linear-gradient(180deg, var(--tuscany-cream) 0%, var(--warm-white) 100%);
}

.section.head::before {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 2rem;
}

.section.head h1 {
    font-family: 'Cormorant Upright', serif;
    font-size: 4rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
    letter-spacing: 0.02em;
}

.section.head h1 span {
    color: var(--terracotta);
    font-style: italic;
}

.section.head p {
    font-size: 1.125rem;
    color: var(--stone);
    max-width: 650px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.9;
}

/* Section Styling */
.section {
    padding: 5rem 0;
}

.section header {
    text-align: center;
    margin-bottom: 4rem;
}

.section header::before {
    content: '❧';
    display: block;
    font-size: 1.5rem;
    color: var(--olive);
    margin-bottom: 1rem;
}

.section header h2 {
    font-family: 'Cormorant Upright', serif;
    font-size: 2.75rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.section header p {
    font-size: 1.0625rem;
    color: var(--stone);
    max-width: 500px;
    margin: 0 auto;
    font-weight: 300;
}

body:not(.faq) h3,
:not(section.faq) h3 {
    font-family: 'Cormorant Upright', serif;
    font-size: 1.625rem;
    font-weight: 600;
    color: var(--terracotta);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: var(--charcoal);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--terracotta), var(--gold), var(--olive), var(--terracotta));
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.footer-about {
    max-width: 350px;
}

.footer-tagline {
    color: var(--tuscany-cream);
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 300;
}

.footer-links ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--tuscany-cream);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(245, 230, 211, 0.2);
}

.copyright {
    color: var(--stone);
    font-size: 0.9rem;
}

.copyright a {
    color: var(--stone);
    text-decoration: none;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.7s ease forwards;
}

html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}
