/* ===== V2: TERRACOTTA PALETTE ===== */
:root {
    --primary: #c0634c;
    --primary-dark: #a0482f;
    --primary-light: #e8a898;
    --accent: #7c3928;
    --accent2: #e07a5f;
    --bg: #fdf6f3;
    --bg2: #fef0ea;
    --text: #2d1a11;
    --text-muted: #7a5048;
    --white: #ffffff;
    --card-bg: #ffffff;
    --border: #f0c4b4;
    --shadow: 0 4px 24px rgba(192,99,76,0.12);
    --shadow-hover: 0 10px 40px rgba(192,99,76,0.22);
    --radius: 6px;
    --radius-sm: 4px;
    --radius-lg: 12px;
}
header img[alt="logo"], footer img[alt="logo"] { filter: brightness(0) invert(1); }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: Georgia, 'Times New Roman', serif; background: var(--bg); color: var(--text); line-height: 1.75; font-size: 16px; }

/* ===== HEADER ===== */
.site-header {
    background: var(--accent);
    position: sticky; top: 0; z-index: 100;
    padding: 0;
}
.site-header .container { max-width: 1200px; margin: 0 auto; padding: 16px 28px; display: flex; align-items: center; justify-content: space-between; }
.logo a { display: flex; align-items: center; text-decoration: none; }
.logo img { height: 44px; width: auto; }

#menu-toggle { display: none; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger .line { width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }

.navigation ul { list-style: none; display: flex; gap: 32px; }
.navigation ul li a { text-decoration: none; color: rgba(255,255,255,0.85); font-weight: 400; font-size: 15px; font-family: 'Segoe UI', Arial, sans-serif; letter-spacing: 0.5px; transition: color 0.2s; }
.navigation ul li a:hover { color: var(--primary-light); }

.mobile-nav {
    display: none;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    z-index: 98;
    background: var(--accent);
    flex-direction: column; align-items: center; justify-content: center;
}
#menu-toggle:checked ~ .mobile-nav { display: flex; }
.mobile-nav ul { list-style: none; text-align: center; }
.mobile-nav ul li { margin: 20px 0; }
.mobile-nav ul li a { color: var(--white); text-decoration: none; font-size: 24px; font-weight: 400; font-family: Georgia, serif; transition: color 0.2s; }
.mobile-nav ul li a:hover { color: var(--primary-light); }

.mobile-nav-close {
    position: absolute; top: 18px; right: 20px;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; border-radius: 50%;
    background: rgba(255,255,255,0.1);
}
.mobile-nav-close::before, .mobile-nav-close::after {
    content: ''; position: absolute;
    width: 22px; height: 2px; background: var(--white); border-radius: 2px;
}
.mobile-nav-close::before { transform: rotate(45deg); }
.mobile-nav-close::after  { transform: rotate(-45deg); }

