:root {
  --clay: #8B5E3C;
  --clay-light: #C4956A;
  --ink: #1A1410;
  --ink-soft: #2D2420;
  --cream: #F7F3EE;
  --cream-deep: #EDE6DC;
  --sage: #4A5E4A;
  --sage-light: #7A9B7A;
  --accent: #C4956A;
  --white-tint: #FDFAF7;
  --border: rgba(139,94,60,0.15);
  --shadow-sm: 0 1px 3px rgba(26,20,16,0.08), 0 2px 8px rgba(26,20,16,0.04);
  --shadow-md: 0 4px 16px rgba(26,20,16,0.10), 0 1px 4px rgba(26,20,16,0.06);
  --shadow-lg: 0 8px 32px rgba(26,20,16,0.12), 0 2px 8px rgba(26,20,16,0.08);
  --shadow-xl: 0 16px 48px rgba(26,20,16,0.14), 0 4px 12px rgba(26,20,16,0.08);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --space-xs: clamp(8px, 1.5vw, 12px);
  --space-sm: clamp(12px, 2vw, 20px);
  --space-md: clamp(20px, 3vw, 36px);
  --space-lg: clamp(40px, 6vw, 80px);
  --space-xl: clamp(60px, 10vw, 120px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Epilogue', sans-serif; background: var(--cream); color: var(--ink); line-height: 1.6; overflow-x: hidden; min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }
img { max-width: 100%; height: auto; display: block; }
a { transition: color 0.25s; }


nav { position: relative; z-index: 100; background: var(--ink); border-bottom: 1px solid rgba(196,149,106,0.2); }
.nav-inner { max-width: 1280px; margin: 0 auto; padding: 0 var(--space-md); display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 36px; width: auto; }
.nav-logo-text { font-size: 1.25rem; font-weight: 800; color: var(--cream); letter-spacing: -0.02em; }
.nav-links { display: flex; align-items: center; gap: var(--space-sm); }
.nav-links a { color: rgba(247,243,238,0.75); text-decoration: none; font-size: 0.875rem; font-weight: 500; transition: color 0.25s; letter-spacing: 0.01em; }
.nav-links a:hover { color: var(--clay-light); }
.nav-cta { background: var(--clay) !important; color: var(--cream) !important; padding: 10px 20px; border-radius: var(--radius-sm); font-weight: 600 !important; transition: background 0.25s, transform 0.2s, box-shadow 0.25s !important; box-shadow: var(--shadow-sm); }
.nav-cta:hover { background: var(--clay-light) !important; transform: translateY(-1px); box-shadow: var(--shadow-md) !important; }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: var(--cream); }
.nav-hamburger svg { width: 24px; height: 24px; }


.container { max-width: 1280px; margin: 0 auto; }


.section { width: 100%; }
.section--cream { background: var(--cream); }
.section--white { background: var(--white-tint); }
.section--dark { background: var(--ink); }
.section--sage { background: var(--sage); }
.section--clay-light { background: var(--clay); }
.section--wide { max-width: 100%; }


.label-tag { display: inline-block; background: rgba(139,94,60,0.12); color: var(--clay); padding: 6px 14px; border-radius: var(--radius-sm); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: var(--space-sm); border: 1px solid rgba(139,94,60,0.2); }
.label-tag--light { background: rgba(247,243,238,0.15); color: var(--cream); border-color: rgba(247,243,238,0.25); }


.section-header { text-align: center; margin-bottom: var(--space-lg); }
.section-title { font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: var(--space-sm); color: var(--ink); }
.section-title--light { color: var(--cream); }
.section-sub { font-size: 1.05rem; color: var(--ink-soft); max-width: 560px; margin: 0 auto; line-height: 1.7; }
.section-sub--light { color: rgba(247,243,238,0.7); }


.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: var(--radius-sm); font-family: 'Epilogue', sans-serif; font-size: 0.95rem; font-weight: 600; cursor: pointer; transition: all 0.25s; text-decoration: none; border: none; letter-spacing: 0.01em; min-height: 44px; }
.btn--primary { background: var(--clay); color: var(--cream); box-shadow: var(--shadow-md); }
.btn--primary:hover { background: var(--clay-light); transform: translateY(-2px); box-shadow: var(--shadow-lg); color: var(--cream); }
.btn--outline { background: transparent; color: var(--clay); border: 2px solid rgba(26,20,16,0.25); }
.btn--outline:hover { border-color: var(--clay); color: var(--clay); transform: translateY(-2px); }


