html{overflow-x:clip;}
/* ═══════════════════════════════════════════════
   ADDA CASA STUDIO — main.css
   Colours: terracotta #B85535 | navy #1B2A4A | cream #F7EBD8
   ═══════════════════════════════════════════════ */

:root {
  --terra:   #B85535;
  --navy:    #1B2A4A;
  --cream:   #F7EBD8;
  --cream2:  #F0E6D0;
  --dark:    #1E0E08;
  --gray:    #6B7280;
  --light:   #F9F6F1;
  --white:   #FFFFFF;
  --gold:    #B8960C;
  --flag-g:  #009246;
  --flag-r:  #CE2B37;

  --font-serif: 'Georgia', 'Times New Roman', serif;
  --font-sans:  -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius: 4px;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --transition: 0.3s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--dark); background: var(--white); line-height: 1.6; }
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }

/* ══════════════════════════════════════
   HEADER / NAV
   ══════════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 2px solid var(--cream2);
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.header-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 80px;
}
.site-logo img { height: 60px; width: auto; }

/* ── Header / Navigation (matches actual markup) ─────────────── */
.site-logo { display:flex; align-items:center; gap:.55rem; text-decoration:none; }
.site-logo img { height: 52px; width: auto; }
.logo-text { font-family: Georgia, serif; font-size: 1.1rem; font-weight: 700; color: var(--navy); white-space: nowrap; }
.logo-text em { font-style: italic; color: var(--terra); }
/* Brand wordmark used inline in text – same lockup as the logo (serif, italic
   terra "Studio"); base colour inherits so it works on light and dark. */
.brandmark { font-family: Georgia, serif; font-style: normal; }
.brandmark em { font-style: italic; color: var(--terra); }

