/* ===== BURGUNDY / WINE PALETTE ===== */
:root {
    --primary: #7c1c2e;
    --primary-light: #a83248;
    --primary-dark: #4a0d1b;
    --accent: #c9536e;
    --accent-warm: #fce8ec;
    --bg-light: #fdf5f7;
    --bg-section: #f9eaed;
    --text-main: #1a0508;
    --text-muted: #614048;
    --text-light: #9a7078;
    --white: #ffffff;
    --border: #f0c0cb;
    --gold: #c8972a;
    --shadow-sm: 0 2px 12px rgba(124,28,46,0.08);
    --shadow-md: 0 8px 30px rgba(124,28,46,0.14);
    --shadow-lg: 0 18px 52px rgba(124,28,46,0.18);
    --radius: 12px;
    --radius-sm: 6px;
    --radius-lg: 20px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; color: var(--text-main); background: var(--white); line-height: 1.75; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* HEADER */
.site-header { background: var(--primary-dark); position: sticky; top: 0; z-index: 100; }
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo a { display: flex; align-items: center; }
.logo img { height: 44px; width: auto; }
.navigation { display: none; }
.navigation ul { list-style: none; display: flex; gap: 36px; }
.navigation ul li a { color: var(--accent-warm); font-weight: 700; font-size: 15px; transition: color 0.2s; }
.navigation ul li a:hover { color: var(--accent); }
#menu-toggle { display: none; }
.hamburger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; z-index: 101; transition: opacity 0.2s; }
.hamburger .line { width: 26px; height: 2px; background: var(--accent-warm); border-radius: 2px; }
#menu-toggle:checked ~ .hamburger { opacity: 0; pointer-events: none; }
.mobile-nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 98; background: var(--primary-dark); 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: 18px 0; }
.mobile-nav ul li a { color: var(--accent-warm); font-size: 24px; font-weight: 800; transition: color 0.2s; }
.mobile-nav ul li a:hover { color: var(--accent); }
.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: var(--radius-sm); background: rgba(201,83,110,0.15); }
.mobile-nav-close::before, .mobile-nav-close::after { content: ''; position: absolute; width: 22px; height: 2px; background: var(--accent-warm); border-radius: 2px; }
.mobile-nav-close::before { transform: rotate(45deg); }
.mobile-nav-close::after  { transform: rotate(-45deg); }

/* HERO */
.hero { min-height: 88vh; background: url('img/bg.jpg') center/cover no-repeat; position: relative; display: flex; align-items: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(74,13,27,0.94) 0%, rgba(124,28,46,0.80) 45%, rgba(0,0,0,0.30) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero-ornament { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.hero-ornament-line { height: 1px; width: 40px; background: var(--gold); }
.hero-ornament-text { font-size: 12px; font-weight: 900; color: var(--gold); text-transform: uppercase; letter-spacing: 3px; }
.hero-title { font-size: 2.7rem; font-weight: 900; color: var(--white); line-height: 1.12; margin-bottom: 22px; }
.hero-desc { font-size: 1.05rem; color: var(--accent-warm); margin-bottom: 36px; line-height: 1.8; }
.hero-cta { display: inline-block; background: var(--accent); color: var(--white); font-weight: 800; font-size: 16px; padding: 16px 44px; border-radius: var(--radius-sm); transition: all 0.25s; box-shadow: 0 8px 24px rgba(201,83,110,0.4); }
.hero-cta:hover { background: var(--gold); color: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(201,83,110,0.45); }

/* SECTIONS */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-section); }
.section-title { font-size: 2rem; font-weight: 900; color: var(--primary-dark); margin-bottom: 14px; line-height: 1.2; }
.section-subtitle { font-size: 1rem; color: var(--text-muted); margin-bottom: 44px; max-width: 640px; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* DIVIDER BAND */
.divider-band { background: var(--primary); padding: 44px 0; }
.divider-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
.divider-stat { text-align: center; }
.divider-num { font-size: 2.7rem; font-weight: 900; color: var(--gold); display: block; }
.divider-label { color: var(--accent-warm); font-size: 14px; font-weight: 700; }

/* UNIQUE BLOCK v5: ICON-CIRCLE TIMELINE — vertical flowing steps */
.circle-timeline { position: relative; max-width: 760px; margin: 0 auto; }
.circle-timeline::before { content: ''; position: absolute; left: 27px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--accent), var(--primary)); }
.timeline-step { display: flex; gap: 24px; margin-bottom: 36px; position: relative; }
.timeline-step:last-child { margin-bottom: 0; }
.step-circle { width: 56px; height: 56px; border-radius: 50%; background: var(--primary); border: 3px solid var(--accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.5rem; position: relative; z-index: 1; }
.step-body { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 22px 24px; flex: 1; box-shadow: var(--shadow-sm); margin-top: 6px; }
.step-title { font-size: 1.05rem; font-weight: 800; color: var(--primary-dark); margin-bottom: 8px; }
.step-text { font-size: 0.94rem; color: var(--text-muted); line-height: 1.7; }

/* FEATURE CARDS v5: two-tone split card — top half image-color, bottom half content */
.split-cards { display: grid; grid-template-columns: 1fr; gap: 22px; }
.split-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1.5px solid var(--border); transition: all 0.25s; }
.split-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.split-card-top { background: var(--primary); padding: 22px 24px; display: flex; align-items: center; gap: 12px; }
.split-card-top-num { font-size: 2rem; font-weight: 900; color: var(--gold); line-height: 1; }
.split-card-top-label { color: var(--accent-warm); font-size: 0.95rem; font-weight: 700; }
.split-card-bottom { background: var(--white); padding: 20px 24px; }
.split-card-title { font-size: 1rem; font-weight: 800; color: var(--primary-dark); margin-bottom: 8px; }
.split-card-text { font-size: 0.93rem; color: var(--text-muted); line-height: 1.7; }