.hero { position: relative; min-height: 100vh; background: var(--ink); display: flex; align-items: center; overflow: hidden; }
.hero-icon-grid { position: absolute; inset: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); gap: 0; opacity: 0.04; pointer-events: none; overflow: hidden; }
.hero-icon-grid i { display: flex; align-items: center; justify-content: center; height: 80px; font-size: 1.5rem; color: var(--clay-light); }
.hero-content { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; padding: var(--space-xl) var(--space-md); width: 100%; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(196,149,106,0.15); border: 1px solid rgba(196,149,106,0.3); color: var(--clay-light); padding: 8px 16px; border-radius: var(--radius-sm); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: var(--space-md); }
.hero-title { font-size: clamp(2.5rem, 7vw, 6rem); font-weight: 800; color: var(--cream); line-height: 1.05; letter-spacing: -0.03em; margin-bottom: var(--space-sm); }
.hero-title span { color: var(--clay-light); }
.hero-subtitle { font-size: clamp(1rem, 2vw, 1.25rem); color: rgba(247,243,238,0.65); max-width: 600px; line-height: 1.7; margin-bottom: var(--space-md); }
.hero-actions { display: flex; gap: var(--space-sm); flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: var(--space-md); left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(247,243,238,0.4); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; }
.hero-scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, rgba(196,149,106,0.6), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 0.4; transform: scaleY(1); } 50% { opacity: 1; transform: scaleY(1.1); } }


.page-hero { padding: clamp(60px,10vw,120px) var(--space-md); }
.page-hero--clay { background: linear-gradient(135deg, var(--clay) 0%, var(--ink-soft) 100%); }
.page-hero--sage { background: linear-gradient(135deg, var(--sage) 0%, var(--ink) 100%); }
.page-hero--dark { background: var(--ink); border-bottom: 1px solid rgba(196,149,106,0.15); }
.page-hero-content { max-width: 720px; }
.page-title { font-size: clamp(2rem, 5vw, 4rem); font-weight: 800; color: var(--cream); line-height: 1.1; letter-spacing: -0.03em; margin-bottom: var(--space-sm); }
.page-subtitle { font-size: clamp(1rem, 2vw, 1.15rem); color: rgba(247,243,238,0.7); line-height: 1.75; }


.intro-grid { display: grid; grid-template-columns: 200px 1fr; gap: var(--space-lg); align-items: start; }
.intro-label { padding-top: 6px; }
.body-large { font-size: clamp(1.05rem, 2vw, 1.2rem); line-height: 1.75; color: var(--ink-soft); margin-bottom: 1rem; }
.intro-text p { color: var(--ink-soft); line-height: 1.75; margin-bottom: 0.75rem; }
.intro-text h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: var(--space-sm); line-height: 1.2; }


.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(196,149,106,0.1); border: 1px solid rgba(196,149,106,0.1); border-radius: var(--radius-md); overflow: hidden; }
.feature-item { display: flex; gap: var(--space-md); padding: var(--space-md); background: rgba(255,255,255,0.03); transition: background 0.25s; }
.feature-item:hover { background: rgba(196,149,106,0.06); }
.feature-icon { width: 52px; height: 52px; border-radius: var(--radius-sm); background: rgba(196,149,106,0.15); display: flex; align-items: center; justify-content: center; color: var(--clay-light); font-size: 1.25rem; flex-shrink: 0; transition: background 0.25s, transform 0.25s; }
.feature-item:hover .feature-icon { background: rgba(196,149,106,0.25); transform: scale(1.05); }
.feature-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--cream); margin-bottom: 0.5rem; }
.feature-body p { font-size: 0.9rem; color: rgba(247,243,238,0.65); line-height: 1.65; }