.nav-menu { display: flex; align-items: center; gap: 1.1rem; }
.nav-menu > ul { display: flex; align-items: center; gap: .1rem; list-style: none; margin: 0; padding: 0; }
.nav-menu a { display: block; padding: .5rem .55rem; font-size: .8rem; letter-spacing: .03em; text-transform: uppercase; color: var(--navy); font-weight: 600; border-bottom: 2px solid transparent; transition: color .2s ease, border-color .2s ease; white-space: nowrap; }
.nav-menu a:hover, .nav-menu a.active, .nav-menu a[aria-current="page"] { color: var(--terra); border-bottom-color: var(--terra); }
.nav-menu a.nav-cta { background: var(--terra); color:#fff; border-radius: 4px; padding: .5rem .9rem; border-bottom: 2px solid transparent; }
.nav-menu a.nav-cta:hover { background: #a04a2d; color:#fff; }

.lang-switch { display: flex; align-items: center; gap: .25rem; }
.lang-switch a { font-size: .76rem; font-weight: 700; padding: .25rem .4rem; border-radius: 3px; color: var(--gray); }
.lang-switch a.active, .lang-switch a:hover { color: var(--terra); background: var(--cream); }
.lang-switch span { color: #ccc; font-size:.75rem; }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.burger span { display: block; width: 26px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.burger.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2){ opacity:0; }
.burger.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px){
  .burger{ display:flex; }
  .header-inner{ position: relative; }
  .nav-menu{
    display:none; position:absolute; top:100%; left:0; right:0;
    flex-direction:column; align-items:stretch; gap:0;
    background:#fff; box-shadow:0 12px 28px rgba(0,0,0,.14);
    border-top:1px solid var(--cream2); padding:.4rem 0;
    max-height:calc(100vh - 68px); overflow-y:auto;
  }
  .nav-menu.open{ display:flex; }
  .nav-menu > ul{ flex-direction:column; align-items:stretch; gap:0; width:100%; }
  .nav-menu a{ padding:.9rem 1.5rem; font-size:.95rem; text-transform:none; letter-spacing:0; border-bottom:none; border-left:3px solid transparent; }
  .nav-menu a:hover, .nav-menu a.active, .nav-menu a[aria-current="page"]{ border-left-color:var(--terra); border-bottom-color:transparent; background:var(--cream); }
  .nav-menu a.nav-cta{ margin:.5rem 1.5rem; text-align:center; border-radius:4px; }
  .lang-switch{ padding:.7rem 1.5rem .4rem; border-top:1px solid var(--cream2); margin-top:.3rem; }
  .logo-text{ font-size:1rem; }
  .site-logo img{ height:44px; }
}

.main-nav ul {
  display: flex; gap: 0; align-items: center;
}
.main-nav a {
  display: block; padding: 0.5rem 1.1rem;
  font-size: 0.88rem; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--navy); font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.main-nav a:hover,
.main-nav a.active { color: var(--terra); border-bottom-color: var(--terra); }

.header-actions { display: flex; align-items: center; gap: 1rem; }

.lang-switcher { display: flex; gap: 0.25rem; }
.lang-switcher a {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.05em;
  padding: 0.25rem 0.5rem; border-radius: 3px;
  color: var(--gray); transition: all var(--transition);
}
.lang-switcher a.active,
.lang-switcher a:hover { color: var(--terra); background: var(--cream); }

.btn-wa {
  display: flex; align-items: center; gap: 0.5rem;
  background: #25D366; color: white;
  padding: 0.55rem 1.2rem; border-radius: 25px;
  font-size: 0.85rem; font-weight: 700;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-wa:hover { background: #1ebe5d; transform: translateY(-1px); }
.btn-wa svg  { width: 18px; height: 18px; fill: white; }

/* Hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); transition: all var(--transition); }

/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
.hero.hero--home { height: 86vh; min-height: 560px; }
.hero {
  position: relative; height: 62vh; min-height: 430px;
  display: flex; align-items: center;
  overflow: hidden; background: var(--navy);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.55;
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1.04); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(27,42,74,0.85) 0%, rgba(27,42,74,0.3) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto; padding: 0 2rem;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  color: var(--terra); font-size: 0.8rem; letter-spacing: 0.15em;
  text-transform: uppercase; font-weight: 700; margin-bottom: 1.25rem;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 32px; height: 1px; background: var(--terra);
}
.hero h1 {
  font-family: var(--font-serif); font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white); line-height: 1.2; max-width: 680px;
  margin-bottom: 1.25rem;
}
.hero h1 em { color: var(--cream); font-style: italic; }
.hero-desc {
  color: rgba(255,255,255,0.8); font-size: 1.1rem;
  max-width: 520px; margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Full-bleed hero image (used by /tueren/, home, category pages) */
.hero-img {
  position: absolute; inset: 0; z-index: 0;
}
.hero-img picture, .hero-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(27,42,74,0.85) 0%, rgba(27,42,74,0.55) 45%, rgba(27,42,74,0.2) 100%);
}
.hero-body {
  position: relative; z-index: 2; width: 100%;
  padding: 0 2rem; box-sizing: border-box;
}
@media (max-width: 600px){ .hero-body { padding: 0 1.25rem; } }
.hero-super {
  display: inline-block; color: var(--terra); font-size: 0.8rem;
  letter-spacing: 0.15em; text-transform: uppercase; font-weight: 700; margin-bottom: 1.1rem;
}
.hero-title {
  font-family: var(--font-serif); font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white); line-height: 1.15; margin-bottom: 1.15rem;
}
.hero-sub {
  color: rgba(255,255,255,0.85); font-size: 1.15rem; max-width: 520px; margin-bottom: 1.8rem;
}

.btn-primary {
  display: inline-block; text-align: center; text-decoration: none; cursor: pointer;
  background: var(--terra); color: white;
  padding: 0.85rem 2rem; border-radius: 3px;
  font-weight: 700; font-size: 0.9rem; letter-spacing: 0.05em;
  text-transform: uppercase; transition: all var(--transition);
  border: 2px solid var(--terra);
}
.btn-primary:hover { background: transparent; color: var(--terra); }

/* Outline button in brand terracotta – readable on both light (cream) and dark (navy) sections */
.btn-outline {
  display: inline-block; text-align: center; text-decoration: none; cursor: pointer;
  background: transparent; color: var(--terra);
  padding: 0.85rem 2rem; border-radius: 3px;
  font-weight: 700; font-size: 0.9rem; letter-spacing: 0.05em;
  text-transform: uppercase; transition: all var(--transition);
  border: 2px solid var(--terra);
}
.btn-outline:hover { background: var(--terra); color: #fff; }

/* Ghost button – transparent with light border, for use on dark hero images */
.btn-ghost {
  display: inline-block; text-align: center; text-decoration: none; cursor: pointer;
  background: transparent; color: #fff;
  padding: 0.85rem 2rem; border-radius: 3px;
  font-weight: 700; font-size: 0.9rem; letter-spacing: 0.05em;
  text-transform: uppercase; transition: all var(--transition);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.12); }

.hero-stats {
  position: absolute; bottom: 2.5rem; right: 2rem; z-index: 2;
  display: flex; gap: 2rem;
}
.stat { text-align: center; }
.stat-num { font-family: var(--font-serif); font-size: 2rem; color: white; font-weight: 700; line-height: 1; }
.stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.65); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 0.2rem; }

