/* ── Self-hosted fonts (kein Google CDN = DSGVO-konform) ── */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/CormorantGaramond-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/CormorantGaramond-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/CormorantGaramond-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/Inter-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/Inter-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/Inter-500.woff2') format('woff2');
}

:root {
  --bg:          #faf7f2;
  --surface:     #ffffff;
  --sand:        #f0e8db;
  --sand-dark:   #e8ddd0;
  --text:        #3a332b;
  --muted:       #7a7068;
  --accent:      #1a9ad4;
  --accent-dark: #1282b5;
  --green:       #6aaa28;
  --border:      #ddd4c4;
  --max-width:   1180px;
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Inter', 'Segoe UI', Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }

a { color: inherit; text-decoration: none; }

/* ── Layout ─────────────────────────────────── */

.container {
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
}

/* ── Topbar ─────────────────────────────────── */

.topbar {
  background: var(--sand-dark);
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--muted);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  flex-wrap: wrap;
}

.topbar a {
  color: var(--accent);
  font-weight: 400;
}

/* ── Header ─────────────────────────────────── */

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 80px;
}

.logo img {
  height: 52px;
  width: auto;
}

nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}

nav a {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}

nav a:hover { color: var(--accent); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ── Hamburger ───────────────────────────────── */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--border);
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ── Buttons ─────────────────────────────────── */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 26px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.button:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.button.secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.button.secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ── Hero ────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-mask-image:
    linear-gradient(to right,  transparent 0%, rgba(0,0,0,.35) 6%,  rgba(0,0,0,1) 14%, rgba(0,0,0,1) 86%, rgba(0,0,0,.35) 94%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.45) 7%,  rgba(0,0,0,1) 16%, rgba(0,0,0,1) 88%, rgba(0,0,0,.45) 95%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right,  transparent 0%, rgba(0,0,0,.35) 6%,  rgba(0,0,0,1) 14%, rgba(0,0,0,1) 86%, rgba(0,0,0,.35) 94%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.45) 7%,  rgba(0,0,0,1) 16%, rgba(0,0,0,1) 88%, rgba(0,0,0,.45) 95%, transparent 100%);
  mask-composite: intersect;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(250,247,242,1.00) 0%,
    rgba(250,247,242,0.96) 20%,
    rgba(250,247,242,0.80) 38%,
    rgba(250,247,242,0.40) 58%,
    rgba(250,247,242,0.00) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
  padding: 120px 0;
}

.hero-copy { max-width: 560px; }

.eyebrow {
  margin: 0 0 16px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--green);
}

.hero-copy h1 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: 1.05;
  margin: 0 0 22px;
  color: var(--text);
  max-width: 13ch;
  text-wrap: balance;
}

.hero-copy p {
  margin: 0 0 30px;
  max-width: 54ch;
  font-size: 1rem;
  color: #1a100a;
  text-shadow: 0 1px 4px rgba(255,255,255,0.7);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── Sections ────────────────────────────────── */

.section { padding: 90px 0; }

h2, h3 {
  font-family: var(--font-serif);
  font-weight: 300;
  margin-top: 0;
  color: var(--text);
}

.section-title {
  font-size: clamp(2.2rem, 3.2vw, 3.4rem);
  line-height: 1.12;
  margin: 0 0 20px;
  max-width: 16ch;
}

.section-intro {
  max-width: 680px;
  color: var(--muted);
  margin: 0 0 32px;
  font-size: 1rem;
}

.service-area { font-style: italic; }

.highlight {
  background: var(--sand);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.sand {
  background: var(--sand);
  border-top: 1px solid var(--border);
}

/* ── Grids ───────────────────────────────────── */

.grid-2,
.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* ── Cards ───────────────────────────────────── */

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 36px;
  box-shadow: 0 4px 24px rgba(58,51,43,0.05);
}

.card h3 {
  font-size: 1.6rem;
  line-height: 1.2;
  margin-bottom: 14px;
}

.card p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.97rem;
}

.card p:last-child { margin-bottom: 0; }

.card-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* ── Portrait card ───────────────────────────── */

.portrait-card { text-align: center; }

.portrait-image {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin: 28px auto 16px;
}

.portrait-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  margin: 0 0 4px !important;
  color: var(--text) !important;
}

/* ── Checklist ───────────────────────────────── */

.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
}

.checklist li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--muted);
  font-size: 0.97rem;
  border-bottom: 1px solid var(--border);
}

.checklist li:last-child { border-bottom: none; }

.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid var(--green);
  border-bottom: 1.5px solid var(--green);
  transform: rotate(45deg);
}