.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; gap: 12px; }
.gallery-item { position: relative; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.gallery-item--tall { grid-row: span 2; aspect-ratio: auto; }
.gallery-item--wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,20,16,0.7) 0%, transparent 50%); display: flex; align-items: flex-end; padding: var(--space-sm); opacity: 0; transition: opacity 0.3s; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--cream); font-size: 0.875rem; font-weight: 600; letter-spacing: 0.05em; }


.carousel-wrapper { position: relative; }
.carousel { display: flex; gap: var(--space-md); overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; padding-bottom: var(--space-sm); scrollbar-width: none; }
.carousel::-webkit-scrollbar { display: none; }
.carousel-card { flex: 0 0 calc(33.333% - var(--space-md) * 2/3); min-width: 280px; scroll-snap-align: start; background: var(--white-tint); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-md); box-shadow: var(--shadow-md); transition: transform 0.3s, box-shadow 0.3s; }
.carousel-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.carousel-card-icon { width: 56px; height: 56px; border-radius: var(--radius-md); background: rgba(139,94,60,0.1); display: flex; align-items: center; justify-content: center; color: var(--clay); font-size: 1.4rem; margin-bottom: var(--space-sm); }
.carousel-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--ink); letter-spacing: -0.01em; }
.carousel-card p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.65; }
.carousel-nav { display: flex; align-items: center; justify-content: center; gap: var(--space-sm); margin-top: var(--space-md); }
.carousel-btn { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--border); background: var(--white-tint); color: var(--ink); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.25s; box-shadow: var(--shadow-sm); }
.carousel-btn:hover { background: var(--clay); color: var(--cream); border-color: var(--clay); box-shadow: var(--shadow-md); }
.carousel-dots { display: flex; gap: 8px; }
.carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); transition: all 0.25s; cursor: pointer; border: none; padding: 0; }
.carousel-dot--active { background: var(--clay); transform: scale(1.3); }


.two-col-feature { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); align-items: center; }
.two-col-text .section-title { margin-bottom: var(--space-sm); }
.two-col-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xl); aspect-ratio: 4/3; }
.two-col-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.two-col-image:hover img { transform: scale(1.03); }


.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; background: var(--white-tint); box-shadow: var(--shadow-sm); transition: box-shadow 0.25s; }
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-trigger { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: var(--space-sm); padding: var(--space-sm) var(--space-md); background: none; border: none; cursor: pointer; font-family: 'Epilogue', sans-serif; font-size: 1rem; font-weight: 600; color: var(--ink); text-align: left; min-height: 56px; transition: background 0.2s; }
.faq-trigger:hover { background: rgba(139,94,60,0.04); }
.faq-icon { flex-shrink: 0; color: var(--clay); transition: transform 0.3s; font-size: 0.875rem; }
.faq-item.faq-item--open .faq-icon { transform: rotate(45deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-body p { padding: 0 var(--space-md) var(--space-md); font-size: 0.95rem; color: var(--ink-soft); line-height: 1.75; }


.cta-block { text-align: center; padding: var(--space-lg); border-radius: var(--radius-xl); }
.cta-icon { font-size: 3rem; color: var(--clay-light); margin-bottom: var(--space-sm); }


.footer { background: var(--ink-soft); margin-top: auto; }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: var(--space-lg) var(--space-md); display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: var(--space-md); }
.footer-card { padding: var(--space-md); background: rgba(255,255,255,0.04); border: 1px solid rgba(196,149,106,0.1); border-radius: var(--radius-md); }
.footer-card h4 { font-size: 0.75rem; font-weight: 700; color: var(--clay-light); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: var(--space-sm); }
.footer-card p { font-size: 0.875rem; color: rgba(247,243,238,0.6); line-height: 1.65; margin-bottom: 0.5rem; }
.footer-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-card ul li a { color: rgba(247,243,238,0.65); text-decoration: none; font-size: 0.875rem; transition: color 0.25s; display: flex; align-items: center; gap: 8px; }
.footer-card ul li a:hover { color: var(--clay-light); }
.footer-card address { font-style: normal; }
.footer-card address a { color: rgba(247,243,238,0.65); text-decoration: none; transition: color 0.25s; }
.footer-card address a:hover { color: var(--clay-light); }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: var(--space-sm); }
.footer-logo img { height: 28px; }
.footer-logo span { font-size: 1.1rem; font-weight: 800; color: var(--cream); }
.footer-note { font-size: 0.8rem !important; color: rgba(247,243,238,0.4) !important; font-style: italic; }
.footer-bottom { border-top: 1px solid rgba(196,149,106,0.1); padding: var(--space-sm) var(--space-md); max-width: 1280px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.8rem; color: rgba(247,243,238,0.4); }


