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

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

html {
    font-size: 100%; /* 16px */
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--c-bg-cream);
    color: var(--c-text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    color: var(--c-text-dark);
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 700; font-family: 'Manrope', sans-serif; }

p {
    margin-bottom: 1.5rem;
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    color: var(--c-text-body);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--r-md);
}

ul {
    list-style: none;
}

button, input, textarea {
    font-family: inherit;
    outline: none;
}

/* --- PALETTE & VARIABLES --- */
:root {
    /* Palette: Warm Terracotta & Cream */
    --c-primary: #D94F3D;      /* Main Brand: Vibrant Terracotta */
    --c-primary-dark: #B83D2E; /* Hover state */
    --c-bg-cream: #FDFBF7;     /* Background: Warm Paper */
    --c-bg-card: #FFFFFF;      /* Surface: Pure White */
    --c-text-dark: #3D2622;    /* Headings: Deep Brown */
    --c-text-body: #6D534E;    /* Body: Soft Brown */
    --c-text-light: #FDFBF7;   /* Text on dark bg */
    --c-accent-soft: #FCEEE9;  /* Subtle highlights */
    
    /* Spacing & Layout */
    --container-width: 1200px;
    --spacing-section: clamp(4rem, 8vw, 8rem);
    --spacing-grid: clamp(1.5rem, 3vw, 3rem);
    
    /* UI Language */
    --r-sm: 8px;
    --r-md: 16px;
    --r-lg: 24px;
    --shadow-soft: 0 10px 40px rgba(61, 38, 34, 0.05);
    --shadow-hover: 0 20px 50px rgba(217, 79, 61, 0.15);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --- LAYOUT UTILITIES --- */
.c-wrap {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding-inline: clamp(1.5rem, 5vw, 4rem);
}

.c-grid {
    display: grid;
    gap: var(--spacing-grid);
}

/* --- HEADER --- */
.hdr-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding-block: 1.5rem;
    background: transparent; /* Transparent over hero */
}

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

.hdr-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--c-primary);
    letter-spacing: -0.02em;
}

.hdr-nav-list {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.hdr-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--c-text-dark);
    position: relative;
}

.hdr-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--c-primary);
    transition: var(--transition);
}

.hdr-link:hover {
    color: var(--c-primary);
}

.hdr-link:hover::after {
    width: 100%;
}

/* Mobile Nav Toggle (Hidden on desktop) */
.hdr-toggle { display: none; }

@media (max-width: 768px) {
    .hdr-nav-list { display: none; } /* Simplified for mobile example */
    .hdr-toggle { display: block; }
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: var(--r-lg);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--c-primary);
    color: var(--c-text-light);
    box-shadow: 0 4px 14px rgba(217, 79, 61, 0.3);
}

.btn-primary:hover {
    background-color: var(--c-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--c-text-dark);
    color: var(--c-text-dark);
}

.btn-outline:hover {
    border-color: var(--c-primary);
    color: var(--c-primary);
    background-color: var(--c-accent-soft);
}

/* --- SECTIONS --- */
.sec {
    padding-block: var(--spacing-section);
    position: relative;
}

/* --- HERO --- */
.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    padding-top: 4rem; /* Space for transparent header */
    padding-bottom: 2rem;
}

.hero-badge {
    display: inline-block;
    background-color: var(--c-accent-soft);
    color: var(--c-primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-title span {
    color: var(--c-primary);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 540px;
    color: var(--c-text-body);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: var(--r-lg) var(--r-lg) 0 var(--r-lg); /* Organic shape */
    box-shadow: var(--shadow-soft);
    transform: rotate(2deg);
}

/* --- CARDS --- */
.card-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card {
    background: var(--c-bg-card);
    padding: 2.5rem;
    border-radius: var(--r-md);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.card-icon {
    width: 60px;
    height: 60px;
    background-color: var(--c-accent-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--c-primary);
}

.card-title {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.card-text {
    font-size: 1rem;
    margin-bottom: 0;
    color: var(--c-text-body);
    line-height: 1.7;
}

/* --- STATS --- */
.stats-row {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    text-align: center;
    background-color: var(--c-bg-card);
    border-radius: var(--r-md);
    padding: 3rem;
    box-shadow: var(--shadow-soft);
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--c-primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--c-text-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- FAQ --- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 1.5rem 0;
}

.faq-q {
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--c-text-dark);
    margin-bottom: 0.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.faq-a {
    color: var(--c-text-body);
    padding-right: 2rem;
}

/* --- CTA BANNER --- */
.cta-banner {
    background-color: var(--c-primary);
    border-radius: var(--r-lg);
    text-align: center;
    color: var(--c-text-light);
    padding: clamp(3rem, 6vw, 5rem);
}

.cta-banner h2 {
    color: var(--c-text-light);
    margin-bottom: 1rem;
}

.cta-banner p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-inline: auto;
}

.btn-white {
    background-color: #fff;
    color: var(--c-primary);
}
.btn-white:hover {
    background-color: var(--c-bg-cream);
    color: var(--c-primary-dark);
}

/* --- FOOTER --- */
.foot-main {
    background-color: #2E1D1A; /* Deep dark brown */
    color: rgba(255,255,255,0.7);
    padding-top: 5rem;
    padding-bottom: 2rem;
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.foot-brand-desc {
    font-size: 0.95rem;
    margin-top: 1rem;
    color: rgba(255,255,255,0.5);
    max-width: 300px;
}

.foot-heading {
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.foot-link {
    display: block;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.foot-link:hover {
    color: var(--c-primary);
}

.foot-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    .hero-subtitle { margin-inline: auto; }
    .hero-actions { justify-content: center; }
    .hero-image img { transform: rotate(0); border-radius: var(--r-lg); }
    
    .foot-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .foot-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .foot-brand-desc { margin-inline: auto; }
    .foot-bottom { flex-direction: column; gap: 1rem; }
} img,svg,video{max-width:100%;height:auto} *{box-sizing:border-box} body{margin:0} 