/* ── Flip Cards ──────────────────────────────── */

.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 24px;
  margin-top: 40px;
}

.benefits--4col {
  grid-template-columns: repeat(4, 1fr);
}

.section--alt {
  background: var(--sand);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-intro--center {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.flip-card-front--term {
  align-items: center;
  text-align: center;
  gap: 16px;
}

.term-label {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.flip-card {
  perspective: 1200px;
  cursor: pointer;
  min-height: 240px;
  min-width: 0;
}

/* Letzte Karte zentrieren wenn sie allein in ihrer Reihe steht (Desktop 3-spaltig) */
@media (min-width: 981px) {
  .benefits:not(.benefits--4col) > .flip-card:last-child:nth-child(3n + 1) {
    grid-column: 2;
  }
}


.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 240px;
  transition: transform 0.65s cubic-bezier(.4,0,.2,1);
  transform-style: preserve-3d;
}

.flip-card.is-flipped .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(58,51,43,0.05);
}

.flip-card-front h3,
.flip-card-back h3 {
  font-size: 1.45rem;
  line-height: 1.2;
  margin: 0 0 10px;
}

.flip-card-front p,
.flip-card-back p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.flip-card-back {
  transform: rotateY(180deg);
  background: var(--sand);
}

.flip-card-back a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

.flip-card-back a:hover {
  text-decoration: underline;
  color: var(--accent-dark);
}

.flip-hint {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ── Angebot ─────────────────────────────────── */

.angebot-section {
  background: var(--sand);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.angebot-frame {
  margin-top: 32px;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(58,51,43,0.08);
  max-width: 860px;
}

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

.angebot-hinweis {
  margin-top: 14px;
  font-size: 0.8rem;
  color: var(--muted);
  font-style: italic;
}

/* ── USP Bar ─────────────────────────────────── */

.usp-bar {
  background: var(--text);
  padding: 28px 0;
}

.usp-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 36px;
}

.usp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.88);
  font-size: 0.92rem;
  line-height: 1.4;
}

.usp-icon {
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
  line-height: 1;
}

/* ── Section CTA Link ───────────────────────── */

.section-cta-link {
  text-align: center;
  margin-top: 32px;
}

.section-cta-link a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.section-cta-link a:hover {
  text-decoration: underline;
  color: var(--accent-dark);
}

/* ── Page Hero (Unterseiten) ─────────────────── */

.page-hero {
  background: var(--sand);
  border-bottom: 1px solid var(--border);
  padding: 64px 0 56px;
}

.page-hero .eyebrow {
  margin-bottom: 12px;
}

.page-hero .eyebrow a {
  color: var(--muted);
  text-decoration: none;
}

.page-hero .eyebrow a:hover {
  color: var(--accent);
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin: 0 0 20px;
  max-width: 680px;
}

.page-hero__intro {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}

/* ── Matratzen-Grid ──────────────────────────── */

.matratzen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 40px;
  border: 1px solid var(--border);
}

.matratzen-card {
  padding: 40px 36px;
  background: var(--surface);
}

.matratzen-card--alt {
  background: var(--sand);
}

.matratzen-card__img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
  border-radius: 4px;
}

.matratzen-card__header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 20px;
}

.matratzen-nr {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
}

.matratzen-card h3 {
  font-size: 1.5rem;
  margin: 0;
  line-height: 1.2;
}

.matratzen-card__body p {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.75;
  margin: 0 0 14px;
}

.matratzen-card__body p:last-of-type {
  margin-bottom: 20px;
}

.matratzen-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.matratzen-list li {
  font-size: 0.92rem;
  color: var(--muted);
  padding-left: 18px;
  position: relative;
}

.matratzen-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* ── Meta ────────────────────────────────────── */

.meta {
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 16px !important;
  font-style: italic;
}

/* ── Kontakt ─────────────────────────────────── */

.contact-layout {
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 20px;
}

.contact-box {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 28px 32px;
  box-shadow: 0 4px 20px rgba(58,51,43,0.04);
}

.contact-box h3 {
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  margin: 0 0 10px;
  color: var(--muted);
}

.contact-box p {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.8;
}

.contact-box a {
  color: var(--accent);
  transition: color 0.2s;
}

.contact-box a:hover { color: var(--accent-dark); }

.hours {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 20px;
  margin: 0 0 4px;
  padding: 0;
}

.hours dt {
  font-weight: 400;
  color: var(--text);
  white-space: nowrap;
}

.hours dd {
  margin: 0;
  color: var(--muted);
}