.mobile-sheet-overlay { position: fixed; inset: 0; background: rgba(26,20,16,0.5); z-index: 200; opacity: 0; pointer-events: none; transition: opacity 0.3s; backdrop-filter: blur(4px); }
.mobile-sheet-overlay.active { opacity: 1; pointer-events: all; }
.mobile-sheet { position: fixed; bottom: 0; left: 0; right: 0; background: var(--white-tint); border-radius: var(--radius-xl) var(--radius-xl) 0 0; z-index: 201; transform: translateY(100%); transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1); padding: var(--space-md); box-shadow: 0 -8px 32px rgba(26,20,16,0.2); }
.mobile-sheet.active { transform: translateY(0); }
.mobile-sheet-handle { width: 40px; height: 4px; background: var(--cream-deep); border-radius: 2px; margin: 0 auto var(--space-md); }
.mobile-sheet-nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-sheet-nav a { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-radius: var(--radius-md); color: rgba(247, 243, 238, 0.75);; text-decoration: none; font-size: 1rem; font-weight: 500; transition: background 0.2s, color 0.2s; min-height: 52px; }
.mobile-sheet-nav a:hover, .mobile-sheet-nav a:active { background: rgba(139,94,60,0.08); color: var(--clay); }
.mobile-sheet-nav a i { width: 20px; color: var(--clay); }


.back-to-top { position: fixed; bottom: var(--space-md); right: var(--space-md); width: 48px; height: 48px; border-radius: 50%; background: var(--clay); color: var(--cream); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg); transition: all 0.3s; opacity: 0; transform: translateY(16px); z-index: 150; }
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--clay-light); transform: translateY(-2px); box-shadow: var(--shadow-xl); }


.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); align-items: start; }
.contact-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); min-height: 500px; }
.contact-map iframe { width: 100%; height: 100%; min-height: 500px; }
.contact-form-wrap { background: var(--white-tint); border-radius: var(--radius-lg); padding: var(--space-md); border: 1px solid var(--border); box-shadow: var(--shadow-md); }
.form-group { margin-bottom: var(--space-sm); }
.form-group label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-family: 'Epilogue', sans-serif; font-size: 0.95rem; color: var(--ink); background: var(--cream); transition: border-color 0.25s, box-shadow 0.25s; min-height: 44px; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--clay); box-shadow: 0 0 0 3px rgba(139,94,60,0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group--checkbox { display: flex; align-items: flex-start; gap: 12px; }
.checkbox-label { display: flex; gap: 12px; align-items: flex-start; cursor: pointer; font-size: 0.875rem; color: var(--ink-soft); line-height: 1.5; }
.checkbox-label input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; accent-color: var(--clay); margin-top: 2px; }
.checkbox-label a { color: var(--clay); }


.timeline { max-width: 680px; margin: 0 auto; position: relative; }
.timeline::before { content: ''; position: absolute; left: 28px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--clay-light), transparent); }
.timeline-item { display: flex; gap: var(--space-md); margin-bottom: var(--space-md); position: relative; }
.timeline-dot { width: 56px; height: 56px; border-radius: 50%; background: var(--clay); color: var(--cream); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.1rem; box-shadow: var(--shadow-md); z-index: 1; }
.timeline-content { padding-top: 12px; }
.timeline-content h3 { font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: 0.4rem; }
.timeline-content p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.65; }


.contact-cards-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
.contact-info-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(196,149,106,0.15); border-radius: var(--radius-md); padding: var(--space-md); text-align: center; transition: background 0.25s, transform 0.25s; }
.contact-info-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
.contact-info-card i { font-size: 1.75rem; color: var(--clay-light); margin-bottom: var(--space-sm); }
.contact-info-card h3 { font-size: 0.875rem; font-weight: 700; color: var(--cream); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 0.5rem; }
.contact-info-card p { font-size: 0.95rem; color: rgba(247,243,238,0.7); }
.contact-info-card a { color: rgba(247,243,238,0.7); text-decoration: none; transition: color 0.25s; }
.contact-info-card a:hover { color: var(--clay-light); }