/* ══════════════════════════════════════
   SECTION UTILITIES
   ══════════════════════════════════════ */
.section { padding: 5rem 2rem; }
/* Tighter vertical rhythm around catalog / model-gallery blocks, so the photos
   sit close to the surrounding text instead of leaving large empty gaps. */
.section:has(.kcat-wrap), .section:has(.bm-card) { padding-block: 2.6rem; }
.section:has(.kcat-wrap) + .section, .section:has(.bm-card) + .section { padding-top: 2.6rem; }
.section--cream { background: var(--cream); }
.section--light { background: var(--light); }
.section--navy  { background: var(--navy); }

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

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-eyebrow {
  display: inline-block; color: var(--terra);
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 700; margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-serif); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--navy); line-height: 1.25;
}
.section-title em { color: var(--terra); font-style: italic; }
.section-sub {
  color: var(--gray); font-size: 1.05rem;
  max-width: 600px; margin: 1rem auto 0;
}
.divider {
  width: 50px; height: 2px; background: var(--terra);
  margin: 1.25rem auto 0;
}

/* ══════════════════════════════════════
   BRAND INTRO (Stosa)
   ══════════════════════════════════════ */
.brand-intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.brand-intro-img { position: relative; }
.brand-intro-img .img-main {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--radius);
}
.brand-intro-img .img-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--terra); color: white;
  padding: 1.25rem 1.5rem; text-align: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.brand-intro-img .img-badge strong { display: block; font-size: 1.8rem; font-family: var(--font-serif); }
.brand-intro-img .img-badge span  { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.85; }

.brand-intro-text h2 {
  font-family: var(--font-serif); font-size: 2.2rem;
  color: var(--navy); margin-bottom: 1.25rem; line-height: 1.25;
}
.brand-intro-text h2 em { color: var(--terra); font-style: italic; }
.brand-intro-text p { color: var(--gray); margin-bottom: 1rem; font-size: 1.02rem; line-height: 1.7; }

.brand-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.75rem 0; }
.brand-feature {
  display: flex; gap: 0.75rem; align-items: flex-start;
  background: var(--cream); padding: 0.9rem 1rem; border-radius: var(--radius);
  border-left: 3px solid var(--terra);
}
.brand-feature-icon { font-size: 1.4rem; flex-shrink: 0; }
.brand-feature-text strong { display: block; font-size: 0.85rem; color: var(--navy); }
.brand-feature-text span  { font-size: 0.78rem; color: var(--gray); }

/* ══════════════════════════════════════
   COLLECTIONS GRID
   ══════════════════════════════════════ */