@media (max-width: 767px) {
    .hamburger { display: flex; }
    .navigation { display: none; }
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ===== HERO ===== */
.hero {
    position: relative; min-height: 88vh;
    background: url('img/bg.jpg') center center / cover no-repeat;
    display: flex; align-items: center;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(124,57,40,0.88) 0%, rgba(192,99,76,0.35) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 600px; color: var(--white); }
.hero-eyebrow { font-family: 'Segoe UI', Arial, sans-serif; font-size: 0.82rem; letter-spacing: 3px; text-transform: uppercase; opacity: 0.8; margin-bottom: 18px; display: block; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 700; line-height: 1.15; margin-bottom: 22px; }
.hero p { font-size: 1.08rem; line-height: 1.75; opacity: 0.9; margin-bottom: 36px; font-family: 'Segoe UI', Arial, sans-serif; }
.btn-primary { display: inline-block; background: var(--primary); color: var(--white); font-weight: 700; padding: 15px 38px; border-radius: var(--radius); text-decoration: none; font-size: 1rem; font-family: 'Segoe UI', Arial, sans-serif; box-shadow: 0 4px 20px rgba(192,99,76,0.45); transition: all 0.25s; border: none; cursor: pointer; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-outline { display: inline-block; background: transparent; color: var(--white); font-weight: 600; padding: 13px 34px; border-radius: var(--radius); text-decoration: none; font-size: 1rem; font-family: 'Segoe UI', Arial, sans-serif; border: 1.5px solid rgba(255,255,255,0.55); transition: all 0.25s; margin-left: 12px; }
.btn-outline:hover { background: rgba(255,255,255,0.12); }

/* HERO FLOATING CARD */
.hero-float-card {
    position: absolute; right: 5%; bottom: 10%;
    background: var(--white); border-radius: var(--radius-lg);
    padding: 24px 28px; box-shadow: 0 12px 40px rgba(0,0,0,0.2);
    max-width: 280px;
    display: none;
}
@media (min-width: 900px) { .hero-float-card { display: block; } }
.hero-float-card h4 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 12px; font-family: 'Segoe UI', Arial, sans-serif; }
.float-stat { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.float-stat-num { font-size: 1.5rem; font-weight: 800; color: var(--primary); font-family: 'Segoe UI', Arial, sans-serif; }
.float-stat-label { font-size: 0.85rem; color: var(--text-muted); font-family: 'Segoe UI', Arial, sans-serif; line-height: 1.3; }

/* ===== SECTION BASE ===== */
section { padding: 80px 0; }
.section-label { display: inline-block; color: var(--primary); font-weight: 700; font-size: 0.82rem; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 14px; font-family: 'Segoe UI', Arial, sans-serif; }
.section-title { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 700; color: var(--text); margin-bottom: 18px; line-height: 1.2; }
.section-subtitle { font-size: 1.05rem; color: var(--text-muted); max-width: 620px; line-height: 1.75; margin-bottom: 48px; font-family: 'Segoe UI', Arial, sans-serif; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ===== ASYMMETRIC SPLIT ===== */
.asym-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 768px) { .asym-grid { grid-template-columns: 3fr 2fr; } }
.asym-grid.reverse { }
@media (min-width: 768px) { .asym-grid.reverse { grid-template-columns: 2fr 3fr; } }
.asym-text h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; margin-bottom: 20px; line-height: 1.2; }
.asym-text p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.78; font-family: 'Segoe UI', Arial, sans-serif; }
.asym-img img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-hover); }