.promise-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
.promise-block { padding: var(--space-md); border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--white-tint); box-shadow: var(--shadow-sm); transition: box-shadow 0.3s, transform 0.3s; }
.promise-block:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.promise-number { font-size: 3rem; font-weight: 800; color: rgba(139,94,60,0.15); line-height: 1; margin-bottom: var(--space-sm); letter-spacing: -0.04em; }
.promise-block h2 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 700; color: var(--ink); margin-bottom: 0.75rem; letter-spacing: -0.02em; line-height: 1.3; }
.promise-block p { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.7; margin-bottom: 0.5rem; }


.do-dont-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
.do-card, .dont-card { padding: var(--space-md); border-radius: var(--radius-lg); }
.do-card { background: rgba(74,94,74,0.08); border: 1px solid rgba(74,94,74,0.2); }
.dont-card { background: rgba(139,94,60,0.06); border: 1px solid rgba(139,94,60,0.15); }
.do-card h3 { color: var(--sage); font-size: 1.05rem; font-weight: 700; margin-bottom: var(--space-sm); }
.dont-card h3 { color: var(--clay); font-size: 1.05rem; font-weight: 700; margin-bottom: var(--space-sm); }
.do-card ul, .dont-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.do-card li, .dont-card li { font-size: 0.9rem; color: var(--ink-soft); padding-left: 4px; line-height: 1.5; }


.module-list { display: flex; flex-direction: column; gap: var(--space-md); }
.module-card { background: var(--white-tint); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow 0.3s; }
.module-card:hover { box-shadow: var(--shadow-lg); }
.module-header { display: flex; align-items: center; gap: var(--space-md); padding: var(--space-md); border-bottom: 1px solid var(--border); background: linear-gradient(to right, rgba(139,94,60,0.04), transparent); }
.module-icon { width: 60px; height: 60px; border-radius: var(--radius-md); background: rgba(139,94,60,0.1); display: flex; align-items: center; justify-content: center; color: var(--clay); font-size: 1.5rem; flex-shrink: 0; }
.module-tag { display: inline-block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--clay-light); margin-bottom: 4px; }
.module-meta h2 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 700; color: var(--ink); letter-spacing: -0.02em; }
.module-body { padding: var(--space-md); }
.module-body > p { color: var(--ink-soft); line-height: 1.75; margin-bottom: var(--space-sm); }
.module-topics h4 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--clay); margin-bottom: var(--space-xs); }
.module-topics ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.module-topics li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.875rem; color: var(--ink-soft); line-height: 1.5; }
.module-topics li i { color: var(--clay-light); font-size: 0.6rem; margin-top: 6px; flex-shrink: 0; }
.disclaimer-box { margin-top: var(--space-sm); padding: var(--space-sm); background: rgba(139,94,60,0.06); border: 1px solid rgba(139,94,60,0.15); border-radius: var(--radius-md); display: flex; gap: 12px; align-items: flex-start; }
.disclaimer-box i { color: var(--clay); flex-shrink: 0; margin-top: 3px; }
.disclaimer-box p { font-size: 0.85rem; color: var(--ink-soft); line-height: 1.6; }


.extras-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); }
.extra-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(196,149,106,0.15); border-radius: var(--radius-md); padding: var(--space-md); text-align: center; transition: background 0.25s, transform 0.25s; }
.extra-card:hover { background: rgba(255,255,255,0.09); transform: translateY(-4px); }
.extra-card i { font-size: 2rem; color: var(--clay-light); margin-bottom: var(--space-sm); }
.extra-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--cream); margin-bottom: 0.5rem; }
.extra-card p { font-size: 0.85rem; color: rgba(247,243,238,0.65); line-height: 1.6; }