.collections-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem;
}
.collection-card {
  flex: 0 1 calc((100% - 4rem) / 3);
  max-width: calc((100% - 4rem) / 3);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  background: white;
}
.collection-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.collection-img {
  aspect-ratio: 4/3; overflow: hidden; position: relative;
  background: var(--cream2);
}
.collection-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.collection-card:hover .collection-img img { transform: scale(1.05); }

.collection-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 0.5rem;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream2) 100%);
  color: var(--terra);
}
.collection-img-placeholder span { font-size: 2.5rem; }
.collection-img-placeholder p { font-size: 0.8rem; color: var(--gray); font-style: italic; }

.collection-tag {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--terra); color: white;
  padding: 0.25rem 0.75rem; font-size: 0.72rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 700; border-radius: 2px;
}

.collection-body { padding: 1.5rem; }
.collection-body h3 {
  font-family: var(--font-serif); font-size: 1.4rem;
  color: var(--navy); margin-bottom: 0.5rem;
}
.collection-body p { color: var(--gray); font-size: 0.92rem; line-height: 1.6; margin-bottom: 1rem; }
.collection-body .btn-link {
  color: var(--terra); font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 0.4rem;
  transition: gap var(--transition);
}
.collection-body .btn-link:hover { gap: 0.7rem; }

/* Homepage collection cards (card-img / card-body / card-badge) */
.card-img {
  aspect-ratio: 4/3; overflow: hidden; position: relative;
  background: var(--cream2);
}
.card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease; display: block;
}
.collection-card:hover .card-img img { transform: scale(1.05); }
.card-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--terra); color: #fff;
  padding: 0.25rem 0.75rem; font-size: 0.72rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 700; border-radius: 2px;
}
.card-body { padding: 1.5rem 1.6rem 1.7rem; }
.card-body h3 {
  font-family: var(--font-serif); font-size: 1.4rem;
  color: var(--navy); margin-bottom: 0.5rem;
}
.card-body p {
  color: var(--gray); font-size: 0.92rem;
  line-height: 1.6; margin-bottom: 1.15rem;
}

/* brand-intro used as a single full-width block (logo + text) */
.brand-intro > .brand-inner { grid-column: 1 / -1; }

/* ══════════════════════════════════════
   NUMBERS STRIP
   ══════════════════════════════════════ */
.numbers-strip {
  background: var(--navy);
  padding: 2.6rem 1.5rem;
}
.numbers-inner {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 0.6rem 0;
}
.number-item {
  flex: 1 1 0; min-width: 150px;
  padding: 0.6rem 1.8rem; text-align: center;
}
.number-value,
.number-val {
  display: block;
  font-family: var(--font-serif); font-size: 2.9rem;
  color: var(--terra); font-weight: 700; line-height: 1;
  margin-bottom: 0.55rem;
}
.number-label {
  display: block;
  color: rgba(255,255,255,0.78); font-size: 0.86rem;
  letter-spacing: 0.06em; line-height: 1.35;
}
.number-divider {
  flex: 0 0 auto; width: 1px; align-self: stretch;
  min-height: 58px; background: rgba(255,255,255,0.16);
}
@media (max-width: 640px) {
  .number-divider { display: none; }
  .number-item { flex: 1 1 42%; min-width: 0; padding: 0.9rem 0.6rem; }
  .number-value, .number-val { font-size: 2.3rem; }
}

/* ══════════════════════════════════════
   CERTS STRIP
   ══════════════════════════════════════ */
.certs-strip {
  background: var(--cream); text-align: center;
  border-top: 1px solid var(--cream2); border-bottom: 1px solid var(--cream2);
}
.certs-inner-wrap { max-width: 720px; }
.certs-title { font-family: var(--font-serif); color: var(--navy); font-size: 1.4rem; margin-bottom: 0.55rem; }
.certs-title em { color: var(--terra); font-style: italic; }
.certs-sub { color: var(--gray); font-size: 0.95rem; line-height: 1.6; margin: 0 auto 1.5rem; max-width: 560px; }
.certs-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; }
.cert-pill {
  display: inline-block; font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; font-weight: 600; color: var(--navy);
  background: #fff; border: 1px solid rgba(27,42,74,0.16);
  border-radius: 999px; padding: 0.5rem 1.05rem;
}