/* ===== NUMBERED BLOCKS ===== */
.numbered-list { counter-reset: item; }
.numbered-item { display: grid; grid-template-columns: 1fr; gap: 16px; border-bottom: 1px solid var(--border); padding: 30px 0; }
@media (min-width: 640px) { .numbered-item { grid-template-columns: 64px 1fr; gap: 28px; align-items: flex-start; } }
.numbered-item:last-child { border-bottom: none; }
.item-num { font-size: 2.2rem; font-weight: 800; color: var(--primary-light); line-height: 1; font-family: 'Segoe UI', Arial, sans-serif; }
.item-body h3 { font-size: 1.12rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.item-body p { color: var(--text-muted); line-height: 1.72; font-family: 'Segoe UI', Arial, sans-serif; }

/* ===== CARDS ===== */
.cards-3 { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 640px) { .cards-3 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .cards-3 { grid-template-columns: repeat(3,1fr); } }

.cards-5 { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .cards-5 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .cards-5 { grid-template-columns: repeat(5,1fr); } }

.card { background: var(--card-bg); border-radius: var(--radius); box-shadow: var(--shadow); padding: 30px 24px; transition: all 0.3s; border-bottom: 3px solid transparent; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-bottom-color: var(--primary); }
.card-num { font-size: 2rem; font-weight: 800; color: var(--primary); margin-bottom: 10px; font-family: 'Segoe UI', Arial, sans-serif; }
.card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.card p { color: var(--text-muted); font-size: 0.94rem; line-height: 1.65; font-family: 'Segoe UI', Arial, sans-serif; }

/* ===== ACCORDION ===== */
.accordion-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.accordion-item summary { padding: 20px 24px; font-weight: 700; font-size: 1.02rem; cursor: pointer; color: var(--text); list-style: none; display: flex; justify-content: space-between; align-items: center; background: var(--card-bg); font-family: 'Segoe UI', Arial, sans-serif; }
.accordion-item summary::-webkit-details-marker { display: none; }
.accordion-item summary::after { content: '+'; color: var(--primary); font-size: 1.4rem; font-weight: 300; }
.accordion-item[open] summary::after { content: '−'; }
.accordion-item[open] summary { background: var(--bg2); color: var(--primary-dark); }
.accordion-item .acc-body { padding: 20px 24px; color: var(--text-muted); line-height: 1.75; font-family: 'Segoe UI', Arial, sans-serif; background: var(--card-bg); border-top: 1px solid var(--border); }

/* ===== QUOTE BAND ===== */
.quote-band { background: var(--primary); color: var(--white); padding: 64px 0; }
.quote-band blockquote { font-size: clamp(1.15rem, 2.5vw, 1.75rem); font-weight: 700; text-align: center; max-width: 760px; margin: 0 auto 18px; line-height: 1.45; }
.quote-band cite { display: block; text-align: center; font-size: 0.92rem; opacity: 0.72; font-family: 'Segoe UI', Arial, sans-serif; font-style: normal; }

/* ===== TESTIMONIAL STRIPS ===== */
.testimonial-strip { border-left: 4px solid var(--primary); padding: 24px 28px; background: var(--card-bg); border-radius: 0 var(--radius) var(--radius) 0; margin-bottom: 18px; box-shadow: var(--shadow); }
.testimonial-strip p { font-size: 1rem; color: var(--text-muted); line-height: 1.72; font-style: italic; font-family: 'Segoe UI', Arial, sans-serif; margin-bottom: 12px; }
.testimonial-strip .t-author { font-weight: 700; font-size: 0.9rem; color: var(--primary-dark); font-family: 'Segoe UI', Arial, sans-serif; }
.testimonial-strip .t-stars { color: #d97706; font-size: 0.9rem; margin-bottom: 8px; }

/* ===== FORM ===== */
.form-section { background: var(--bg2); }
.form-wrap { max-width: 800px; margin: 0 auto; background: var(--white); border-radius: var(--radius-lg); padding: 50px 44px; box-shadow: var(--shadow-hover); border: 1px solid var(--border); }
@media (max-width: 600px) { .form-wrap { padding: 28px 16px; } }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-weight: 600; font-size: 0.9rem; color: var(--text); font-family: 'Segoe UI', Arial, sans-serif; }
.form-group input, .form-group textarea { border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 13px 16px; font-size: 0.97rem; color: var(--text); background: var(--bg); outline: none; transition: border 0.2s; font-family: 'Segoe UI', Arial, sans-serif; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { text-align: center; margin-top: 12px; }

/* ===== BG SECTION ===== */
.bg-section {
    position: relative; padding: 90px 0;
    background: url('img/bg-1.jpg') center center / cover no-repeat;
}
.bg-section-overlay { position: absolute; inset: 0; background: rgba(124,57,40,0.78); }
.bg-section-content { position: relative; z-index: 2; color: var(--white); text-align: center; max-width: 700px; margin: 0 auto; }
.bg-section-content h2 { font-size: clamp(1.6rem,3.5vw,2.5rem); font-weight: 700; margin-bottom: 18px; }
.bg-section-content p { font-size: 1.05rem; opacity: 0.9; line-height: 1.72; margin-bottom: 30px; font-family: 'Segoe UI', Arial, sans-serif; }

/* ===== COUNTERS ===== */
.counters-row { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
@media (min-width: 768px) { .counters-row { grid-template-columns: repeat(4,1fr); } }
.counter-box { text-align: center; padding: 32px 16px; background: var(--card-bg); border-radius: var(--radius); box-shadow: var(--shadow); border-top: 3px solid var(--primary); }
.counter-num { font-size: 2.4rem; font-weight: 800; color: var(--primary); display: block; font-family: 'Segoe UI', Arial, sans-serif; }
.counter-label { font-size: 0.87rem; color: var(--text-muted); margin-top: 4px; font-family: 'Segoe UI', Arial, sans-serif; }

/* ===== FOOTER ===== */
.site-footer { background: var(--accent); color: var(--white); padding: 52px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 36px; margin-bottom: 36px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-brand p { opacity: 0.72; font-size: 0.92rem; line-height: 1.65; margin-top: 10px; font-family: 'Segoe UI', Arial, sans-serif; }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; opacity: 0.55; font-family: 'Segoe UI', Arial, sans-serif; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.72); text-decoration: none; font-size: 0.93rem; font-family: 'Segoe UI', Arial, sans-serif; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--primary-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 20px; font-size: 0.84rem; opacity: 0.5; text-align: center; font-family: 'Segoe UI', Arial, sans-serif; }

/* ===== CONTACT ===== */
.contact-cards { display: grid; grid-template-columns: 1fr; gap: 24px; margin-bottom: 50px; }
@media (min-width: 640px) { .contact-cards { grid-template-columns: repeat(3,1fr); } }
.contact-card { background: var(--card-bg); border-radius: var(--radius); padding: 32px 24px; text-align: center; box-shadow: var(--shadow); }
.contact-card-icon { font-size: 2.2rem; margin-bottom: 14px; }
.contact-card h3 { font-weight: 700; margin-bottom: 10px; color: var(--text); }
.contact-card p { color: var(--text-muted); font-size: 0.94rem; line-height: 1.6; font-family: 'Segoe UI', Arial, sans-serif; }

/* ===== MODULE BLOCKS ===== */
.module-block { background: var(--card-bg); border-radius: var(--radius); padding: 36px 32px; margin-bottom: 24px; box-shadow: var(--shadow); border-top: 4px solid var(--primary); }
@media (max-width: 600px) { .module-block { padding: 22px 16px; } }
.module-num { display: inline-block; background: var(--bg2); color: var(--primary-dark); font-weight: 800; font-size: 0.8rem; padding: 4px 14px; border-radius: 3px; margin-bottom: 14px; letter-spacing: 1px; font-family: 'Segoe UI', Arial, sans-serif; }
.module-block h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 14px; color: var(--text); }
.module-block p { color: var(--text-muted); line-height: 1.78; margin-bottom: 12px; font-family: 'Segoe UI', Arial, sans-serif; }

/* ===== VALUES ===== */
.value-card { background: var(--card-bg); border-radius: var(--radius); padding: 28px 22px; box-shadow: var(--shadow); border-right: 4px solid var(--primary); }
.value-card .v-icon { font-size: 2rem; margin-bottom: 12px; }
.value-card h3 { font-weight: 700; margin-bottom: 8px; font-size: 1.05rem; }
.value-card p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.65; font-family: 'Segoe UI', Arial, sans-serif; }