.download-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
.download-card { background: var(--white-tint); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-md); display: flex; flex-direction: column; gap: var(--space-sm); box-shadow: var(--shadow-sm); transition: box-shadow 0.3s, transform 0.3s; }
.download-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.download-card-icon { width: 64px; height: 64px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.75rem; flex-shrink: 0; }
.download-card-icon--clay { background: rgba(139,94,60,0.12); color: var(--clay); }
.download-card-icon--sage { background: rgba(74,94,74,0.12); color: var(--sage); }
.download-card-icon--ink { background: rgba(26,20,16,0.08); color: var(--ink-soft); }
.download-tag { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--clay-light); }
.download-card-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--ink); margin: 4px 0 8px; }
.download-card-body p { font-size: 0.875rem; color: var(--ink-soft); line-height: 1.65; }
.download-meta { display: flex; gap: var(--space-sm); flex-wrap: wrap; margin-top: var(--space-xs); }
.download-meta span { font-size: 0.75rem; color: var(--ink-soft); display: flex; align-items: center; gap: 5px; }
.download-btn { margin-top: auto; align-self: flex-start; }


.thanks-hero { background: linear-gradient(135deg, var(--clay) 0%, var(--sage) 50%, var(--ink) 100%); min-height: 55vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: var(--space-xl) var(--space-md); }
.thanks-hero-content { max-width: 580px; }
.thanks-icon { font-size: 4rem; color: rgba(247,243,238,0.9); margin-bottom: var(--space-md); }
.thanks-hero h1 { font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 800; color: var(--cream); letter-spacing: -0.03em; margin-bottom: var(--space-sm); line-height: 1.2; }
.thanks-hero p { font-size: 1.1rem; color: rgba(247,243,238,0.8); line-height: 1.7; }


