/* ================================================================
   FormaHaus — style.css
   Pastel modern palette: sage, sand, terracotta, dusty blue, cream
   Common stylesheet for /de/, /pl/, /en/ language versions.
   ================================================================ */

/* ---------- 1. DESIGN TOKENS ---------- */
:root {
  /* Brand palette — pastel 2025/2026 */
  --c-sage:        #94B49F;
  --c-sage-dark:   #6E8E78;
  --c-sage-soft:   #B5C9B9;
  --c-sand:        #E8D9C5;
  --c-sand-light:  #F4E8D8;
  --c-terracotta:  #D49A8A;
  --c-terracotta-dark: #B87A6A;
  --c-blue:        #8BA6B8;
  --c-blue-soft:   #C7D5DF;
  --c-cream:       #FAF6F0;
  --c-ivory:       #FFFFFC;
  --c-charcoal:    #2D3540;
  --c-charcoal-soft: #5A6470;
  --c-muted:       #8B92A0;
  --c-border:      #E5DDD0;
  --c-success:     #6E8E78;
  --c-error:       #B87A6A;

  /* Type */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  --fs-base: 16px;
  --fs-lead: 1.125rem;
  --fs-small: 0.9rem;

  /* Layout */
  --container: 1180px;
  --container-narrow: 760px;
  --radius-s: 6px;
  --radius-m: 12px;
  --radius-l: 20px;
  --shadow-soft: 0 4px 20px rgba(45, 53, 64, 0.06);
  --shadow-card: 0 8px 30px rgba(45, 53, 64, 0.08);
  --shadow-hover: 0 16px 40px rgba(45, 53, 64, 0.12);

  /* Motion */
  --t-fast: 0.15s ease;
  --t-base: 0.25s ease;
  --t-slow: 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* ---------- 2. RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { font-size: var(--fs-base); scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--c-charcoal);
  background: var(--c-cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--c-sage-dark); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--c-terracotta-dark); }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---------- 3. UTILITY ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.container--narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 1.5rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; top: -100px; left: 0;
  background: var(--c-charcoal); color: #fff;
  padding: 0.75rem 1.25rem; border-radius: 0 0 8px 0;
  z-index: 1000; transition: top var(--t-fast);
}
.skip-link:focus { top: 0; color: #fff; }

/* ---------- 4. TYPOGRAPHY ---------- */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; color: var(--c-charcoal); letter-spacing: -0.02em; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.25rem); margin-bottom: 1rem; }
h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; }
.lead { font-size: var(--fs-lead); color: var(--c-charcoal-soft); line-height: 1.7; }
strong, b { font-weight: 700; color: var(--c-charcoal); }
em { font-style: italic; }
.text-accent { color: var(--c-terracotta-dark); }
.text-sage  { color: var(--c-sage-dark); }
.text-muted { color: var(--c-muted); }

/* ---------- 5. HEADER ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-border);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 78px;
  gap: 1rem;
}
.site-logo {
  display: flex; align-items: center; gap: 0.6rem;
  font-weight: 800; font-size: 1.25rem;
  color: var(--c-charcoal); text-decoration: none;
  letter-spacing: -0.02em;
}
.site-logo:hover { color: var(--c-charcoal); }
.site-logo__mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.site-logo__text { display: inline-flex; align-items: baseline; }
.site-logo__accent { color: var(--c-sage-dark); }

/* Navigation */
.main-nav {
  display: flex; align-items: center; gap: 1.75rem;
}
.main-nav a {
  font-weight: 500; font-size: 0.97rem;
  color: var(--c-charcoal-soft);
  padding: 0.5rem 0;
  position: relative;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--c-charcoal); }