/* ══════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #2a3f6f 100%);
  padding: 5rem 2rem; text-align: center;
}
.cta-section h2 {
  font-family: var(--font-serif); font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: white; margin-bottom: 1rem;
}
.cta-section h2 em { color: var(--cream); font-style: italic; }
.cta-section p { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 560px; margin: 0 auto 2rem; }
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

.btn-wa-lg {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: #25D366; color: white;
  padding: 1rem 2.2rem; border-radius: 50px;
  font-weight: 700; font-size: 1rem;
  transition: all var(--transition);
}
.btn-wa-lg:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.35); }

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.site-footer {
  background: var(--dark); color: rgba(255,255,255,0.7);
  padding: 4rem 2rem 2rem;
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem;
  padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img { height: 70px; width: auto; margin-bottom: 1rem; filter: brightness(0.95); }
.footer-brand p { font-size: 0.88rem; line-height: 1.6; max-width: 260px; }
/* Wordmark: same lockup as the header logo (serif + italic terra "Studio") */
.footer-brand strong { font-family: Georgia, serif; font-weight: 700; color: #fff; }
.footer-brand strong em { font-style: italic; color: var(--terra); }

.footer-col h4 {
  color: white; font-size: 0.82rem; letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 1rem; font-weight: 700;
}
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col a { font-size: 0.88rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--terra); }

/* Legal line: guarantee spacing between links + copyright regardless of
   whitespace in the (sometimes minified) markup. */
.footer-legal a { display: inline-block; margin: 0 1.4rem 0.4rem 0; font-size: 0.82rem; transition: color var(--transition); }
.footer-legal a:hover { color: var(--terra); }
.footer-legal .footer-copy { display: inline-block; font-size: 0.78rem; }

.footer-contact p { font-size: 0.88rem; margin-bottom: 0.4rem; display: flex; gap: 0.5rem; align-items: flex-start; }
.footer-contact a:hover { color: var(--terra); }

/* Italian flag line */
.flag-line { display: flex; height: 3px; width: 80px; margin: 1rem 0; }
.flag-line span:nth-child(1) { flex: 1; background: var(--flag-g); }
.flag-line span:nth-child(2) { flex: 1; background: white; }
.flag-line span:nth-child(3) { flex: 1; background: var(--flag-r); }