.map-static {
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(58,51,43,0.05);
  display: flex;
  flex-direction: column;
}

.map-static__img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.map-static__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  color: var(--accent);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.map-static__link::after {
  content: '→';
  font-size: 1rem;
}

.map-static__link:hover {
  background: var(--accent);
  color: #fff;
}

/* ── Bewertungen ─────────────────────────────── */

.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 24px;
  margin-top: 40px;
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  min-width: 0;
  padding: 36px 32px 28px;
  box-shadow: 0 4px 20px rgba(58,51,43,0.05);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.review-card::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--green);
  opacity: 0.25;
  position: absolute;
  top: 16px;
  left: 28px;
}

.review-stars {
  font-size: 1.1rem;
  color: var(--green);
  letter-spacing: 0.1em;
}

.review-card blockquote {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text);
  flex: 1;
}

.review-author {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.review-name {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
}

.review-source {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.reviews-cta {
  margin-top: 40px;
  text-align: center;
}


/* ── Legal Pages ─────────────────────────────── */

.legal-layout {
  max-width: 800px;
}

.legal-content {
  margin-top: 48px;
}

.legal-block {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}

.legal-block:last-child {
  border-bottom: none;
}

.legal-block h2 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin: 0 0 14px;
}

.legal-block p {
  font-size: 0.97rem;
  color: var(--muted);
  margin: 0 0 12px;
  line-height: 1.8;
}

.legal-block p:last-child { margin-bottom: 0; }

.legal-block a {
  color: var(--accent);
}

.legal-block a:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

.legal-list {
  margin: 10px 0 16px 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 2;
}

/* ── Footer ──────────────────────────────────── */

footer {
  padding: 32px 0 44px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-inner a {
  color: var(--muted);
  transition: color 0.2s;
}

.footer-inner a:hover { color: var(--accent); }

/* ── Responsive: Tablet ──────────────────────── */

@media (max-width: 980px) {
  nav { display: none; }
  nav.is-open { display: block; }

  .nav-toggle { display: flex; }

  nav.is-open {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(100dvh - 80px);
    background: #faf7f2;
    border-top: 1px solid var(--border);
    z-index: 999;
    padding: 32px 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    overflow-y: auto;
  }

  nav.is-open ul {
    flex-direction: column;
    gap: 0;
  }

  nav.is-open ul li a {
    display: block;
    padding: 18px 0;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    text-transform: none;
    letter-spacing: 0;
  }

  nav.is-open ul li a:hover {
    color: var(--accent);
  }

  .header-actions .button.secondary { display: none; }

  .usp-list {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }

  .benefits,
  .reviews {
    grid-template-columns: 1fr;
  }

  .benefits--4col {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Zentrierung der letzten Karte auf Mobile zurücksetzen */
  .benefits > .flip-card:last-child:nth-child(3n + 1) {
    grid-column: auto;
  }

  .matratzen-grid {
    grid-template-columns: 1fr;
  }

  .flip-card,
  .flip-card-inner { min-height: 200px; }

  .grid-2,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    background: url("Images/34dc7e2d-d00f-4f3b-9d51-9917ae227593.png") center / cover no-repeat;
  }

  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(250,247,242,0.92) 0%,
      rgba(250,247,242,0.78) 36%,
      rgba(250,247,242,0.40) 64%,
      rgba(250,247,242,0.10) 100%
    );
  }

  .hero-inner { padding: 80px 0 90px; }
  .hero-copy { max-width: none; }

  .section-title { max-width: none; }

  .map-box { min-height: 280px; }
  .map-box iframe { min-height: 280px; }
}

/* ── Responsive: Mobile ──────────────────────── */

@media (max-width: 640px) {
  .container,
  .hero-inner {
    width: min(100% - 24px, var(--max-width));
  }

  .topbar-inner { padding: 7px 0; font-size: 0.78rem; }
  .header-inner { min-height: 68px; }

  .logo img { height: 40px; }

  .hero-inner { padding: 64px 0 72px; }

  .hero-actions { flex-direction: column; }
  .button { width: 100%; text-align: center; }

  .section { padding: 64px 0; }

  .usp-list {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }

  .benefits,
  .benefits--4col { grid-template-columns: 1fr; }

  .matratzen-grid { grid-template-columns: 1fr; }

  .matratzen-card { padding: 28px 20px; }

  .matratzen-card__img { width: 96px; height: 96px; }

  .card, .contact-box { padding: 24px 20px; }

  .card-actions { flex-direction: column; }

  .page-hero { padding: 48px 0 40px; }

  .angebot-frame { border-radius: 4px; }
}
