:root {
  --color-bg: #FAF6F0;
  --color-bg-alt: #F3EAE0;
  --color-bg-deep: #EFE2D3;
  --color-surface: #FFFFFF;
  --color-text: #2B241E;
  --color-text-soft: #5C5044;
  --color-text-muted: #8A7C6C;
  --color-primary: #B4572E;
  --color-primary-dark: #8B3F1F;
  --color-primary-light: #D98E4A;
  --color-secondary: #4A5943;
  --color-secondary-light: #7C8B6F;
  --color-accent: #C77B3C;
  --color-border: rgba(43, 36, 30, 0.1);
  --gradient-hero: linear-gradient(135deg, #5F2A16 0%, #B4572E 48%, #D98E4A 100%);
  --gradient-accent: linear-gradient(120deg, #4A5943, #7C8B6F);
  --shadow-1: 0 1px 2px rgba(43,36,30,.08);
  --shadow-2: 0 6px 16px -4px rgba(43,36,30,.14), 0 2px 4px rgba(43,36,30,.08);
  --shadow-3: 0 16px 32px -8px rgba(43,36,30,.18), 0 6px 12px rgba(43,36,30,.10);
  --shadow-4: 0 32px 64px -16px rgba(43,36,30,.26), 0 12px 24px rgba(43,36,30,.12);
  --shadow-glow: 0 24px 60px -12px rgba(180,87,46,.35);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --space-1: .5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 6rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: 'Wix Madefor Text', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: 'Wix Madefor Display', sans-serif;
  color: var(--color-text);
  line-height: 1.2;
  margin: 0 0 .75rem;
  font-weight: 700;
}
p { margin: 0 0 1rem; color: var(--color-text-soft); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }


.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.content-block { position: relative; padding: var(--space-5) 0; }
.eyebrow-text {
  text-transform: uppercase; letter-spacing: .12em; font-size: .78rem;
  font-weight: 700; color: var(--color-primary); margin-bottom: .6rem;
}
.centered-eyebrow, .centered-heading, .centered-closing { text-align: center; }
.section-heading { font-size: clamp(1.7rem, 3.2vw, 2.6rem); max-width: 42rem; }
.centered-heading { margin: 0 auto 3rem; max-width: 46rem; }
.section-lead { font-size: 1.08rem; color: var(--color-text-soft); }
.section-closing {
  font-weight: 600; font-size: 1rem; color: var(--color-primary-dark);
  margin-top: var(--space-4); max-width: 30rem;
}
.centered-closing { margin-left: auto; margin-right: auto; text-align: center; }
.highlight-text { color: var(--color-primary); font-weight: 600; }
.text-link { color: var(--color-primary-dark); font-weight: 600; display: inline-flex; align-items: center; gap: .4rem; transition: gap .25s ease, color .25s ease; }
.text-link:hover { gap: .7rem; color: var(--color-primary); }
.badge-pill {
  display: inline-block; padding: .4rem 1rem; border-radius: var(--radius-full, 999px);
  background: rgba(255,255,255,.18); color: #fff; font-size: .8rem; font-weight: 600;
  letter-spacing: .05em; margin-bottom: 1rem; border: 1px solid rgba(255,255,255,.3);
}


.site-header {
  position: sticky; top: 0; z-index: 100; width: 100%;
  transition: background .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
  background: transparent;
}
.site-header.solid-nav {
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-2);
}
.nav-wrap {
  max-width: 1280px; margin: 0 auto; padding: 1.1rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.brand-mark { display: flex; align-items: center; gap: .6rem; font-family: 'Wix Madefor Display', sans-serif; font-weight: 800; font-size: 1.25rem; color: #fff; transition: color .3s ease; }
.solid-nav .brand-mark { color: var(--color-text); }
.brand-logo { width: 36px; height: 36px; }
.primary-nav { display: none; }
.primary-nav ul { display: flex; gap: 2rem; }
.nav-link {
  position: relative; font-weight: 600; font-size: .96rem; padding-bottom: 4px;
  transition: color .3s ease;
}
.solid-nav .nav-link { color: var(--color-text-soft); }
.nav-link::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
  background: var(--color-primary); transition: width .3s ease;
}
.nav-link:hover::after, .nav-link.is-active::after { width: 100%; }
.nav-link.is-active { color: var(--color-primary); }
.solid-nav .nav-link.is-active { color: var(--color-primary-dark); }
.nav-cta { display: none; }
.mobile-menu-toggle {
  width: 46px; height: 46px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.16); color: #fff; font-size: 1.2rem; transition: background .3s ease, color .3s ease;
}
.solid-nav .mobile-menu-toggle { background: var(--color-bg-alt); color: var(--color-text); }
.mobile-menu-toggle:hover { background: var(--color-primary); color: #fff; }

@media (min-width: 1024px) {
  .primary-nav { display: block; }
  .nav-cta { display: inline-flex; }
  .mobile-menu-toggle { display: none; }
}


.mobile-tab-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  display: flex; justify-content: space-around; align-items: center;
  background: var(--color-surface); box-shadow: var(--shadow-4);
  border-top-left-radius: var(--radius-lg); border-top-right-radius: var(--radius-lg);
  padding: .6rem .5rem calc(.6rem + env(safe-area-inset-bottom));
  transform: translateY(110%); transition: transform .38s cubic-bezier(.4,0,.2,1);
}
.mobile-tab-bar.is-open { transform: translateY(0); }
.tab-item {
  display: flex; flex-direction: column; align-items: center; gap: .25rem;
  font-size: .68rem; font-weight: 600; color: var(--color-text-muted);
  padding: .5rem .6rem; border-radius: var(--radius-sm); min-width: 48px; min-height: 48px;
  justify-content: center; transition: color .25s ease, background .25s ease;
}
.tab-item i { font-size: 1.15rem; }
.tab-item.active-tab { color: var(--color-primary-dark); background: var(--color-bg-alt); }
@media (min-width: 1024px) { .mobile-tab-bar { display: none; } }


.hero-section, .page-banner {
  position: relative; overflow: hidden; min-height: 92vh; display: flex; align-items: center; justify-content: center;
  padding: var(--space-6) 1.25rem;
}
.page-banner { min-height: 56vh; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-image { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0; background: var(--gradient-hero); opacity: .88; mix-blend-mode: multiply;
}
.page-banner .hero-overlay { opacity: .82; }
.depth-shape {
  position: absolute; border-radius: 50%; filter: blur(60px); z-index: 0; opacity: .5; pointer-events: none;
}
.depth-shape-1 { width: 380px; height: 380px; background: var(--color-primary-light); top: -100px; left: -120px; }
.depth-shape-2 { width: 320px; height: 320px; background: var(--color-secondary-light); bottom: -80px; right: -100px; }
.depth-shape-3 { width: 300px; height: 300px; background: var(--color-primary); top: 10%; right: -140px; opacity: .25; }
.depth-shape-4 { width: 260px; height: 260px; background: var(--color-secondary); bottom: -60px; left: -100px; opacity: .25; }

.hero-content { position: relative; z-index: 2; width: 100%; display: flex; justify-content: center; }
.glass-panel {
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-4);
  color: #fff;
}
.hero-card { max-width: 640px; padding: clamp(2rem, 5vw, 3.2rem); text-align: left; }
.hero-heading { font-size: clamp(2.2rem, 5vw, 3.4rem); color: #fff; }
.hero-text { color: rgba(255,255,255,.9); font-size: 1.08rem; max-width: 34rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.6rem; }

.page-banner-content { position: relative; z-index: 2; max-width: 640px; padding: clamp(1.8rem, 4vw, 2.6rem); text-align: left; color: #fff; }
.page-heading { font-size: clamp(1.9rem, 4vw, 2.8rem); color: #fff; }
.page-lead { color: rgba(255,255,255,.9); font-size: 1.05rem; }

.page-banner-legal {
  min-height: 40vh; background: var(--gradient-hero); align-items: flex-end; padding-bottom: var(--space-4);
}
.page-banner-content-legal { position: relative; z-index: 2; color: #fff; max-width: 640px; }
.page-banner-content-legal .page-heading { color: #fff; }
.page-banner-content-legal .page-lead { color: rgba(255,255,255,.85); font-weight: 600; }


.primary-action {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  background: var(--color-primary); color: #fff; font-weight: 700; font-size: .96rem;
  padding: .9rem 1.8rem; border-radius: var(--radius-md);
  box-shadow: var(--shadow-2); transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  min-height: 44px;
}
.primary-action:hover { transform: translateY(-3px); box-shadow: var(--shadow-3); background: var(--color-primary-dark); }
.secondary-action {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  background: rgba(255,255,255,.15); color: #fff; font-weight: 700; font-size: .96rem;
  padding: .9rem 1.8rem; border-radius: var(--radius-md); border: 1px solid rgba(255,255,255,.4);
  transition: background .25s ease, transform .25s ease; min-height: 44px;
}
.secondary-action:hover { background: rgba(255,255,255,.28); transform: translateY(-3px); }


.elevated-card {
  background: var(--color-surface); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2); border: 1px solid var(--color-border);
  transition: transform .3s ease, box-shadow .3s ease;
}
.elevated-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-3); }

.info-overlap-section { padding-top: 0; margin-top: -6rem; position: relative; z-index: 3; }
.info-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.four-col { }
@media (min-width: 640px) { .info-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .info-grid.four-col, .info-overlap-section .info-grid { grid-template-columns: repeat(4, 1fr); } }
.overlap-card { padding: 2rem 1.6rem; }
.card-icon {
  width: 54px; height: 54px; border-radius: var(--radius-md); background: var(--color-bg-alt);
  display: flex; align-items: center; justify-content: center; color: var(--color-primary); font-size: 1.3rem; margin-bottom: 1.1rem;
}
.elevated-card h3 { font-size: 1.15rem; }


.split-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
.reverse-layout .split-media { order: -1; }
@media (min-width: 900px) {
  .split-layout { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
  .reverse-layout .split-media { order: 2; }
}
.split-media { position: relative; }
.rounded-photo { border-radius: var(--radius-lg); box-shadow: var(--shadow-3); width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.floating-note {
  position: absolute; bottom: -18px; left: -18px; padding: .8rem 1.3rem; display: flex; align-items: center; gap: .6rem;
  color: var(--color-text); font-weight: 700; font-size: .9rem; border-radius: var(--radius-md);
  background: rgba(255,255,255,.7);
}
.floating-note i { color: var(--color-primary); }
.split-text p { max-width: 34rem; }


.services-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 900px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card { overflow: hidden; display: flex; flex-direction: column; }
.service-card-elevated { transform: translateY(-1rem); }
.service-photo { width: 100%; height: 210px; object-fit: cover; }
.service-card-body { padding: 1.6rem; }
.service-card-body h3 { font-size: 1.15rem; }


.process-steps { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 700px) { .process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .process-steps { grid-template-columns: repeat(4, 1fr); } }
.step-item { padding: 1.6rem; background: var(--color-surface); border-radius: var(--radius-md); box-shadow: var(--shadow-1); border: 1px solid var(--color-border); }
.step-number { font-family: 'Wix Madefor Display', sans-serif; font-size: 2.2rem; font-weight: 800; color: var(--color-primary-light); display: block; margin-bottom: .5rem; }


.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
@media (min-width: 900px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 160px; } }
.gallery-item { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-2); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
@media (min-width: 900px) {
  .gallery-item-tall { grid-row: span 2; }
  .gallery-item-wide { grid-column: span 2; }
}


.faq-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; }
@media (min-width: 800px) { .faq-grid { grid-template-columns: repeat(2, 1fr); } }
.faq-card { background: var(--color-surface); border-radius: var(--radius-md); box-shadow: var(--shadow-1); border: 1px solid var(--color-border); overflow: hidden; transition: box-shadow .3s ease; }
.faq-card:hover { box-shadow: var(--shadow-2); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.3rem 1.5rem; font-weight: 700; font-size: 1rem; text-align: left; color: var(--color-text);
  min-height: 44px;
}
.faq-icon { transition: transform .3s ease; color: var(--color-primary); flex-shrink: 0; }
.faq-card.is-open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; padding: 0 1.5rem; }
.faq-card.is-open .faq-answer { padding: 0 1.5rem 1.4rem; }
.faq-answer p { margin: 0; }


.cta-section { display: flex; justify-content: center; }
.cta-panel {
  max-width: 780px; width: 100%; text-align: center; padding: clamp(2.2rem, 5vw, 3.5rem);
  background: var(--gradient-accent); border-radius: var(--radius-xl); box-shadow: var(--shadow-4);
}
.cta-panel h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.cta-panel p { color: rgba(255,255,255,.9); max-width: 32rem; margin-left: auto; margin-right: auto; }
.cta-panel .primary-action { background: #fff; color: var(--color-primary-dark); margin-top: 1rem; }
.cta-panel .primary-action:hover { background: var(--color-bg-alt); }


.site-footer { background: var(--color-bg-deep); padding: var(--space-5) 1.25rem var(--space-3); margin-top: var(--space-5); }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 1.4rem; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1.2fr; } }
.footer-card { background: var(--color-surface); border-radius: var(--radius-md); padding: 1.6rem; box-shadow: var(--shadow-1); border: 1px solid var(--color-border); }
.footer-card h4 { font-size: 1rem; margin-bottom: 1rem; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a { color: var(--color-text-soft); transition: color .25s ease; }
.footer-links a:hover { color: var(--color-primary); }
.footer-logo { width: 34px; height: 34px; margin-bottom: .8rem; }
.footer-card-contact p { display: flex; align-items: center; gap: .6rem; font-size: .92rem; margin-bottom: .7rem; }
.footer-card-contact a:hover { color: var(--color-primary); }
.footer-bottom { max-width: 1200px; margin: 2rem auto 0; text-align: center; }
.footer-bottom p { color: var(--color-text-muted); font-size: .85rem; }


.layout-with-sidebar { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 960px) { .layout-with-sidebar { grid-template-columns: 280px 1fr; align-items: start; } }
.sidebar-card { position: static; padding: 1.8rem; background: rgba(255,255,255,.55); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,.5); color: var(--color-text); }
@media (min-width: 960px) { .layout-sidebar { position: sticky; top: 110px; } }
.sidebar-facts li { display: flex; align-items: center; gap: .7rem; margin-bottom: .9rem; font-weight: 600; font-size: .92rem; color: var(--color-text-soft); }
.sidebar-facts i { color: var(--color-primary); width: 20px; text-align: center; }
.sidebar-cta { width: 100%; margin-top: .5rem; }
.layout-main { display: flex; flex-direction: column; gap: 2rem; }

.service-detail-card { display: grid; grid-template-columns: 1fr; overflow: hidden; }
@media (min-width: 720px) { .service-detail-card { grid-template-columns: 1fr 1.3fr; } }
.service-detail-reverse .service-detail-media { order: 2; }
.service-detail-media img { width: 100%; height: 100%; object-fit: cover; min-height: 220px; }
.service-detail-body { padding: 1.8rem 2rem; }
.service-detail-body h2 { font-size: 1.35rem; }


.team-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 800px) { .team-grid { grid-template-columns: 1fr 1.4fr; } }
.team-photo { width: 100%; height: 260px; object-fit: cover; border-top-left-radius: var(--radius-lg); border-top-right-radius: var(--radius-lg); }
.team-card-body { padding: 1.6rem; }
.team-card-alt { display: flex; align-items: center; }
.team-card-alt .team-card-body p { margin-bottom: .8rem; }