/* ===== MISC ===== */
.alt-bg { background: var(--bg2); }
.light-bg { background: var(--bg); }
.pill-check { list-style: none; }
.pill-check li { padding: 10px 0; border-bottom: 1px dashed var(--border); display: flex; gap: 12px; color: var(--text-muted); font-family: 'Segoe UI', Arial, sans-serif; font-size: 0.97rem; }
.pill-check li:last-child { border-bottom: none; }
.pill-check li::before { content: '→'; color: var(--primary); font-weight: 700; flex-shrink: 0; }

/* ===== COOKIE BANNER ===== */
#cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
    background: var(--accent); color: var(--white);
    padding: 18px 28px;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 16px;
    transform: translateY(0); transition: transform 0.4s ease;
    font-family: 'Segoe UI', Arial, sans-serif;
}
#cookie-banner.hidden { transform: translateY(110%); }
#cookie-banner p { margin: 0; flex: 1; min-width: 200px; font-size: 0.93rem; opacity: 0.9; }
#cookie-banner a { color: var(--primary-light); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn-accept { background: var(--primary); color: var(--white); border: none; border-radius: var(--radius-sm); padding: 10px 22px; font-weight: 700; cursor: pointer; font-size: 0.9rem; transition: background 0.2s; }
.cookie-btn-accept:hover { background: var(--accent2); }
.cookie-btn-decline { background: transparent; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.3); border-radius: var(--radius-sm); padding: 10px 22px; font-weight: 600; cursor: pointer; font-size: 0.9rem; transition: all 0.2s; }
.cookie-btn-decline:hover { border-color: var(--white); color: var(--white); }
@media (max-width: 600px) {
    #cookie-banner { flex-direction: column; align-items: flex-start; }
    .cookie-btns { width: 100%; }
    .cookie-btn-accept, .cookie-btn-decline { flex: 1; text-align: center; }
}