.main-nav a[aria-current="page"]::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--c-sage); border-radius: 2px;
}
.nav-cta {
  background: var(--c-terracotta) !important;
  color: #fff !important;
  padding: 0.6rem 1.25rem !important;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: all var(--t-fast);
}
.nav-cta:hover {
  background: var(--c-terracotta-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(212, 154, 138, 0.35);
}
.nav-cta::after { display: none !important; }

/* Language switcher */
.lang-switch {
  display: flex; align-items: center; gap: 0.25rem;
  font-size: 0.85rem; font-weight: 600;
  padding: 0.25rem; border-radius: 8px;
  background: var(--c-sand-light); border: 1px solid var(--c-border);
}
.lang-switch a, .lang-switch__current {
  padding: 0.3rem 0.6rem; border-radius: 6px;
  color: var(--c-charcoal-soft);
  text-transform: uppercase;
  transition: all var(--t-fast);
  text-decoration: none;
}
.lang-switch a:hover { background: var(--c-sand); color: var(--c-charcoal); }
.lang-switch__current { background: var(--c-sage); color: #fff; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: 8px;
  background: var(--c-sand-light);
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--c-charcoal);
  display: block; margin: 3px 0;
  border-radius: 2px;
  transition: transform var(--t-base);
}

@media (max-width: 920px) {
  .main-nav {
    position: fixed; inset: 78px 0 0 0;
    flex-direction: column; gap: 0;
    background: var(--c-cream);
    padding: 2rem 1.5rem; align-items: stretch;
    transform: translateX(100%);
    transition: transform var(--t-base);
    z-index: 99; overflow-y: auto;
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav a { padding: 1rem 0; border-bottom: 1px solid var(--c-border); font-size: 1.1rem; }
  .nav-toggle { display: inline-flex; }
  .lang-switch { order: -1; margin-bottom: 0.5rem; align-self: flex-start; }
}

/* ---------- 6. BREADCRUMBS ---------- */
.breadcrumbs {
  padding: 1rem 0;
  background: var(--c-sand-light);
  border-bottom: 1px solid var(--c-border);
  font-size: 0.88rem;
}
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.breadcrumbs li { display: flex; align-items: center; color: var(--c-muted); }
.breadcrumbs li:not(:last-child)::after {
  content: '›'; margin: 0 0.5rem; color: var(--c-muted);
}
.breadcrumbs a { color: var(--c-sage-dark); font-weight: 500; }
.breadcrumbs [aria-current="page"] { color: var(--c-charcoal); font-weight: 600; }

/* ---------- 7. HERO ---------- */
.hero {
  position: relative;
  padding: 5rem 0 4rem;
  background: linear-gradient(135deg, var(--c-sand-light) 0%, var(--c-cream) 60%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--c-sage-soft) 0%, transparent 70%);
  border-radius: 50%; opacity: 0.5;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -150px; left: -100px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, var(--c-blue-soft) 0%, transparent 70%);
  border-radius: 50%; opacity: 0.4;
  pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem;
  align-items: center;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  background: var(--c-terracotta);
  color: #fff; font-size: 0.8rem; font-weight: 700;
  border-radius: 100px; letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero__badge::before {
  content: '●'; color: #fff; animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero h1 { margin-bottom: 1.25rem; }
.hero h1 .accent { color: var(--c-sage-dark); }
.hero__lead { font-size: 1.2rem; color: var(--c-charcoal-soft); margin-bottom: 2rem; max-width: 540px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.hero__trust {
  display: flex; gap: 2rem; flex-wrap: wrap; align-items: center;
  padding-top: 1.5rem; border-top: 1px solid var(--c-border);
  font-size: 0.9rem; color: var(--c-charcoal-soft);
}
.hero__trust strong { color: var(--c-charcoal); }
.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1; max-width: 480px; justify-self: end;
  background: linear-gradient(135deg, var(--c-sage-soft) 0%, var(--c-sand) 100%);
  border-radius: var(--radius-l);
  display: grid; place-items: center;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.hero__visual svg { width: 70%; height: 70%; }

@media (max-width: 920px) {
  .hero__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__visual { max-width: 360px; justify-self: center; }
}

/* ---------- 8. BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  font-weight: 600; font-size: 1rem;
  border-radius: 10px;
  transition: all var(--t-fast);
  border: 2px solid transparent;
  text-decoration: none; line-height: 1;
}
.btn--primary { background: var(--c-terracotta); color: #fff; }
.btn--primary:hover { background: var(--c-terracotta-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(212, 154, 138, 0.4); }
.btn--secondary { background: var(--c-ivory); color: var(--c-charcoal); border-color: var(--c-border); }
.btn--secondary:hover { border-color: var(--c-sage); color: var(--c-sage-dark); transform: translateY(-2px); }
.btn--sage { background: var(--c-sage); color: #fff; }
.btn--sage:hover { background: var(--c-sage-dark); color: #fff; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--c-charcoal); border-color: var(--c-charcoal); }
.btn--ghost:hover { background: var(--c-charcoal); color: #fff; }
.btn--large { padding: 1.1rem 2rem; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ---------- 9. SECTIONS ---------- */
.section { padding: 5rem 0; }
.section--alt { background: var(--c-ivory); }
.section--sand { background: var(--c-sand-light); }
.section--sage { background: linear-gradient(135deg, var(--c-sage-soft) 0%, var(--c-sand-light) 100%); }
.section__header { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section__eyebrow {
  display: inline-block;
  font-size: 0.82rem; font-weight: 700;
  color: var(--c-sage-dark);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.section__title { margin-bottom: 1rem; }
.section__lead { font-size: 1.1rem; color: var(--c-charcoal-soft); }

/* ---------- 10. USP CARDS — 3 piliary ---------- */
.pillars {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.pillar {
  background: var(--c-ivory);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-m);
  padding: 2rem;
  transition: all var(--t-base);
  position: relative; overflow: hidden;
}
.pillar:hover {
  border-color: var(--c-sage);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.pillar__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: grid; place-items: center;
  margin-bottom: 1.25rem;
  font-size: 1.75rem;
}
.pillar--cheap .pillar__icon { background: var(--c-terracotta); color: #fff; }
.pillar--fast  .pillar__icon { background: var(--c-blue); color: #fff; }
.pillar--solid .pillar__icon { background: var(--c-sage); color: #fff; }
.pillar h3 { margin-bottom: 0.75rem; }
.pillar__metric {
  font-size: 2rem; font-weight: 800;
  color: var(--c-charcoal); line-height: 1;
  margin: 1rem 0 0.5rem;
  letter-spacing: -0.02em;
}
.pillar__metric small { font-size: 0.9rem; color: var(--c-muted); font-weight: 500; margin-left: 0.25rem; }
@media (max-width: 820px) { .pillars { grid-template-columns: 1fr; } }

/* ---------- 11. PROCESS TIMELINE ---------- */
.timeline { display: flex; flex-direction: column; gap: 1.5rem; }
.timeline__item {
  display: grid; grid-template-columns: 80px 1fr; gap: 1.5rem;
  padding: 1.75rem;
  background: var(--c-ivory);
  border-radius: var(--radius-m);
  border: 1px solid var(--c-border);
  border-left: 4px solid var(--c-sage);
  transition: all var(--t-base);
}
.timeline__item:hover { transform: translateX(4px); box-shadow: var(--shadow-soft); }
.timeline__num {
  font-size: 2.75rem; font-weight: 800;
  color: var(--c-sage); line-height: 1;
  letter-spacing: -0.04em;
}
.timeline__title { margin-bottom: 0.5rem; }
.timeline__body { color: var(--c-charcoal-soft); }
@media (max-width: 600px) {
  .timeline__item { grid-template-columns: 1fr; gap: 0.5rem; padding: 1.5rem; }
  .timeline__num { font-size: 2.25rem; }
}

/* ---------- 12. PARTNERS ---------- */
.partners-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.partner-card {
  background: var(--c-ivory);
  border-radius: var(--radius-m);
  padding: 2rem;
  border: 1px solid var(--c-border);
  transition: all var(--t-base);
}
.partner-card:hover { box-shadow: var(--shadow-soft); border-color: var(--c-sage); }
.partner-card__label {
  display: inline-block;
  font-size: 0.78rem; font-weight: 700;
  color: var(--c-sage-dark);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.partner-card__name { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.5rem; }
.partner-card__role { color: var(--c-charcoal-soft); margin-bottom: 1.25rem; }
.partner-card__link {
  font-weight: 600; color: var(--c-sage-dark);
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.partner-card__link::after { content: '→'; transition: transform var(--t-fast); }
.partner-card__link:hover::after { transform: translateX(4px); }
@media (max-width: 720px) { .partners-grid { grid-template-columns: 1fr; } }

/* ---------- 13. FEATURE GRID ---------- */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }
.feature {
  background: var(--c-ivory);
  padding: 1.5rem;
  border-radius: var(--radius-m);
  border: 1px solid var(--c-border);
}
.feature__icon { font-size: 1.5rem; margin-bottom: 0.5rem; display: block; }
.feature h4 { margin-bottom: 0.5rem; font-size: 1.05rem; }
.feature p { font-size: 0.95rem; color: var(--c-charcoal-soft); margin: 0; }

/* ---------- 14. SPEC TABLE ---------- */
.spec-table {
  background: var(--c-ivory);
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 1px solid var(--c-border);
}
.spec-table table { width: 100%; border-collapse: collapse; }
.spec-table th, .spec-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--c-border);
}
.spec-table th { background: var(--c-sand-light); font-weight: 700; color: var(--c-charcoal); }
.spec-table td { color: var(--c-charcoal-soft); }
.spec-table tr:last-child td { border-bottom: none; }

/* ---------- 15. FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--c-ivory);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-m);
  overflow: hidden;
  transition: all var(--t-fast);
}
.faq-item:hover { border-color: var(--c-sage); }
.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem; font-weight: 300;
  color: var(--c-sage-dark);
  transition: transform var(--t-base);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item__body { padding: 0 1.5rem 1.5rem; color: var(--c-charcoal-soft); line-height: 1.7; }
.faq-item__body p { margin-bottom: 0.75rem; }
.faq-item__body p:last-child { margin-bottom: 0; }

/* ---------- 16. CTA BLOCK ---------- */
.cta-block {
  background: linear-gradient(135deg, var(--c-sage) 0%, var(--c-sage-dark) 100%);
  color: #fff;
  border-radius: var(--radius-l);
  padding: 3.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.cta-block h2 { color: #fff; margin-bottom: 1rem; }
.cta-block p { color: rgba(255,255,255,0.9); font-size: 1.1rem; margin-bottom: 2rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-block .btn--primary { background: #fff; color: var(--c-sage-dark); }
.cta-block .btn--primary:hover { background: var(--c-cream); }

/* ---------- 17. CONTACT FORM ---------- */
.contact-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 3rem; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; gap: 2rem; } }

.contact-form { display: grid; gap: 1rem; }
.form-field { display: grid; gap: 0.4rem; }
.form-field label {
  font-weight: 600; font-size: 0.92rem;
  color: var(--c-charcoal);
}
.form-field label .required { color: var(--c-terracotta-dark); }
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  padding: 0.85rem 1rem;
  font: inherit; color: var(--c-charcoal);
  background: var(--c-ivory);
  border: 1.5px solid var(--c-border);
  border-radius: 8px;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none;
  border-color: var(--c-sage);
  box-shadow: 0 0 0 3px rgba(148, 180, 159, 0.2);
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-consent { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.88rem; color: var(--c-charcoal-soft); }
.form-consent input { width: 18px; height: 18px; margin-top: 0.25rem; flex-shrink: 0; accent-color: var(--c-sage); }
.form-status { padding: 1rem 1.25rem; border-radius: 8px; font-weight: 500; display: none; }
.form-status--success { background: rgba(110, 142, 120, 0.1); color: var(--c-success); border: 1px solid var(--c-success); display: block; }
.form-status--error   { background: rgba(184, 122, 106, 0.1); color: var(--c-error); border: 1px solid var(--c-error); display: block; }

.contact-info {
  background: var(--c-ivory);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-m);
  padding: 2rem;
  height: fit-content;
}
.contact-info h3 { margin-bottom: 1.25rem; }
.contact-info__item { padding: 1rem 0; border-bottom: 1px solid var(--c-border); }
.contact-info__item:last-child { border: none; padding-bottom: 0; }
.contact-info__label {
  display: block; font-size: 0.8rem; font-weight: 700;
  color: var(--c-sage-dark); text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}
.contact-info__value { font-weight: 500; color: var(--c-charcoal); font-size: 1rem; }
.contact-info__value a { color: var(--c-charcoal); }
.contact-info__value a:hover { color: var(--c-terracotta-dark); }

/* Country selector for contact page */
.country-tabs {
  display: flex; gap: 0.5rem; margin-bottom: 1.5rem;
  background: var(--c-sand-light); padding: 0.4rem; border-radius: 10px;
  overflow-x: auto;
}
.country-tab {
  padding: 0.6rem 1rem;
  border-radius: 7px;
  font-weight: 600; font-size: 0.92rem;
  color: var(--c-charcoal-soft);
  transition: all var(--t-fast);
  white-space: nowrap;
}
.country-tab:hover { background: var(--c-sand); color: var(--c-charcoal); }
.country-tab.is-active { background: var(--c-sage); color: #fff; }

/* ---------- 18. PROSE (long-form content) ---------- */
.prose { line-height: 1.75; color: var(--c-charcoal-soft); }
.prose h2 { margin-top: 2.5rem; color: var(--c-charcoal); }
.prose h3 { margin-top: 1.75rem; color: var(--c-charcoal); }
.prose ul, .prose ol { margin: 1rem 0 1.5rem 1.5rem; }
.prose ul li { list-style: none; padding-left: 1.5rem; position: relative; margin-bottom: 0.5rem; }
.prose ul li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: var(--c-sage-dark); font-weight: 700;
}
.prose ol { list-style: decimal; }
.prose ol li { padding-left: 0.5rem; margin-bottom: 0.5rem; }
.prose__meta { font-size: 0.9rem; color: var(--c-muted); margin-top: 2rem; }
.prose strong { color: var(--c-charcoal); }

.callout {
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-m);
  margin: 1.5rem 0;
  border-left: 4px solid var(--c-sage);
  background: var(--c-sand-light);
}
.callout--info { border-left-color: var(--c-blue); background: rgba(139, 166, 184, 0.1); }
.callout--promo { border-left-color: var(--c-terracotta); background: rgba(212, 154, 138, 0.1); }
.callout p { margin: 0; }

/* ---------- 19. FOOTER ---------- */
.site-footer {
  background: var(--c-charcoal);
  color: #C4C9D2;
  padding: 4rem 0 2rem;
  margin-top: 5rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-col h3 {
  color: #fff; font-size: 0.92rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col a { color: #C4C9D2; font-size: 0.95rem; }
.footer-col a:hover { color: #fff; }
.footer-col--brand p { color: #9098A8; font-size: 0.92rem; line-height: 1.6; margin-top: 1rem; max-width: 320px; }
.site-logo--footer .site-logo__text { color: #fff; }
.site-logo--footer .site-logo__accent { color: var(--c-sage); }
.footer-disclaimer {
  background: rgba(255,255,255,0.04);
  padding: 1rem 1.25rem; border-radius: 8px;
  font-size: 0.82rem; color: #9098A8; line-height: 1.6;
  margin-top: 1.5rem;
}
.footer-disclaimer strong { color: #fff; }
.footer-bottom {
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  font-size: 0.85rem; color: #9098A8;
}
@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- 20. COOKIE BANNER ---------- */
.cookie-banner {
  position: fixed; bottom: 1rem; left: 1rem; right: 1rem;
  max-width: 520px; margin-left: auto;
  background: var(--c-ivory);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-m);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-hover);
  z-index: 200;
  transform: translateY(120%);
  transition: transform var(--t-slow);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner p { font-size: 0.9rem; margin-bottom: 1rem; color: var(--c-charcoal-soft); }
.cookie-banner a { font-weight: 600; }
.cookie-banner__actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.cookie-banner button {
  padding: 0.55rem 1.1rem;
  border-radius: 8px;
  font-weight: 600; font-size: 0.9rem;
  transition: all var(--t-fast);
}
.cookie-banner [data-cookie="accept"] { background: var(--c-sage); color: #fff; }
.cookie-banner [data-cookie="accept"]:hover { background: var(--c-sage-dark); }
.cookie-banner [data-cookie="reject"] { background: var(--c-sand); color: var(--c-charcoal); }

/* ---------- 21. PAGE HERO (sub-pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--c-sand-light) 0%, var(--c-cream) 100%);
  padding: 4rem 0 3rem;
}
.page-hero h1 { margin-bottom: 1rem; }
.page-hero__lead { font-size: 1.15rem; color: var(--c-charcoal-soft); max-width: 720px; }

/* ---------- 22. REVEAL ON SCROLL ---------- */
[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
[data-reveal].is-revealed { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- 23. FOCUS (a11y) ---------- */
:focus-visible {
  outline: 3px solid var(--c-blue);
  outline-offset: 2px; border-radius: 4px;
}

/* ---------- 24. PROMO BAR (top) ---------- */
.promo-bar {
  background: var(--c-terracotta);
  color: #fff;
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.88rem; font-weight: 600;
}
.promo-bar a { color: #fff; text-decoration: underline; }
.promo-bar strong { font-weight: 800; }

/* =====================================================================
   GALLERY (construction site) + LIGHTBOX
   ===================================================================== */
.gallery-phase { margin-bottom: 3rem; }
.gallery-phase__head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.gallery-phase__num {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 50%;
  background: var(--c-terracotta); color: #fff; font-weight: 700;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.gallery-phase__title { font-size: 1.35rem; margin: 0; }
.gallery-phase__sub { color: var(--c-charcoal-soft); font-size: 0.95rem; margin: 0.15rem 0 0; }

.gallery-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.gallery-figure {
  margin: 0; border-radius: 14px; overflow: hidden; background: var(--c-ivory);
  border: 1px solid var(--c-border); cursor: zoom-in; position: relative;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.gallery-figure:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(45,53,64,0.12); }
.gallery-figure img { display: block; width: 100%; height: 200px; object-fit: cover; }
.gallery-figure figcaption {
  padding: 0.7rem 0.9rem; font-size: 0.88rem; color: var(--c-charcoal-soft);
}
.gallery-figure:focus-visible { outline: 3px solid var(--c-sage); outline-offset: 2px; }

.gallery-note {
  margin-top: 1rem; padding: 1rem 1.25rem; border-radius: 10px;
  background: var(--c-sand-light); border: 1px dashed var(--c-sage);
  color: var(--c-charcoal-soft); font-size: 0.9rem;
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  background: rgba(20,24,29,0.92); align-items: center; justify-content: center;
  padding: 2rem;
}
.lightbox.is-open { display: flex; }
.lightbox__img { max-width: 90vw; max-height: 80vh; border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lightbox__cap { position: absolute; bottom: 1.5rem; left: 0; right: 0; text-align: center; color: #fff; font-size: 0.95rem; }
.lightbox__btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.15); color: #fff; border: 0; cursor: pointer;
  width: 52px; height: 52px; border-radius: 50%; font-size: 1.5rem; line-height: 1;
}
.lightbox__btn:hover { background: rgba(255,255,255,0.3); }
.lightbox__btn--prev { left: 1.5rem; }
.lightbox__btn--next { right: 1.5rem; }
.lightbox__close {
  position: absolute; top: 1.25rem; right: 1.5rem; background: rgba(255,255,255,0.15);
  color: #fff; border: 0; cursor: pointer; width: 48px; height: 48px; border-radius: 50%; font-size: 1.4rem;
}
.lightbox__close:hover { background: rgba(255,255,255,0.3); }
@media (max-width: 560px) {
  .lightbox__btn { width: 42px; height: 42px; }
  .lightbox__btn--prev { left: 0.5rem; } .lightbox__btn--next { right: 0.5rem; }
}

/* =====================================================================
   MULTI-STEP INQUIRY WIZARD
   ===================================================================== */
.wizard { max-width: 760px; margin: 0 auto; }
.wizard__progress { display: flex; gap: 0.5rem; margin-bottom: 2rem; }
.wizard__progress-step {
  flex: 1; height: 6px; border-radius: 3px; background: var(--c-border); transition: background 0.3s ease;
}
.wizard__progress-step.is-active,
.wizard__progress-step.is-done { background: var(--c-sage); }
.wizard__steplabel { text-align: center; color: var(--c-charcoal-soft); font-size: 0.9rem; margin-bottom: 1.5rem; font-weight: 600; }
.wizard__steplabel strong { color: var(--c-charcoal); }

.wizard__panel { display: none; animation: wizardfade 0.35s ease; }
.wizard__panel.is-active { display: block; }
@keyframes wizardfade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.wizard__panel h2 { font-size: 1.5rem; margin-bottom: 0.4rem; }
.wizard__panel-lead { color: var(--c-charcoal-soft); margin-bottom: 1.5rem; }

/* option cards */
.option-cards { display: grid; gap: 0.9rem; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.option-card { position: relative; cursor: pointer; }
.option-card input { position: absolute; opacity: 0; pointer-events: none; }
.option-card__box {
  display: block; height: 100%; padding: 1.25rem; border-radius: 12px;
  border: 2px solid var(--c-border); background: var(--c-ivory); transition: all 0.15s ease;
}
.option-card__box:hover { border-color: var(--c-sage); }
.option-card input:checked + .option-card__box {
  border-color: var(--c-sage); background: rgba(148,180,159,0.10); box-shadow: 0 0 0 1px var(--c-sage);
}
.option-card input:focus-visible + .option-card__box { outline: 3px solid var(--c-sage); outline-offset: 2px; }
.option-card__icon { font-size: 1.6rem; display: block; margin-bottom: 0.5rem; }
.option-card__title { font-weight: 700; color: var(--c-charcoal); display: block; }
.option-card__desc { font-size: 0.85rem; color: var(--c-charcoal-soft); display: block; margin-top: 0.25rem; }

/* checkbox extras */
.check-grid { display: grid; gap: 0.6rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.check-pill { position: relative; cursor: pointer; }
.check-pill input { position: absolute; opacity: 0; }
.check-pill__box {
  display: flex; align-items: center; gap: 0.6rem; padding: 0.8rem 1rem;
  border: 2px solid var(--c-border); border-radius: 10px; background: var(--c-ivory);
  font-size: 0.95rem; transition: all 0.15s ease;
}
.check-pill__box:hover { border-color: var(--c-sage); }
.check-pill input:checked + .check-pill__box { border-color: var(--c-sage); background: rgba(148,180,159,0.10); }
.check-pill input:focus-visible + .check-pill__box { outline: 3px solid var(--c-sage); outline-offset: 2px; }
.check-pill__mark {
  flex: 0 0 auto; width: 20px; height: 20px; border-radius: 5px; border: 2px solid var(--c-sage);
  display: inline-flex; align-items: center; justify-content: center; color: #fff; font-size: 0.8rem;
}
.check-pill input:checked + .check-pill__box .check-pill__mark { background: var(--c-sage); }
.check-pill input:not(:checked) + .check-pill__box .check-pill__mark { color: transparent; }

/* range */
.wizard-range { display: flex; align-items: center; gap: 1rem; margin-top: 0.5rem; }
.wizard-range input[type="range"] { flex: 1; accent-color: var(--c-sage); }
.wizard-range output {
  flex: 0 0 auto; min-width: 92px; text-align: center; font-weight: 700; color: var(--c-charcoal);
  background: var(--c-sand-light); padding: 0.4rem 0.6rem; border-radius: 8px;
}

/* wizard nav + summary */
.wizard__nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2rem; }
.wizard__nav .btn--ghost {
  background: transparent; color: var(--c-charcoal-soft); border: 2px solid var(--c-border);
}
.wizard__nav .btn--ghost:hover { border-color: var(--c-charcoal-soft); color: var(--c-charcoal); }
.wizard__nav [hidden] { display: none; }

.wizard-summary { background: var(--c-sand-light); border-radius: 12px; padding: 1.25rem 1.5rem; margin-bottom: 1.5rem; }
.wizard-summary dl { display: grid; grid-template-columns: auto 1fr; gap: 0.5rem 1.25rem; margin: 0; }
.wizard-summary dt { font-weight: 700; color: var(--c-charcoal); }
.wizard-summary dd { margin: 0; color: var(--c-charcoal-soft); }
.wizard-done {
  text-align: center; padding: 2.5rem 1.5rem; background: rgba(110,142,120,0.08);
  border: 1px solid var(--c-success); border-radius: 14px;
}
.wizard-done h2 { color: var(--c-success); }