.footer-bottom {
  max-width: 1280px; margin: 1.5rem auto 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom p  { font-size: 0.78rem; }
.footer-bottom ul { display: flex; gap: 1.5rem; }
.footer-bottom a  { font-size: 0.78rem; transition: color var(--transition); }
.footer-bottom a:hover { color: var(--terra); }

/* WhatsApp float */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.wa-float svg { width: 30px; height: 30px; fill: white; }

/* ══════════════════════════════════════
   IMAGE PLACEHOLDER (until real photos)
   ══════════════════════════════════════ */
.img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #e8dcc8 0%, #d4c5a9 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.5rem; color: var(--terra);
}
.img-placeholder .ph-icon { font-size: 3rem; opacity: 0.6; }
.img-placeholder .ph-text { font-size: 0.75rem; color: var(--gray); font-style: italic; text-align: center; padding: 0 1rem; }

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 1024px) {
  .collection-card { flex-basis: calc((100% - 2rem) / 2); max-width: calc((100% - 2rem) / 2); }
  .brand-intro { grid-template-columns: 1fr; gap: 3rem; }
  .numbers-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .header-inner { height: 66px; padding: 0 1.5rem; }
  .site-logo img { height: 46px; }
  .main-nav { display: none; position: absolute; top: 68px; left: 0; right: 0;
    background: white; padding: 1rem 0; box-shadow: var(--shadow);
    flex-direction: column; }
  .main-nav.open { display: flex; }
  .main-nav ul { flex-direction: column; }
  .main-nav a { padding: 0.75rem 1.5rem; border-bottom: none; border-left: 3px solid transparent; }
  .main-nav a:hover, .main-nav a.active { border-left-color: var(--terra); }
  .nav-toggle { display: flex; }
  .btn-wa span { display: none; }

  .hero { height: 75vh; }
  .hero-stats { display: none; }
  .collection-card { flex-basis: 100%; max-width: 100%; }
  .numbers-strip { grid-template-columns: repeat(2, 1fr); }
  .brand-features { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .section { padding: 3.5rem 1.25rem; }
  .cta-section { padding: 3.5rem 1.25rem; }
}

@media (max-width: 480px) {
  .numbers-strip { grid-template-columns: 1fr 1fr; }
  .certs-inner { gap: 0.45rem; }
  .cert-pill { font-size: 0.68rem; padding: 0.45rem 0.85rem; }
}

/* ══════════════════════════════════════
   IMAGE SLIDER (Badmöbel-Kollektionen)
   ══════════════════════════════════════ */
.bm-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.8rem; max-width: 1080px; margin: 0 auto; }
.bm-card { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 2px 14px rgba(0,0,0,.07); }
.bm-slider { position: relative; background: #eee; }
.bm-track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; scrollbar-width: none; touch-action: pan-x pan-y; overscroll-behavior-x: contain; overscroll-behavior-y: auto; }
.bm-track::-webkit-scrollbar { display: none; }
.bm-slide { flex: 0 0 100%; width: 100%; min-width: 100%; scroll-snap-align: center; scroll-snap-stop: always; }
.bm-slide img { width: 100%; aspect-ratio: 3/2; object-fit: cover; display: block; }
/* Door galleries: images vary between portrait and landscape – show the whole
   door instead of cropping it, on a soft neutral background. */