/* CARDS */
.cards-grid-3 { display: grid; grid-template-columns: 1fr; gap: 24px; }
.card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow-sm); transition: all 0.25s; }
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card-icon { font-size: 2.2rem; margin-bottom: 14px; display: block; }
.card-title { font-size: 1.05rem; font-weight: 800; color: var(--primary); margin-bottom: 10px; }
.card-text { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }

/* TWO COL */
.two-col { display: grid; grid-template-columns: 1fr; gap: 44px; align-items: center; }
.split-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.split-img img { width: 100%; height: 360px; object-fit: cover; }

/* TESTIMONIALS v5: centered card with bottom photo bar */
.testi-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.testi-center { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.testi-content { padding: 28px 26px; }
.testi-rating { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.testi-quote-text { font-size: 1rem; color: var(--text-main); line-height: 1.75; font-style: italic; }
.testi-footer { background: var(--primary); padding: 14px 26px; display: flex; align-items: center; gap: 12px; }
.testi-initial { width: 36px; height: 36px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 0.9rem; color: var(--primary-dark); flex-shrink: 0; }
.testi-meta-name { font-weight: 800; color: var(--accent-warm); font-size: 0.95rem; }
.testi-meta-city { font-size: 0.85rem; color: rgba(252,232,236,0.7); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 820px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-question { width: 100%; background: none; border: none; display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; font-size: 1rem; font-weight: 700; color: var(--primary-dark); cursor: pointer; text-align: left; font-family: 'Nunito', sans-serif; }
.faq-icon { font-size: 1.3rem; color: var(--accent); flex-shrink: 0; }
.faq-answer { padding: 0 22px 18px; color: var(--text-muted); font-size: 0.96rem; line-height: 1.75; }

/* FORM */
.form-section { background: var(--bg-light); }
.contact-form { max-width: 800px; margin: 0 auto; background: var(--white); border-radius: var(--radius-lg); padding: 46px 40px; box-shadow: var(--shadow-lg); }
.form-row { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-label { font-size: 0.9rem; font-weight: 800; color: var(--primary-dark); }
.form-input, .form-textarea { border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 13px 16px; font-size: 1rem; font-family: 'Nunito', sans-serif; color: var(--text-main); outline: none; transition: border-color 0.2s; background: var(--bg-light); }
.form-input:focus, .form-textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(201,83,110,0.10); background: var(--white); }
.form-textarea { min-height: 130px; resize: vertical; }
.btn-submit { display: block; width: 100%; background: var(--primary); color: var(--white); font-size: 1.05rem; font-weight: 800; padding: 16px 32px; border: none; border-radius: var(--radius-sm); cursor: pointer; transition: all 0.25s; margin-top: 8px; box-shadow: var(--shadow-md); font-family: 'Nunito', sans-serif; }
.btn-submit:hover { background: var(--primary-light); transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* BG SECTION */
.bg-section { background: url('img/bg-1.jpg') center/cover no-repeat; position: relative; padding: 88px 10px; }
.bg-section-overlay { position: absolute; inset: 0; background: rgba(74,13,27,0.88); }
.bg-section-content { position: relative; z-index: 2; text-align: center; max-width: 720px; margin: 0 auto; }
.btn-cta { display: inline-block; background: var(--gold); color: var(--primary-dark); font-weight: 900; font-size: 16px; padding: 16px 44px; border-radius: var(--radius-sm); box-shadow: var(--shadow-md); transition: all 0.25s; }
.btn-cta:hover { background: var(--accent-warm); transform: translateY(-2px); }

/* PAGE BANNER */
.page-banner { background: url('img/bg-1.jpg') center/cover no-repeat; position: relative; min-height: 280px; display: flex; align-items: center; }
.page-banner-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(74,13,27,0.92) 0%, rgba(124,28,46,0.78) 100%); }
.page-banner-content { position: relative; z-index: 2; max-width: 720px; }
.page-banner-title { font-size: 2.4rem; font-weight: 900; color: var(--white); margin-bottom: 14px; }
.page-banner-sub { color: var(--accent-warm); font-size: 1.05rem; }

/* MODULE */
.module-block { background: var(--white); border-radius: var(--radius); padding: 34px 30px; border: 1.5px solid var(--border); margin-bottom: 22px; box-shadow: var(--shadow-sm); }
.module-num { font-size: 0.82rem; font-weight: 900; color: var(--accent); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
.module-title { font-size: 1.2rem; font-weight: 900; color: var(--primary-dark); margin-bottom: 14px; }
.module-text { color: var(--text-muted); font-size: 0.97rem; line-height: 1.8; }

/* VALUES */
.values-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
.value-card { background: var(--white); border-radius: var(--radius); padding: 28px 24px; border: 1.5px solid var(--border); box-shadow: var(--shadow-sm); }
.value-icon { font-size: 2rem; margin-bottom: 12px; }
.value-title { font-size: 1.05rem; font-weight: 800; color: var(--primary); margin-bottom: 10px; }
.value-text { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

/* CONTACT */
.contact-cards { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 44px; }
.contact-card { background: var(--white); border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow-sm); border: 1.5px solid var(--border); text-align: center; }
.contact-card-icon { font-size: 2rem; margin-bottom: 10px; }
.contact-card-label { font-size: 0.85rem; font-weight: 800; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.contact-card-val { font-size: 1rem; font-weight: 700; color: var(--primary-dark); }

/* MANIFESTO */
.manifesto { background: var(--primary-dark); border-radius: var(--radius-lg); padding: 48px 44px; text-align: center; }
.manifesto-text { font-size: 1.2rem; font-style: italic; color: var(--white); font-weight: 600; line-height: 1.8; }
.manifesto-ornament { margin: 20px auto 16px; width: 40px; height: 2px; background: var(--gold); }
.manifesto-author { font-weight: 800; color: var(--gold); font-size: 0.95rem; }

/* FOOTER */
.site-footer { background: var(--primary-dark); color: var(--accent-warm); padding: 48px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 32px; margin-bottom: 36px; }
.footer-title { font-size: 1.05rem; font-weight: 900; color: var(--gold); margin-bottom: 14px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: var(--accent-warm); font-size: 0.94rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(201,83,110,0.2); padding-top: 20px; text-align: center; font-size: 0.87rem; color: rgba(252,232,236,0.6); }

/* COOKIE */
#cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; background: var(--primary-dark); border-top: 2px solid var(--accent); padding: 18px 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; transform: translateY(0); transition: transform 0.4s ease; }
#cookie-banner.hidden { transform: translateY(110%); }
#cookie-banner p { margin: 0; flex: 1; min-width: 200px; color: var(--accent-warm); font-size: 0.94rem; }
#cookie-banner p a { color: var(--accent); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn-accept { background: var(--accent); color: var(--white); border: none; padding: 10px 22px; border-radius: var(--radius-sm); font-weight: 800; cursor: pointer; font-size: 0.94rem; font-family: 'Nunito', sans-serif; }
.cookie-btn-decline { background: transparent; color: var(--accent-warm); border: 1.5px solid var(--accent-warm); padding: 10px 22px; border-radius: var(--radius-sm); font-weight: 700; cursor: pointer; font-size: 0.94rem; font-family: 'Nunito', sans-serif; }
@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; } }

/* RESPONSIVE */
@media (min-width: 640px) { .divider-grid { grid-template-columns: repeat(4,1fr); } .testi-grid { grid-template-columns: 1fr 1fr; } .split-cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 768px) {
    .navigation { display: block; }
    .hamburger { display: none; }
    .cards-grid-3 { grid-template-columns: repeat(3,1fr); }
    .split-cards { grid-template-columns: repeat(3,1fr); }
    .two-col { grid-template-columns: 1fr 1fr; }
    .values-grid { grid-template-columns: repeat(3,1fr); }
    .footer-grid { grid-template-columns: repeat(3,1fr); }
    .testi-grid { grid-template-columns: repeat(3,1fr); }
    .contact-cards { grid-template-columns: repeat(3,1fr); }
    .form-row { grid-template-columns: 1fr 1fr; }
    .hero-title { font-size: 3.3rem; }
    .circle-timeline::before { left: 27px; }
}
header img[alt="logo"], footer img[alt="logo"] { filter: brightness(0) invert(1); }