
:root {
  --bg: #f4f1ec;
  --bg-soft: #efeae2;
  --text: #171311;
  --muted: #6b625d;
  --line: rgba(23, 19, 17, 0.12);
  --card: rgba(255,255,255,0.62);
  --dark: #171311;
  --accent: #2a211d;
  --shadow: 0 24px 70px rgba(23, 19, 17, 0.08);
  --radius: 28px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.6), transparent 34%),
    linear-gradient(180deg, #f8f5f1 0%, var(--bg) 100%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 20; backdrop-filter: blur(16px); background: rgba(248,245,241,0.75); border-bottom: 1px solid var(--line); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 78px; }
.brand-mark { display: flex; align-items: center; gap: 14px; font-size: 0.83rem; letter-spacing: 0.22em; }
.brand-mark img { width: 54px; height: 54px; object-fit: contain; }
.nav { display: flex; align-items: center; gap: 24px; font-size: 0.92rem; }
.nav a { color: var(--muted); }
.nav a:hover { color: var(--text); }
.nav-cta { padding: 10px 16px; border: 1px solid var(--line); border-radius: 999px; }
.hero { padding: 70px 0 40px; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 42px; align-items: center; }
.eyebrow, .kicker { display: inline-block; margin-bottom: 14px; font-size: 0.78rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); }
.eyebrow.light { color: rgba(255,255,255,0.74); }
.hero h1, h2, h3 { font-family: 'Cormorant Garamond', Georgia, serif; line-height: 0.95; letter-spacing: -0.03em; }
.hero h1 { font-size: clamp(3rem, 6vw, 5.8rem); margin: 0 0 18px; max-width: 11ch; }
h2 { font-size: clamp(2.1rem, 4.2vw, 4rem); margin: 0 0 18px; max-width: 13ch; }
h3 { margin: 0 0 16px; font-size: clamp(2rem, 3vw, 2.8rem); }
.lead, p { line-height: 1.75; font-size: 1rem; color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.button { display: inline-flex; align-items: center; justify-content: center; padding: 14px 22px; border-radius: 999px; font-weight: 600; transition: transform .25s ease, background .25s ease, color .25s ease; }
.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--dark); color: #fff; }
.button-secondary { border: 1px solid var(--line); background: rgba(255,255,255,0.4); }
.hero-facts { margin: 26px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; color: var(--muted); }
.hero-facts li::before { content: "— "; color: var(--text); }
.hero-visual { min-height: 540px; display: flex; align-items: center; justify-content: center; }
.hero-visual img { width: min(100%, 620px); object-fit: contain; filter: drop-shadow(0 18px 30px rgba(0,0,0,0.08)); }
.section { padding: 92px 0; }
.intro-strip { padding-top: 20px; }
.split-three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.split-three > div { border-top: 1px solid var(--line); padding-top: 22px; }
.two-col, .concept-grid, .problem-intro, .community-head { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.section-dark { background: linear-gradient(180deg, #171311 0%, #231c18 100%); }
.section-community { background: linear-gradient(180deg, rgba(255,255,255,0.48), rgba(239,234,226,0.64)); }
.light { color: #fff; }
.light-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); border-radius: 28px; padding: 30px; margin-top: 34px; }
.model-card { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 28px; align-items: center; }
.model-card.reverse { grid-template-columns: 1.1fr 0.9fr; }
.model-card.reverse .model-copy { order: 2; }
.model-card.reverse .model-gallery { order: 1; }
.model-tag { display:inline-block; margin-bottom: 16px; color: rgba(255,255,255,0.72); letter-spacing: .18em; text-transform: uppercase; font-size: .78rem; }
.model-copy p { color: rgba(255,255,255,0.74); }
.two-up { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.image-frame { background: rgba(255,255,255,0.78); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); }
.section-dark .image-frame { background: rgba(255,255,255,0.96); }
.image-frame img { width: 100%; height: 100%; object-fit: contain; }
.image-frame.tall { aspect-ratio: 4 / 5; }
.problem-gallery-editorial {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 38px;
  align-items: start;
}

.problem-card {
  background: rgba(255,255,255,0.82);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.problem-card img {
  width: 100%;
  height: auto;
  display: block;
}

.comfort-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 34px; align-items: start; }
.comfort-visuals { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.pill { border: 1px solid var(--line); background: rgba(255,255,255,0.54); padding: 10px 14px; border-radius: 999px; font-size: .92rem; color: var(--text); }
.community-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 32px; }
.community-card { display: flex; gap: 18px; align-items: flex-start; padding: 26px; border-radius: 24px; background: rgba(255,255,255,0.72); border: 1px solid rgba(23,19,17,0.08); box-shadow: var(--shadow); transition: transform .25s ease, box-shadow .25s ease; }
.community-card:hover { transform: translateY(-2px); box-shadow: 0 28px 60px rgba(23,19,17,0.12); }
.community-icon { width: 56px; height: 56px; flex: 0 0 56px; border-radius: 50%; background: var(--dark); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 700; }
.community-label { display: inline-block; font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.community-card h3 { font-size: 2rem; margin-bottom: 10px; }
.community-link { display: inline-flex; margin-top: 10px; font-weight: 600; }
.quote-section { padding-top: 10px; }
.quote-box { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 34px 0; }
.quote-box p { margin: 0; font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(1.9rem, 3.2vw, 3rem); color: var(--text); line-height: 1.1; max-width: 21ch; }
.wholesale-block { align-items: center; }
.section-soft { background: linear-gradient(180deg, rgba(255,255,255,0.3), rgba(255,255,255,0.1)); }
.contact-box { display: flex; justify-content: space-between; gap: 30px; align-items: flex-end; border-top: 1px solid var(--line); padding-top: 24px; }
.contact-details { display: grid; gap: 10px; text-align: right; }
.contact-details a { font-size: 1.1rem; font-weight: 600; }
.site-footer { padding: 24px 0 40px; }
.footer-wrap { display: flex; align-items: center; justify-content: space-between; gap: 18px; color: var(--muted); font-size: .94rem; }
@media (max-width: 980px) {
  .problem-gallery-editorial { grid-template-columns: 1fr; gap: 18px; }
  .nav { display: none; }
  .hero-grid, .two-col, .concept-grid, .problem-intro, .community-head, .model-card, .model-card.reverse, .comfort-grid, .split-three { grid-template-columns: 1fr; }
  .model-card.reverse .model-copy, .model-card.reverse .model-gallery { order: initial; }
  .two-up, .comfort-visuals, .community-cards { grid-template-columns: 1fr; }
  .problem-gallery { grid-template-columns: 1fr 1fr; }
  .problem-a, .problem-b, .problem-c, .problem-d, .problem-e, .problem-f { grid-column: span 1; min-height: 240px; }
  .hero-visual { min-height: auto; }
  .contact-box, .footer-wrap { flex-direction: column; align-items: flex-start; }
  .contact-details { text-align: left; }
}
@media (max-width: 640px) {
  .problem-gallery-editorial { gap: 16px; }
  .container { width: min(100% - 24px, 1180px); }
  .brand-mark span { display: none; }
  .section { padding: 72px 0; }
  .light-card, .community-card { padding: 20px; }
  .problem-gallery { grid-template-columns: 1fr; }
}


/* Solution section */

.solution-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 38px;
  align-items: start;
}

.solution-card {
  background: rgba(255,255,255,0.88);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.solution-card img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 980px) {
  .solution-gallery {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 640px) {
  .solution-gallery {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}


/* V5 compact typography adjustments */





.quote-box p {
  max-width: 40ch;
}

@media (min-width: 981px) {
  #modelle h2

  .quote-box p
}


/* V6 full-width typography */

#modelle h2 {
  max-width: none !important;
  width: 100%;
  line-height: 1.05;
}

.quote-box p {
  max-width: none !important;
  width: 100%;
  line-height: 1.2;
}

/* Reduce vertical spacing globally */
.section {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.section-soft {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.section-dark {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

/* Tighten wholesale spacing */
#wholesale {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