.bm-tuer .bm-slide img { aspect-ratio: 4/3; object-fit: contain; background: #f4f1ea; }
/* Sofa-bed galleries: each photo is a tall composite (sofa on top, opened bed
   below) – show it whole in a portrait frame on a soft neutral background. */
.bm-sbed .bm-slide img { aspect-ratio: 4/5; object-fit: contain; background: #f4f1ea; }
.bm-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; border: 0; border-radius: 50%; background: rgba(27,42,74,.55); color: #fff; font-size: 1.5rem; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; z-index: 2; }
.bm-nav:hover { background: rgba(184,85,53,.9); }
.bm-prev { left: .55rem; }
.bm-next { right: .55rem; }
.bm-dots { position: absolute; bottom: .6rem; left: 0; right: 0; display: flex; gap: .4rem; justify-content: center; z-index: 2; }
.bm-dot { width: 8px; height: 8px; border-radius: 50%; border: 0; padding: 0; background: rgba(255,255,255,.55); cursor: pointer; box-shadow: 0 0 3px rgba(0,0,0,.4); }
.bm-dot.active { background: #fff; }
.bm-body { padding: 1.1rem 1.3rem 1.4rem; }
.bm-body h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: .4rem; }
.bm-body p { font-size: .9rem; color: #555; line-height: 1.6; }
.bm-slide img { cursor: zoom-in; }
@media (max-width: 600px) { .bm-nav { width: 34px; height: 34px; font-size: 1.2rem; opacity: .92; } }

/* Lightbox (enlarge slide images) */
.bm-lightbox { position: fixed; inset: 0; width: 100%; height: 100%; box-sizing: border-box; background: rgba(10,15,25,.92); display: none; align-items: center; justify-content: center; z-index: 10000; padding: 2rem; cursor: zoom-out; overflow: hidden; }
.bm-lightbox.open { display: flex; }
.bm-lightbox img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; border-radius: 6px; box-shadow: 0 20px 60px rgba(0,0,0,.55); }
@media (max-width: 600px) { .bm-lightbox { padding: 1rem; } }
.bm-lightbox .bm-lb-close { position: absolute; top: 1rem; right: 1.4rem; width: 44px; height: 44px; border: 0; border-radius: 50%; background: rgba(255,255,255,.14); color: #fff; font-size: 2rem; line-height: 1; cursor: pointer; z-index: 2; }
.bm-lightbox .bm-lb-close:hover { background: rgba(184,85,53,.9); }
.bm-lb-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border: 0; border-radius: 50%; background: rgba(255,255,255,.16); color: #fff; font-size: 2rem; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 2; }
.bm-lb-nav:hover { background: rgba(184,85,53,.9); }
.bm-lb-prev { left: 1rem; }
.bm-lb-next { right: 1rem; }
.bm-lb-count { position: absolute; bottom: 1.1rem; left: 0; right: 0; text-align: center; color: rgba(255,255,255,.85); font-size: .9rem; letter-spacing: .05em; z-index: 2; }
@media (max-width: 600px) { .bm-lb-nav { width: 44px; height: 44px; font-size: 1.6rem; } .bm-lb-prev { left: .4rem; } .bm-lb-next { right: .4rem; } }


/* ── Katalog-Sidebar (global) ─────────────────────────── */
.kcat-wrap{display:grid;grid-template-columns:230px minmax(0,1fr);gap:2.6rem;align-items:start;max-width:1160px;margin:0 auto;}
.kcat-main{min-width:0;}
.kcat-side{position:sticky;top:86px;}
.kcat-side .kcat-title{font-family:Georgia,serif;font-size:1.02rem;color:var(--navy);text-transform:uppercase;letter-spacing:.08em;border-bottom:2px solid var(--terra);padding-bottom:.5rem;margin-bottom:1rem;}
.kcat-side .kcat-group{margin-bottom:1.15rem;}
.kcat-side .kcat-group h4{font-size:.72rem;letter-spacing:.1em;text-transform:uppercase;color:var(--terra);margin:0 0 .35rem;font-weight:700;}
.kcat-side ul{list-style:none;margin:0;padding:0;}
.kcat-side li a{display:block;padding:.42rem .2rem;font-size:.92rem;color:var(--navy);text-decoration:none;border-bottom:1px dotted #dcd2c0;transition:color .15s ease,padding .15s ease;}
.kcat-side li a:hover{color:var(--terra);padding-left:.5rem;}
.kcat-side li a.active{color:var(--terra);font-weight:700;}
.kmodel{scroll-margin-top:86px;}
.kmodel-desc{max-width:820px;margin:1.3rem auto 0;color:#555;font-size:.98rem;line-height:1.75;text-align:center;}
@media(max-width:860px){
  .kcat-wrap{grid-template-columns:minmax(0,1fr);gap:1.3rem;}
  .kcat-side{position:static;background:var(--cream);border-radius:10px;padding:1.05rem 1.2rem;}
  .kcat-side .kcat-group{margin-bottom:.6rem;}
}

.brand-card{scroll-margin-top:86px;}


/* ── Process steps (Küchen hub) ─────────────────────────── */
.process-steps{list-style:none;margin:0;padding:0;display:grid;grid-template-columns:repeat(4,1fr);gap:2rem;}
.process-step{display:block;}
.process-step .step-num{width:52px;height:52px;border-radius:50%;background:var(--terra);color:#fff;display:flex;align-items:center;justify-content:center;font-weight:700;font-size:1.05rem;font-family:var(--font-serif);margin:0 0 1rem;}
.process-step .step-content h3{font-size:1.05rem;color:var(--navy);margin:0 0 .5rem;}
.process-step .step-content p{font-size:.92rem;color:#555;line-height:1.7;margin:0;}
@media(max-width:768px){.process-steps{grid-template-columns:1fr 1fr;gap:1.6rem 1.4rem;}}
@media(max-width:480px){.process-steps{grid-template-columns:1fr;}}