.values-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 700px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }
.value-card { padding: 1.8rem; text-align: left; }
.value-icon { font-size: 1.6rem; color: var(--color-primary); margin-bottom: 1rem; display: block; }


.guide-block { padding: 2rem 0; border-bottom: 1px solid var(--color-border); }
.guide-block:last-of-type { border-bottom: none; }
.guide-block h2 { font-size: 1.4rem; }
.guide-block-media { display: grid; grid-template-columns: 1fr; gap: 1.6rem; align-items: center; }
@media (min-width: 800px) { .guide-block-media { grid-template-columns: .9fr 1.1fr; } }
.guide-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-2); aspect-ratio: 4/3; object-fit: cover; width: 100%; }


.contact-layout { display: grid; grid-template-columns: 1fr; gap: 2.2rem; }
@media (min-width: 960px) { .contact-layout { grid-template-columns: 1.5fr 1fr; } }
.contact-form-card { padding: clamp(1.8rem, 4vw, 2.6rem); }
.form-intro { color: var(--color-text-muted); font-size: .92rem; }
.form-block { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 1rem; }
.form-field { display: flex; flex-direction: column; gap: .4rem; }
.form-field label { font-weight: 600; font-size: .92rem; color: var(--color-text); }
.form-field input, .form-field textarea {
  padding: .85rem 1rem; border-radius: var(--radius-sm); border: 1px solid var(--color-border);
  font-family: inherit; font-size: .96rem; background: var(--color-bg); color: var(--color-text);
  transition: border-color .25s ease, box-shadow .25s ease; min-height: 44px;
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus {
  outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(180,87,46,.15);
}
.form-field-checkbox { flex-direction: row; align-items: flex-start; gap: .7rem; }
.form-field-checkbox input { width: 20px; height: 20px; flex-shrink: 0; margin-top: 3px; min-height: unset; }
.form-field-checkbox label { font-weight: 400; font-size: .88rem; color: var(--color-text-soft); }
.form-submit { align-self: flex-start; margin-top: .5rem; }
.contact-side-column { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-card { padding: 1.8rem; }
.contact-info-card p { display: flex; align-items: center; gap: .7rem; font-size: .94rem; margin-bottom: .8rem; }
.contact-info-card i { color: var(--color-primary); width: 18px; }
.urgent-block { padding: 1.8rem; background: var(--color-bg-alt); }
.urgent-icon { width: 48px; height: 48px; border-radius: var(--radius-md); background: var(--color-primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 1rem; }
.map-frame { padding: .6rem; overflow: hidden; }
.map-frame iframe { border-radius: var(--radius-md); display: block; }


.share-widget { display: flex; justify-content: center; padding: 1rem 0; }
.share-widget-inline { justify-content: flex-start; padding: 0; }
.share-widget button {
  display: inline-flex; align-items: center; gap: .6rem; padding: .8rem 1.4rem; border-radius: var(--radius-md);
  background: var(--color-surface); border: 1px solid var(--color-border); color: var(--color-text-soft);
  font-weight: 600; font-size: .9rem; box-shadow: var(--shadow-1); transition: box-shadow .25s ease, color .25s ease;
  min-height: 44px;
}
.share-widget button:hover { box-shadow: var(--shadow-2); color: var(--color-primary-dark); }
.toast-notification {
  position: fixed; bottom: 100px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--color-text); color: #fff; padding: .8rem 1.4rem; border-radius: var(--radius-md);
  font-weight: 600; font-size: .9rem; opacity: 0; pointer-events: none; transition: opacity .3s ease, transform .3s ease;
  z-index: 400; box-shadow: var(--shadow-3);
}
.toast-notification.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }


.legal-inner { max-width: 900px; }
.timeline-legal { position: relative; padding-left: 2.2rem; }
.timeline-legal::before { content: ''; position: absolute; left: 6px; top: 0; bottom: 0; width: 2px; background: var(--color-border); }
.timeline-item { position: relative; margin-bottom: 2.4rem; }
.timeline-legal-compact .timeline-item { margin-bottom: 1.8rem; }
.timeline-legal-medium .timeline-item { margin-bottom: 2.1rem; }
.timeline-marker {
  position: absolute; left: -2.2rem; top: 2px; width: 100px; font-size: .72rem; font-weight: 700;
  color: var(--color-primary); background: var(--color-bg); padding-right: .5rem;
}
.timeline-marker::before {
  content: ''; position: absolute; left: -2.2rem; top: 3px; width: 13px; height: 13px; border-radius: 50%;
  background: var(--color-primary); border: 3px solid var(--color-bg);
}
.timeline-content { padding-left: 2.6rem; }
.timeline-content h2 { font-size: 1.2rem; }
.timeline-legal-compact .timeline-content h2 { font-size: 1.1rem; }
@media (min-width: 640px) {
  .timeline-legal { padding-left: 8rem; }
  .timeline-marker { left: 0; top: 0; width: 6.5rem; }
  .timeline-marker::before { left: 6.9rem; top: 4px; }
  .timeline-content { padding-left: 0; }
}


.thanks-body { background: var(--color-bg-alt); }
.thanks-main { min-height: 70vh; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; padding: var(--space-5) 1.25rem; }
.thanks-card { max-width: 480px; width: 100%; text-align: center; padding: clamp(2.2rem, 5vw, 3rem); position: relative; z-index: 2; }
.thanks-icon {
  width: 70px; height: 70px; border-radius: 50%; background: var(--color-bg-alt); color: var(--color-primary);
  display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin: 0 auto 1.2rem;
}
.thanks-card .primary-action { margin-top: 1rem; }


.cookie-bell {
  position: fixed; bottom: 24px; right: 24px; z-index: 500; width: 56px; height: 56px; border-radius: 50%;
  background: var(--color-primary); color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; box-shadow: var(--shadow-3); cursor: pointer; transition: transform .3s ease, box-shadow .3s ease;
}
.cookie-bell:hover { transform: scale(1.08); box-shadow: var(--shadow-4); }
.cookie-badge {
  position: absolute; top: -3px; right: -3px; width: 14px; height: 14px; border-radius: 50%;
  background: #E4483A; border: 2px solid var(--color-bg); display: none;
}
.cookie-badge.is-visible { display: block; }
.cookie-panel {
  position: fixed; bottom: 0; right: 0; left: 0; z-index: 501; max-width: 420px; margin-left: auto;
  background: var(--color-surface); border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: var(--shadow-4); padding: 1.8rem; transform: translateY(120%); transition: transform .4s cubic-bezier(.4,0,.2,1);
  max-height: 80vh; overflow-y: auto;
}
@media (min-width: 520px) { .cookie-panel { right: 24px; border-radius: var(--radius-lg); margin-bottom: 90px; } }
.cookie-panel.is-open { transform: translateY(0); }
.cookie-panel-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.cookie-panel-header button { font-size: 1.1rem; color: var(--color-text-muted); min-width: 44px; min-height: 44px; }
.cookie-panel p { font-size: .88rem; }
.cookie-toggle-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; padding: .9rem 0; border-top: 1px solid var(--color-border); }
.cookie-toggle-row strong { font-size: .92rem; }
.cookie-toggle-row p { font-size: .8rem; margin: .2rem 0 0; }
.cookie-toggle-row input { width: 20px; height: 20px; margin-top: .2rem; flex-shrink: 0; }
.cookie-panel-actions { display: flex; gap: .8rem; margin-top: 1.4rem; flex-wrap: wrap; }
.cookie-panel-actions button { flex: 1; min-width: 130px; }


.scroll-reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.scroll-reveal.visible { opacity: 1; transform: translateY(0); }


@media (min-width: 1024px) {
  .hero-card { text-align: left; }
}
::selection { background: var(--color-primary-light); color: #fff; }