.legal-wrap { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.accordion-item { border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; background: var(--white-tint); box-shadow: var(--shadow-sm); }
.accordion-trigger { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: var(--space-sm); padding: var(--space-sm) var(--space-md); background: none
; border: none; cursor: pointer; font-family: 'Epilogue', sans-serif; font-size: 1rem; font-weight: 600; color: var(--ink); text-align: left; min-height: 56px; transition: background 0.2s; }
.accordion-trigger:hover { background: rgba(139,94,60,0.04); }
.accordion-icon { flex-shrink: 0; color: var(--clay); transition: transform 0.3s; font-size: 0.875rem; }
.accordion-item--open .accordion-icon { transform: rotate(180deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.accordion-item--open .accordion-body { max-height: 2000px; }
.accordion-body p, .accordion-body ul, .accordion-body table { padding: 0 var(--space-md) var(--space-md); }
.accordion-body ul { padding-left: calc(var(--space-md) + 1.5rem); }
.accordion-body li { margin-bottom: 6px; font-size: 0.9rem; color: var(--ink-soft); line-height: 1.6; }


.impressum-wrap { max-width: 900px; }
.impressum-section { background: var(--white-tint); border: 1px solid var(--border); border-radius: var(--radius-md); padding: var(--space-md); box-shadow: var(--shadow-sm); margin-bottom: 8px; }
.impressum-section h2 { font-size: 1.1rem; font-weight: 700; color: var(--ink); margin-bottom: var(--space-sm); padding-bottom: var(--space-xs); border-bottom: 2px solid rgba(139,94,60,0.15); }
.impressum-section p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.7; margin-bottom: 0.5rem; }
.impressum-section ul { padding-left: 1.5rem; margin-top: 0.5rem; }
.impressum-section li { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.6; margin-bottom: 4px; }
.impressum-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.impressum-table th { width: 200px; padding: 8px 12px; background: rgba(139,94,60,0.05); color: var(--ink); font-weight: 600; text-align: left; border: 1px solid var(--border); vertical-align: top; }
.impressum-table td { padding: 8px 12px; color: var(--ink-soft); border: 1px solid var(--border); line-height: 1.5; }
.impressum-table a { color: var(--clay); text-decoration: none; }
.impressum-table a:hover { text-decoration: underline; }


.cosoto-cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; display: flex; background: var(--ink); border-top: 1px solid rgba(196,149,106,0.2); box-shadow: 0 -8px 32px rgba(26,20,16,0.3); transform: translateY(100%); transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1); }
.cosoto-cookie-banner.visible { transform: translateY(0); }
.cosoto-cookie-left { flex: 1; padding: var(--space-md); border-right: 1px solid rgba(196,149,106,0.15); }
.cosoto-cookie-left h3 { font-size: 1rem; font-weight: 700; color: var(--cream); margin-bottom: 0.5rem; }
.cosoto-cookie-left p { font-size: 0.825rem; color: rgba(247,243,238,0.65); line-height: 1.6; }
.cosoto-cookie-left a { color: var(--clay-light); }
.cosoto-cookie-right { flex: 1; padding: var(--space-md); display: flex; flex-direction: column; gap: var(--space-sm); }
.cosoto-cookie-toggles { display: flex; flex-direction: column; gap: 8px; }
.cosoto-cookie-toggle { display: flex; align-items: center; justify-content: space-between; padding: 8px 12px; background: rgba(255,255,255,0.04); border-radius: var(--radius-sm); border: 1px solid rgba(196,149,106,0.1); }
.cosoto-cookie-toggle span { font-size: 0.825rem; color: rgba(247,243,238,0.8); font-weight: 500; }
.cosoto-cookie-toggle-switch { position: relative; width: 40px; height: 22px; }
.cosoto-cookie-toggle-switch input { opacity: 0; width: 0; height: 0; }
.cosoto-cookie-slider { position: absolute; cursor: pointer; inset: 0; background: rgba(255,255,255,0.15); border-radius: 22px; transition: 0.3s; }
.cosoto-cookie-slider::before { content: ''; position: absolute; height: 16px; width: 16px; left: 3px; bottom: 3px; background: white; border-radius: 50%; transition: 0.3s; }
.cosoto-cookie-toggle-switch input:checked + .cosoto-cookie-slider { background: var(--clay); }
.cosoto-cookie-toggle-switch input:checked + .cosoto-cookie-slider::before { transform: translateX(18px); }
.cosoto-cookie-toggle-switch input:disabled + .cosoto-cookie-slider { opacity: 0.5; cursor: not-allowed; }
.cosoto-cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.cosoto-cookie-btn { flex: 1; padding: 10px 16px; border-radius: var(--radius-sm); font-family: 'Epilogue', sans-serif; font-size: 0.825rem; font-weight: 600; cursor: pointer; border: none; transition: all 0.25s; min-height: 40px; }
.cosoto-cookie-btn--accept { background: var(--clay); color: var(--cream); }
.cosoto-cookie-btn--accept:hover { background: var(--clay-light); }
.cosoto-cookie-btn--save { background: rgba(255,255,255,0.1); color: var(--cream); border: 1px solid rgba(255,255,255,0.2); }
.cosoto-cookie-btn--save:hover { background: rgba(255,255,255,0.15); }
.cosoto-cookie-btn--reject { background: transparent; color: rgba(247,243,238,0.5); border: 1px solid rgba(255,255,255,0.1); }
.cosoto-cookie-btn--reject:hover { color: rgba(247,243,238,0.8); }


@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .extras-grid { grid-template-columns: repeat(2, 1fr); }
  .module-topics ul { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; align-items: center; justify-content: center; }
  .intro-grid { grid-template-columns: 1fr; gap: var(--space-md); }
  .features-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--tall { grid-row: span 1; aspect-ratio: 4/3; }
  .gallery-item--wide { grid-column: span 2; }
  .carousel-card { flex: 0 0 85%; }
  .two-col-feature { grid-template-columns: 1fr; }
  .two-col-feature .two-col-image { order: -1; }
  .promise-grid { grid-template-columns: 1fr; }
  .do-dont-grid { grid-template-columns: 1fr; }
  .contact-split { grid-template-columns: 1fr; }
  .contact-cards-row { grid-template-columns: 1fr; }
  .download-grid { grid-template-columns: 1fr; }
  .extras-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 4px; text-align: center; }
  .cosoto-cookie-banner { flex-direction: column; }
  .cosoto-cookie-left { border-right: none; border-bottom: 1px solid rgba(196,149,106,0.15); }
  .timeline::before { left: 24px; }
  .module-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(2rem, 10vw, 3rem); }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: span 1; }
  .extras-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}