/* index: seitenspezifisches CSS, am 03.09.2026 (Welle C) aus dem Inline-<style> ausgelagert. Wird nach colors_and_type.css geladen. */

/* ── inline ── */
    /*ovx-guard*/ html, body { overflow-x: clip; max-width: 100%; }
    /* ── Reset & base ────────────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; overflow-x: clip; }
    body { overflow-x: clip; }
    body {
      background: var(--jales-ivory);
      color: var(--jales-charcoal);
      font: var(--body);
      font-family: var(--font-sans);
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }
    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }

    /* ── Container ───────────────────────────────────────────────────── */
    .container {
      max-width: var(--maxw-content);
      margin: 0 auto;
      padding: 0 var(--container-pad);
    }
    .prose-max { max-width: var(--maxw-prose); }

    /* ── Eyebrow ─────────────────────────────────────────────────────── */
    .eyebrow {
      font: 600 11px/1.4 var(--font-sans);
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--jales-amber-text);
      margin-bottom: var(--space-3);
    }

    /* ── Amber rule ──────────────────────────────────────────────────── */
    .rule-amber {
      height: 1px;
      background: var(--jales-amber);
      border: 0;
      width: 64px;
      margin: var(--space-4) 0;
    }

    /* ── Buttons ─────────────────────────────────────────────────────── */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 24px;
      border-radius: var(--r-pill);
      font: 600 14px/1 var(--font-sans); letter-spacing: .02em; text-transform: none;
      text-decoration: none;
      border: 1px solid transparent;
      cursor: pointer;
      transition: background var(--dur-base) var(--ease), color var(--dur-base) var(--ease), border-color var(--dur-base) var(--ease), transform 80ms;
      white-space: nowrap;
    }
    .btn:active { transform: scale(.98); }
    .btn-primary {
      background: var(--jales-forest);
      color: var(--jales-ivory);
    }
    .btn-primary:hover { background: var(--jales-forest-deep); }
    .btn-ghost {
      background: transparent;
      color: var(--jales-charcoal);
      border-color: var(--jales-charcoal);
    }
    .btn-ghost:hover { background: var(--jales-charcoal); color: var(--jales-ivory); }
    .btn-ghost-light {
      background: transparent;
      color: var(--jales-ivory);
      border-color: rgba(248,244,236,.45);
    }
    .btn-ghost-light:hover { background: rgba(248,244,236,.12); }
    .btn-sm {
      padding: 10px 18px;
      font-size: 13px;
    }

    /* ── Header ──────────────────────────────────────────────────────── */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      height: var(--header-h);
      background: rgba(248,244,236,.94);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--jales-linen);
    }
    .header-inner {
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: var(--space-6);
    }

    /* Logo wordmark */
    .wordmark {
      display: inline-flex;
      align-items: center;
      gap: .42em;
      color: var(--jales-charcoal);
      line-height: 1;
      text-decoration: none;
      flex-shrink: 0;
    }
    .wordmark-jales {
      font-family: var(--font-serif);
      font-weight: 500;
      font-size: 28px;
      letter-spacing: -.02em;
      line-height: .9;
    }
    .wordmark-heart {
      flex-shrink: 0;
    }
    .wordmark-fm {
      font-family: var(--font-serif);
      font-weight: 500;
      font-size: 15px;
      letter-spacing: .06em;
      opacity: .75;
    }

    /* Nav */
    .nav-links {
      display: flex;
      align-items: center;
      gap: var(--space-5);
      list-style: none;
    }
    .nav-links a {
      font: 500 11px/1 var(--font-sans);
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--jales-charcoal);
      text-decoration: none;
      white-space: nowrap;
      transition: color var(--dur-base) var(--ease);
    }
    .nav-links a:hover { color: var(--jales-forest); }
    .nav-cta { margin-left: var(--space-4); }

    /* Mobile menu */
    .menu-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 10px;
      min-width: 44px;
      min-height: 44px;
      color: var(--jales-charcoal);
    }
    .mobile-nav {
      display: none;
      flex-direction: column;
      gap: 0;
      background: var(--jales-ivory);
      border-top: 1px solid var(--jales-linen);
      padding: var(--space-4) var(--container-pad) var(--space-5);
    }
    .mobile-nav a {
      display: block;
      padding: var(--space-4) 0;
      font: 500 14px/1.4 var(--font-sans);
      color: var(--jales-charcoal);
      text-decoration: none;
      border-bottom: 1px solid var(--jales-linen);
    }
    .mobile-nav a:last-child { border-bottom: 0; }
    .mobile-nav.open { display: flex; }

    /* ── Hero section ────────────────────────────────────────────────── */
    .hero {
      background: var(--jales-ivory);
      padding: var(--section-pad-lg) 0;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--gap-section);
      align-items: center;
    }
    .hero-text h1 {
      font: var(--display-2-fluid);
      letter-spacing: -.005em;
      color: var(--jales-charcoal);
      margin: 0 0 var(--space-5);
    }
    .hero-text .subline {
      font: var(--body-lg);
      color: var(--jales-ink-2);
      margin: 0 0 var(--space-4);
      max-width: 580px;
    }
    .hero-text .body-copy {
      font: var(--body);
      color: var(--jales-ink-2);
      margin: 0 0 var(--space-7);
      max-width: 560px;
      line-height: 1.65;
    }
    .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: var(--space-3);
    }

    /* Hero visual: two stacked canvas mocks */
    .hero-visual {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      align-items: end;
    }
    .canvas-mock {
      background: var(--jales-charcoal);
      border-radius: var(--r-md);
      box-shadow: var(--shadow-canvas);
      overflow: hidden;
      position: relative;
    }
    .canvas-mock-muenster { aspect-ratio: 3/4; }
    .canvas-mock-iris {
      aspect-ratio: 1/1;
      align-self: center;
    }
    .canvas-label {
      font: var(--label);
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--jales-warm-grey);
      text-align: center;
      margin-top: var(--space-3);
    }
    /* Hero: Iris-Hinweis + sekundäre Aktionen (Preise/Gutschein) */
    .hero-iris-note {
      font: 400 13px/1.5 var(--font-sans);
      color: var(--jales-ink-2);
      margin: var(--space-3) 0 0;
      max-width: 560px;
    }
    .hero-links { display:flex; flex-wrap:wrap; gap: var(--space-2) var(--space-5); }
    .hero-links a { font: 500 15px/1.4 var(--font-sans); color: var(--jales-charcoal); text-decoration: underline; text-underline-offset: 4px; text-decoration-color: var(--jales-amber); }
    .hero-links a:hover { color: var(--jales-forest); text-decoration-color: var(--jales-forest); }
    /* Tippziele ≥ 24 px (Audit 22.09.2026) */
    .hero-links a { display:inline-block; padding:4px 0; }
    .tile-link { display:inline-block; padding:4px 0; }
    .contact-row a { display:inline-block; padding:1px 0; }
    .maps-link { min-height:24px; }
    .hero-secondary {
      display: flex;
      flex-wrap: wrap;
      gap: var(--space-3);
      margin-top: var(--space-4);
    }
    .hero-card-link { display: block; color: inherit; text-decoration: none; }
    .hero-card-link:focus-visible { outline: 3px solid #A37F42; outline-offset: 4px; border-radius: var(--r-lg); }

    /* ── Section generic ─────────────────────────────────────────────── */
    .section {
      padding: var(--section-pad-md) 0;
    }
    .section-alt {
      background: var(--jales-linen-2);
    }
    .section-dark {
      background: var(--jales-charcoal);
      color: var(--jales-ivory);
    }
    .section-forest {
      background: var(--jales-forest);
      color: var(--jales-ivory);
    }

    /* Section heading */
    .section-head {
      margin-bottom: var(--space-9);
    }
    .section-head h2 {
      font: var(--h2-fluid);
      letter-spacing: -.005em;
      color: var(--jales-charcoal);
      margin: 0 0 var(--space-3);
    }
    .section-head p {
      font: var(--body);
      color: var(--jales-ink-2);
      max-width: var(--maxw-prose);
      line-height: 1.65;
    }
    .section-dark .section-head h2,
    .section-forest .section-head h2 { color: var(--jales-ivory); }
    .section-dark .section-head p,
    .section-forest .section-head p { color: rgba(248,244,236,.72); }

    /* ── Entry tiles (3 cards) ───────────────────────────────────────── */
    .tiles-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: var(--gap-wide);
    }
    .gutschein-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--gap-wide);
    }
    .tile {
      background: var(--jales-paper);
      border: 1px solid var(--jales-linen);
      border-radius: var(--r-lg);
      padding: var(--space-7) var(--space-6);
      display: flex;
      flex-direction: column;
      gap: var(--space-5);
      min-width: 0;
      transition: box-shadow var(--dur-base) var(--ease), transform var(--dur-base) var(--ease);
    }
    .tile:hover {
      box-shadow: var(--shadow-2);
      transform: translateY(-2px);
    }
    .tile-icon {
      width: 48px;
      height: 48px;
      object-fit: contain;
      opacity: .85;
    }
    .tile h3 {
      font: var(--h3-fluid);
      letter-spacing: -.005em;
      color: var(--jales-charcoal);
    }
    .tile p {
      font: var(--body);
      color: var(--jales-ink-2);
      line-height: 1.65;
      flex: 1;
    }
    .tile-link { font: 500 15px/1.4 var(--font-sans); color: var(--jales-forest); text-decoration: underline; text-underline-offset: 4px; text-decoration-color: rgba(42,63,51,.35); margin-top: var(--space-1); }
    .tile-link:hover { text-decoration-color: var(--jales-forest); }
    .tile-hint {
      font: 400 12px/1.4 var(--font-sans);
      color: var(--jales-warm-grey);
      margin-top: var(--space-3);
      letter-spacing: .04em;
    }

    /* ── Info block ──────────────────────────────────────────────────── */
    .info-block {
      max-width: 820px;
    }
    /* Manufaktur-Sektion mit Ladenfoto (2026-07-07) */
    .info-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
      gap: clamp(28px, 4vw, 64px);
      align-items: center;
    }
    .info-foto { margin: 0; }
    .info-foto img {
      display: block;
      width: 100%;
      height: auto;
      border-radius: var(--r-md);
      box-shadow: var(--shadow-canvas);
    }
    .info-foto figcaption {
      font: var(--body-sm);
      color: var(--jales-warm-grey);
      text-align: center;
      margin-top: var(--space-3);
    }
    @media (max-width: 900px) {
      .info-grid { grid-template-columns: 1fr; gap: var(--space-6); }
      .info-foto { max-width: 480px; }
    }
    .info-block h2 {
      font: var(--h2-fluid);
      letter-spacing: -.005em;
      color: var(--jales-charcoal);
      margin: 0 0 var(--space-5);
    }
    .info-block .body-text {
      font: var(--body-lg);
      color: var(--jales-ink-2);
      line-height: 1.7;
      margin: 0 0 var(--space-5);
    }
    .info-note {
      font: var(--body-sm);
      color: var(--jales-warm-grey);
      padding: var(--space-4) var(--space-5);
      background: var(--jales-linen-2);
      border-left: 3px solid var(--jales-linen);
      border-radius: 0 var(--r-sm) var(--r-sm) 0;
      line-height: 1.6;
    }

    /* ── Münsterbilder Foto-Portal ───────────────────────────────────── */
    .muenster-portal-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: var(--gap-section);
      align-items: start;
    }
    .portal-intro .body-text {
      font: var(--body-lg);
      color: var(--jales-ink-2);
      line-height: 1.7;
      margin: 0 0 var(--space-5);
    }
    .portal-actions {
      display: flex;
      flex-wrap: wrap;
      gap: var(--space-3);
      align-items: center;
    }
    .portal-note {
      font: var(--body-sm);
      color: var(--jales-warm-grey);
      margin: var(--space-5) 0 0;
      line-height: 1.6;
      max-width: 52ch;
    }
    .manufaktur-card {
      background: var(--jales-forest);
      color: var(--jales-ivory);
      border-radius: var(--r-lg);
      padding: clamp(24px, 3vw, 36px);
      box-shadow: var(--shadow-2);
    }
    .manufaktur-card .eyebrow { color: var(--jales-amber-soft); margin: 0 0 var(--space-2); }
    .manufaktur-card h3 {
      font: var(--h3-fluid);
      letter-spacing: -.005em;
      color: var(--jales-ivory);
      margin: 0 0 var(--space-4);
    }
    .manufaktur-card p {
      font: var(--body);
      color: rgba(248,244,236,.8);
      line-height: 1.65;
      margin: 0 0 var(--space-5);
    }
    .product-chips {
      display: flex;
      flex-wrap: wrap;
      gap: var(--space-2);
      margin: 0 0 var(--space-6);
      padding: 0;
      list-style: none;
    }
    .product-chips li {
      display: inline-flex;
      align-items: center;
      font: 600 12px/1 var(--font-sans);
      letter-spacing: .04em;
      color: var(--jales-ivory);
      border: 1px solid rgba(248,244,236,.24);
      border-radius: var(--r-pill);
      padding: 0;
    }
    .product-chips li a {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 9px 15px;
      min-height: 44px;
      color: var(--jales-ivory);
      text-decoration: none;
      border-radius: var(--r-pill);
      transition: background var(--dur-base) var(--ease);
    }
    .product-chips li a:hover { background: rgba(248,244,236,.15); }
    .product-chips li a:focus-visible { outline: 2px solid rgba(248,244,236,.7); outline-offset: 2px; }
    .product-chips li svg {
      width: 20px;
      height: 20px;
      flex: 0 0 auto;
      opacity: 1;
    }
    .legal-note {
      font: 400 13px/1.65 var(--font-sans);
      color: var(--jales-warm-grey);
      margin: var(--space-7) 0 0;
      max-width: 860px;
    }
    .legal-note a { color: var(--jales-forest); text-decoration: none; border-bottom: 1px solid var(--jales-hair); }
    .legal-note a:hover { border-color: var(--jales-forest); }

    /* ── Paths section ───────────────────────────────────────────────── */
    .paths-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: var(--gap-wide);
    }
    .path-item {
      display: flex;
      flex-direction: column;
      gap: var(--space-5);
      padding: var(--space-7) var(--space-6);
      border: 1px solid rgba(248,244,236,.18);
      border-radius: var(--r-lg);
      background: rgba(248,244,236,.07);
    }
    .path-item .path-num {
      font: 600 11px/1 var(--font-sans);
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--jales-amber-soft);
    }
    .path-item h3 {
      font: var(--h3-fluid);
      color: var(--jales-ivory);
      margin: 0;
    }

    /* ── Contact block ───────────────────────────────────────────────── */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--gap-section);
      align-items: start;
    }
    .contact-info h3 {
      font: var(--h3-fluid);
      letter-spacing: -.005em;
      color: var(--jales-charcoal);
      margin: 0 0 var(--space-5);
    }
    .contact-row {
      display: flex;
      align-items: flex-start;
      gap: var(--space-4);
      padding: var(--space-4) 0;
      border-bottom: 1px solid var(--jales-linen);
      font: var(--body);
      color: var(--jales-charcoal);
    }
    .contact-row:last-child { border-bottom: none; }
    .contact-row-label {
      font: 500 11px/1.4 var(--font-sans);
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--jales-warm-grey);
      min-width: 120px;
      padding-top: 2px;
    }
    .contact-row a { color: var(--jales-forest); }
    .contact-row a:hover { text-decoration: underline; text-decoration-color: var(--jales-amber); }
    /* Ladenlokal-Foto im Kontaktblock */
    .contact-photo {
      grid-column: 1 / -1;
      margin: var(--space-7) 0 0;
    }
    .contact-photo img {
      display: block;
      width: 100%;
      height: auto;
      aspect-ratio: 1600 / 1243;
      object-fit: cover;
      border-radius: 14px;
    }
    .contact-photo figcaption {
      margin: var(--space-3) 0 0;
      font: var(--body-sm)/1.6 var(--font-sans);
      color: var(--jales-ink-2);
      text-align: center;
    }
    @media (max-width: 768px) {
      .contact-photo { margin-top: var(--space-6); }
    }

    /* Opening hours */
    /* ── Kontaktbereich gekürzt (07.09.2026) ──────────────────────────
       Seit /kontakt existiert, führt die Startseite nur noch die Kerndaten.
       Die siebenzeilige Tabelle stand doppelt und musste doppelt gepflegt
       werden; .hours-table bleibt definiert, weil /kontakt sie weiter nutzt. */
    .contact-hint {
      font: var(--body-sm)/1.6 var(--font-sans);
      color: var(--jales-ink-2);
      margin: var(--space-5) 0 var(--space-4);
    }
    .hours-line {
      font: var(--body);
      color: var(--jales-charcoal);
      line-height: 1.9;
      margin: 0 0 var(--space-3);
    }
    .hours-line strong { font-weight: 600; }
    .hours-note {
      font: var(--body-sm)/1.65 var(--font-sans);
      color: var(--jales-ink-2);
      margin: 0 0 var(--space-4);
    }
    .hours-note a { color: var(--jales-forest); text-decoration: underline; text-underline-offset: 3px; }

    .hours-table {
      width: 100%;
      border-collapse: collapse;
    }
    .hours-table td, .hours-table th {
      padding: var(--space-3) 0;
      font: var(--body);
      border-bottom: 1px solid var(--jales-linen);
      text-align: left;
      font-weight: 400;
    }
    .hours-table tr:last-child td,
    .hours-table tr:last-child th { border-bottom: none; }
    .hours-table th[scope="row"] { color: var(--jales-warm-grey); width: 50%; }
    .hours-table td:last-child { color: var(--jales-charcoal); font-weight: 500; }
    .hours-closed { color: var(--jales-warm-grey) !important; font-weight: 400 !important; }

    /* ── Footer ──────────────────────────────────────────────────────── */
    .site-footer {
      background: var(--jales-charcoal);
      color: var(--jales-ivory);
      padding: var(--section-pad-md) 0 var(--space-7);
    }
    .footer-inner {
      display: grid;
      grid-template-columns: 1.5fr .9fr .9fr .9fr;
      gap: var(--gap-section);
      align-items: start;
      padding-bottom: var(--space-7);
      border-bottom: 1px solid rgba(248,244,236,.12);
      margin-bottom: var(--space-7);
    }
    .footer-col-title {
      font: var(--label);
      letter-spacing: .22em;
      text-transform: uppercase;
      color: rgba(248,244,236,.5);
      margin-bottom: var(--space-4);
    }
    .footer-brand .wordmark { color: var(--jales-ivory); }
    .footer-brand .wordmark-fm { opacity: .65; }
    .footer-tagline {
      font: 600 16px/1.5 var(--font-sans);
      color: #F8F4EC;
      margin-top: var(--space-3);
      max-width: 34ch;
    }
    .footer-social-label {
      font: var(--label);
      letter-spacing: .22em;
      text-transform: uppercase;
      color: rgba(248,244,236,.5);
      margin: var(--space-6) 0 var(--space-3);
    }
    .footer-social {
      display: flex;
      gap: var(--space-3);
      margin-top: var(--space-5);
    }
    .footer-social a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      border: 1px solid rgba(248,244,236,.18);
      border-radius: var(--r-pill);
      color: rgba(248,244,236,.7);
      transition: color var(--dur-base) var(--ease),
                  border-color var(--dur-base) var(--ease),
                  background var(--dur-base) var(--ease);
    }
    .footer-social a:hover {
      color: var(--jales-charcoal);
      background: var(--jales-ivory);
      border-color: var(--jales-ivory);
    }
    .footer-social svg { width: 21px; height: 21px; display: block; }
    .maps-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: var(--space-2);
      font: var(--body-sm);
      color: var(--accent);
      text-decoration: none;
      transition: color var(--dur-base) var(--ease);
    }
    .maps-link svg { width: 16px; height: 16px; flex-shrink: 0; }
    .maps-link:hover { color: var(--jales-amber-text); text-decoration: underline; }
    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: var(--space-5);
      list-style: none;
      justify-content: flex-end;
    }
    .footer-links.col {
      flex-direction: column;
      flex-wrap: nowrap;
      gap: var(--space-3);
      justify-content: flex-start;
    }
    .footer-links a {
      font: 500 11px/1 var(--font-sans);
      letter-spacing: .12em;
      text-transform: uppercase;
      color: rgba(248,244,236,.65);
      text-decoration: none;
      transition: color var(--dur-base) var(--ease);
    }
    .footer-links a:hover { color: var(--jales-ivory); }
    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: var(--space-4);
    }
    .footer-copy {
      font: var(--caption);
      color: rgba(248,244,236,.62);
      letter-spacing: .06em;
    }
    .footer-legal {
      display: flex;
      gap: var(--space-5);
      list-style: none;
    }
    .footer-legal a {
      font: var(--caption);
      color: rgba(248,244,236,.62);
      text-decoration: none;
    }
    .footer-legal a:hover { color: rgba(248,244,236,.75); }

    /* ── CTA trust hint ──────────────────────────────────────────────── */
    .cta-trust {
      margin-top: var(--space-4);
      font: 400 13px/1.4 var(--font-sans);
      color: var(--jales-warm-grey);
      letter-spacing: .04em;
    }

    /* ── Trust strip ─────────────────────────────────────────────────── */
    .trust-strip {
      padding: var(--space-7) 0;
      border-top: 1px solid var(--jales-linen);
      border-bottom: 1px solid var(--jales-linen);
      background: var(--jales-ivory);
    }
    .trust-strip-inner {
      display: flex;
      flex-wrap: wrap;
      gap: var(--gap-wide);
      justify-content: space-between;
      align-items: center;
    }
    .trust-item {
      display: flex;
      align-items: flex-start;
      gap: var(--space-4);
      flex: 1 1 200px;
    }
    .trust-icon {
      width: 32px;
      height: 32px;
      flex-shrink: 0;
      color: var(--jales-forest);
    }
    .trust-item-body {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }
    .trust-item-title {
      font: 600 13px/1.3 var(--font-sans);
      color: var(--jales-charcoal);
    }
    .trust-item-sub {
      font: 400 13px/1.5 var(--font-sans);
      color: var(--jales-warm-grey);
    }

    /* ── Tile divider & warning ─────────────────────────────────────── */
    .tile-divider {
      border: 0;
      height: 1px;
      background: var(--jales-linen);
      margin: var(--space-4) 0;
      width: 100%;
    }
    .tile-option {
      display: flex;
      flex-direction: column;
      gap: var(--space-3);
    }
    .tile-option-label {
      font: 600 10px/1.4 var(--font-sans);
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--jales-warm-grey);
    }
    .tile-option-text {
      font: var(--body-sm);
      color: var(--jales-ink-2);
      line-height: 1.55;
    }
    .tile-warning {
      font: 400 12px/1.5 var(--font-sans);
      color: var(--jales-ink-2);
      background: var(--jales-linen-2);
      border-left: 2px solid var(--jales-amber);
      padding: var(--space-2) var(--space-3);
      border-radius: 0 var(--r-xs) var(--r-xs) 0;
      margin-top: var(--space-2);
    }
    /* ── FAQ ─────────────────────────────────────────────────────────── */
    .faq-list { max-width: 820px; display: flex; flex-direction: column; gap: 0; }
    .faq-item { border-bottom: 1px solid var(--jales-linen); }
    .faq-item:first-child { border-top: 1px solid var(--jales-linen); }
    .faq-qh { margin: 0; }
    .faq-trigger {
      width: 100%;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: var(--space-4);
      background: none;
      border: none;
      cursor: pointer;
      text-align: left;
      padding: var(--space-5) 0;
      color: var(--jales-charcoal);
      font: 600 16px/1.45 var(--font-sans);
    }
    .faq-q-text { flex: 1 1 auto; }
    .faq-chevron {
      flex: 0 0 auto;
      width: 22px;
      height: 22px;
      color: var(--jales-warm-grey);
      margin-top: 2px;
      transition: transform var(--dur-base) var(--ease), color var(--dur-base) var(--ease);
    }
    .faq-trigger[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); color: var(--jales-forest); }
    .faq-trigger:hover { color: var(--jales-forest); }
    .faq-trigger:hover .faq-chevron { color: var(--jales-forest); }
    .faq-aw { padding: 0 0 var(--space-5); }
    .faq-aw[hidden] { display: none; }
    .faq-a { font: var(--body); color: var(--jales-ink-2); line-height: 1.7; margin: 0; max-width: 70ch; }
    .faq-a a { color: var(--jales-forest); }
    .faq-a a:hover { text-decoration: underline; text-decoration-color: var(--jales-amber); }

    .illustration-muenster,
    .illustration-iris {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
    }

    /* ── Bewertungen ────────────────────────────────────────────────── */
    .bewertungen-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--gap-wide);
      margin: 0 0 var(--space-6);
    }
    .bewertung-card {
      background: var(--jales-paper);
      border: 1px solid var(--jales-linen);
      border-radius: var(--r-lg);
      padding: var(--space-7) var(--space-6);
      display: flex;
      flex-direction: column;
      gap: var(--space-4);
      margin: 0;
    }
    .bewertung-stars {
      color: var(--jales-amber-text);
      font-size: 17px;
      line-height: 1;
      letter-spacing: 3px;
    }
    .bewertung-text {
      font: var(--body);
      color: var(--jales-charcoal);
      line-height: 1.7;
      font-style: italic;
      flex: 1;
      margin: 0;
      padding: 0;
      border: 0;
    }
    .bewertung-text::before { content: "\201E"; }
    .bewertung-text::after  { content: "\201C"; }
    .bewertung-author {
      font: 500 11px/1 var(--font-sans);
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--jales-warm-grey);
    }
    .bewertungen-bridge {
      font: 400 13px/1.7 var(--font-sans);
      color: var(--jales-ink-2);
      max-width: 72ch;
      margin: 0 0 var(--space-3);
    }
    .bewertungen-bridge a,
    .bewertungen-cta a {
      color: var(--jales-forest);
      text-decoration: none;
      border-bottom: 1px solid var(--jales-hair);
      transition: border-color var(--dur-base) var(--ease);
    }
    .bewertungen-bridge a:hover,
    .bewertungen-cta a:hover { border-color: var(--jales-forest); }
    .bewertungen-cta {
      font: 400 13px/1 var(--font-sans);
      color: var(--jales-warm-grey);
    }
    /* ── Inhaberin: Porträt neben dem Bewertungs-Brückenabsatz (07.09.2026) ── */
    .inhaberin {
      display: grid;
      grid-template-columns: 168px 1fr;
      gap: var(--space-6);
      align-items: start;
    }
    .inhaberin-figur { margin: 0; }
    .inhaberin-figur img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: var(--r-md);
      border: 1px solid var(--jales-linen);
    }
    .inhaberin-figur figcaption {
      font: 500 11px/1.45 var(--font-sans);
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--jales-warm-grey);
      margin-top: var(--space-3);
    }
    @media (max-width: 640px) {
      .inhaberin { grid-template-columns: 1fr; gap: var(--space-5); }
      .inhaberin-figur { max-width: 190px; }
    }

    .bewertungen-since {
      font: italic 400 13px/1.5 var(--font-sans);
      color: var(--jales-warm-grey);
      margin: var(--space-2) 0 0;
    }

    /* ── Responsive ─────────────────────────────────────────────────── */
    @media (max-width: 1024px) {
      .hero-grid { grid-template-columns: 1fr; gap: var(--space-9); }
      .hero-text h1 { max-width: 640px; }
      .hero-visual { max-width: 480px; grid-template-columns: 1fr 1fr; }
      .contact-grid { grid-template-columns: 1fr; gap: var(--space-7); }
      .footer-inner { grid-template-columns: 1fr; gap: var(--space-6); }
      .footer-links { justify-content: flex-start; }
    }

    /* Umschaltpunkt Burger-Menü: steht seit 12.09.2026 zentral in colors_and_type.css */
    @media (max-width: 768px) {
      .tiles-grid, .paths-grid, .muenster-portal-grid, .gutschein-grid, .bewertungen-grid { grid-template-columns: 1fr; }
      .hero-visual { max-width: 340px; }
      .footer-inner { grid-template-columns: 1fr; gap: var(--space-7); }
      .footer-links { justify-content: flex-start; }
      .footer-links.col a { padding: 15px 0; line-height: 1; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
      .btn { white-space: normal; text-align: center; min-height: 44px; }
      .btn-sm { min-height: 44px; }
    }

    @media (max-width: 480px) {
      /* Hero kompakter: weniger Padding, kleinere lesbare H1 */
      .hero { padding: var(--space-7) 0 var(--space-8); }
      /* Bilder nach oben (2026-07-07): hero-text wird per display:contents aufgelöst,
         alle Hero-Elemente ordnen sich als Flex-Kinder von .hero-grid.
         Elemente ohne order (Eyebrow, H1, Bild-Wrapper) kommen zuerst in Quellreihenfolge:
         Eyebrow -> H1 -> BILDER -> Linie -> 3 Säulen -> Iris-Hinweis -> sekundär -> Subline -> Trust */
      .hero-grid { display: flex; flex-direction: column; gap: 0; }
      .hero-text { display: contents; }
      .hero-grid > div:not(.hero-text) { order: 0; margin: var(--space-2) 0 var(--space-3); }
      .hero-visual { max-width: 100%; gap: 14px; }
      .hero-text h1 { font-size: clamp(25px, 7.5vw, 31px); line-height: 1.16; letter-spacing: -.01em; margin-bottom: var(--space-4); }
      .hero-text .rule-amber { order: 1; }
      .hero-cta-pillars      { order: 2; }
      .hero-iris-note        { order: 3; }
      .hero-secondary        { order: 4; }
      .hero-text .subline    { order: 5; font-size: 15px; line-height: 1.55; margin: var(--space-5) 0 0; }
      .cta-trust             { order: 6; }
      /* CTAs vollbreit + gut tappbar */
      .hero-buttons { flex-direction: column; }
      .hero-buttons .btn { text-align: center; justify-content: center; }
      /* Feinschliff: 3 Haupt-CTAs optisch leichter (enger, dezenter), bleiben gleichwertig */
      .hero-cta-pillars { gap: var(--space-2); }
      .hero-cta-pillars .btn { min-height: 44px; padding-top: 11px; padding-bottom: 11px; letter-spacing: .08em; }
    }

    /* == Anfrage-/Beratungs-Modal ============================================= */
    .anfrage-modal{position:fixed;inset:0;z-index:500;background:rgba(31,26,20,.52);backdrop-filter:blur(4px);-webkit-backdrop-filter:blur(4px);display:flex;align-items:center;justify-content:center;padding:clamp(16px,4vw,48px);opacity:0;pointer-events:none;transition:opacity 220ms cubic-bezier(.2,.6,.2,1)}
    .anfrage-modal.is-open{opacity:1;pointer-events:auto}
    .modal-panel{background:#F8F4EC;border-radius:24px;box-shadow:0 1px 3px rgba(31,26,20,.06),0 18px 48px rgba(31,26,20,.10);width:100%;max-width:580px;max-height:90vh;overflow-y:auto;padding:clamp(28px,4vw,48px);position:relative}
    .modal-close-btn{position:sticky;float:right;top:0;margin:-8px -8px 0 12px;width:36px;height:36px;border:none;background:#F8F4EC;cursor:pointer;color:#5A5246;display:flex;align-items:center;justify-content:center;border-radius:8px;transition:background 220ms;z-index:5}
    .modal-close-btn:hover{background:#E8DFCC}
    .modal-title{font:500 clamp(22px,3vw,30px)/1.1 "Cormorant Garamond",Garamond,serif;color:#1F1A14;margin:0 0 8px}
    .modal-sub{font:400 14px/1.65 "Manrope","Helvetica Neue",Arial,sans-serif;color:#5A5246;margin:0 0 32px}
    .form-row{margin-bottom:24px}
    .form-row label:not(.form-chip){display:block;font:600 11.5px/1.4 "Manrope","Helvetica Neue",Arial,sans-serif;letter-spacing:.12em;text-transform:uppercase;color:#1F1A14;margin-bottom:8px}
    .form-row label .req{color:#8C6420}
    .form-chip em{opacity:1 !important}   /* Preis lesbarer (überschreibt Inline-opacity:.55) */
    /* Audit Welle 2b: Radio-Gruppen als <fieldset>/<legend> */
    fieldset.form-row{border:0;padding:0;min-width:0;margin-top:0;margin-left:0;margin-right:0}
    .form-row legend{display:block;float:none;width:auto;padding:0;font:600 11.5px/1.4 "Manrope","Helvetica Neue",Arial,sans-serif;letter-spacing:.12em;text-transform:uppercase;color:#1F1A14;margin-bottom:8px}
    .form-row legend .req{color:#8C6420}
    .form-input,.form-textarea{width:100%;padding:11px 14px;border:1px solid #E8DFCC;border-radius:12px;background:#fff;font:400 14px/1.5 "Manrope","Helvetica Neue",Arial,sans-serif;color:#1F1A14;-webkit-appearance:none;transition:border-color 220ms}
    .form-input:focus,.form-textarea:focus{outline:none;border-color:#2A3F33}
    .form-input:disabled{background:#F2ECE0;color:#8C8073;cursor:not-allowed}
    .form-textarea{resize:vertical;min-height:80px}
    .form-two{display:grid;grid-template-columns:1fr 1fr;gap:16px}
    .form-chips{display:flex;flex-wrap:wrap;gap:8px}
    .form-chip { display:inline-flex; align-items:center; gap:6px; padding:10px 18px; background:var(--jales-ivory); border:1px solid var(--jales-hair); border-radius:var(--r-pill); cursor:pointer; font:500 14px/1 var(--font-sans); color:var(--jales-charcoal); transition:border-color .2s ease, background .2s ease, color .2s ease; }
    .form-chip input{position:absolute;opacity:0;width:0;height:0}
    .form-chip:hover{border-color:#2A3F33;color:#2A3F33}
    .form-chip.is-sel{background:#2A3F33;color:#F8F4EC;border-color:#2A3F33}
    .form-chip.is-sel:hover{color:#F8F4EC}
    .form-chip.is-sel::before { content:"\2713"; font-weight:700; }
    .form-submit{width:100%;padding:14px;background:#2A3F33;color:#F8F4EC;border:none;border-radius:999px;font:600 12px/1 "Manrope","Helvetica Neue",Arial,sans-serif;letter-spacing:.14em;text-transform:uppercase;cursor:pointer;margin-top:12px;transition:background 220ms}
    .form-submit:hover{background:#1E2D24}
    .form-note{font:400 13px/1.55 "Manrope","Helvetica Neue",Arial,sans-serif;color:#6B6155;margin-top:12px}
    .form-confirm{text-align:center;padding:72px 0}
    .form-confirm-icon{width:52px;height:52px;border-radius:50%;background:#E3E8DF;color:#2A3F33;display:flex;align-items:center;justify-content:center;margin:0 auto 24px}
    .form-confirm h3{font:500 clamp(20px,2.5vw,26px)/1.2 "Cormorant Garamond",Garamond,serif;color:#1F1A14;margin:0 0 12px}
    .form-confirm p{font:400 14.5px/1.7 "Manrope","Helvetica Neue",Arial,sans-serif;color:#5A5246;max-width:34ch;margin:0 auto}
    @media(max-width:480px){.form-two{grid-template-columns:1fr}}
  

/* ── iris-gutschein-boost ── */
  /* ── Iris-Erlebnis-Sektion (Verkaufs-Boost 2026-07-02) ── */
  .iris-erlebnis { background: var(--jales-charcoal); }
  .iris-erlebnis .eyebrow { color: rgba(248,244,236,.6); }
  .iris-erlebnis h2 { color: var(--jales-ivory); }
  .iris-erlebnis .iris-erlebnis-sub { font: var(--body); color: rgba(248,244,236,.72); max-width: 62ch; line-height: 1.65; }
  .iris-erlebnis-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4); margin-top: var(--space-7); }
  .iris-erlebnis-tile { position: relative; display: block; aspect-ratio: 1/1; border-radius: var(--r-md); overflow: hidden; background: rgba(248,244,236,.06); }
  .iris-erlebnis-tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
  .iris-erlebnis-tile:hover img { transform: scale(1.04); }
  .iris-erlebnis-tile:focus-visible { outline: 3px solid var(--jales-ivory); outline-offset: 3px; }
  .iris-erlebnis-label { position: absolute; left: 10px; bottom: 10px; background: rgba(31,26,20,.78); color: rgba(248,244,236,.92); font: 600 10px/1 var(--font-sans); letter-spacing: .12em; text-transform: uppercase; padding: 6px 9px; border-radius: 6px; backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); pointer-events: none; }
  .iris-erlebnis-facts { display: flex; flex-wrap: wrap; gap: var(--space-2) var(--space-5); margin-top: var(--space-5); padding: 0; list-style: none; }
  .iris-erlebnis-facts li { font: 500 13.5px/1.5 var(--font-sans); color: rgba(248,244,236,.85); padding-left: 18px; position: relative; }
  .iris-erlebnis-facts li::before { content: '—'; position: absolute; left: 0; color: var(--jales-amber); font-weight: 700; }
  .iris-erlebnis-ctas { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-6); }
  .iris-erlebnis-gift { font: 400 13.5px/1.6 var(--font-sans); color: rgba(248,244,236,.72); margin-top: var(--space-4); }
  .iris-erlebnis-gift a { color: var(--jales-ivory); text-decoration: none; border-bottom: 1px solid rgba(248,244,236,.4); }
  .iris-erlebnis-gift a:hover { border-color: var(--jales-ivory); }
  @media (max-width: 768px) { .iris-erlebnis-grid { grid-template-columns: repeat(2, 1fr); } }
  /* ── Sticky Mobile-Verkaufsleiste (2026-07-02) ── */
  .home-mobile-cta { display: none; }
  @media (max-width: 768px) {
    .home-mobile-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: none; grid-template-columns: 1.4fr 1fr; gap: 10px; padding: 10px var(--container-pad) calc(10px + env(safe-area-inset-bottom)); background: rgba(248,244,236,.94); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border-top: 1px solid var(--jales-linen); transform: translateY(110%); transition: transform .3s ease; }
    .home-mobile-cta.is-visible { transform: translateY(0); }
    .home-mobile-cta .btn { display: flex; justify-content: center; white-space: nowrap; }
    .home-mobile-cta:not([hidden]) { display: grid; }
    .home-mobile-cta[hidden] { display: none; }
  }
  @media (prefers-reduced-motion: reduce) { .home-mobile-cta, .iris-erlebnis-tile img { transition: none; } .iris-erlebnis-tile:hover img { transform: none; } }

/* ── a11y-enhancements ── */
  :focus-visible { outline: 3px solid #A37F42; outline-offset: 2px; border-radius: 3px; }
  .skip-link { position: absolute; left: 8px; top: -60px; z-index: 2000; background: #2A3F33; color: #F8F4EC; padding: 12px 20px; border-radius: 0 0 10px 10px; text-decoration: none; font: 700 14px/1 system-ui, sans-serif; transition: top .18s ease; }
  .skip-link:focus { top: 0; }

/* ═══ Wegweiser „Drei Wege zu Ihrem Bild" (seit 03.09.2026) ═══ */
.wegweiser{padding:clamp(40px,6vw,72px) 0;background:var(--jales-ivory,#F8F4EC);}
.wegweiser .ww-inner{max-width:1120px;margin:0 auto;padding:0 clamp(16px,4vw,32px);}
.wegweiser .ww-eyebrow{font:600 12px/1.4 var(--font-sans,system-ui,sans-serif);letter-spacing:.14em;text-transform:uppercase;color:var(--jales-amber-text);margin:0 0 10px;}
.wegweiser h2{font:500 clamp(1.5rem,3vw,2.1rem)/1.15 var(--font-serif,Georgia,serif);color:var(--jales-charcoal,#1F1A14);margin:0 0 8px;text-wrap:balance;}
.wegweiser .ww-lead{font:400 1rem/1.6 var(--font-sans,system-ui,sans-serif);color:var(--jales-charcoal,#1F1A14);opacity:.82;max-width:62ch;margin:0 0 28px;}
.wegweiser .ww-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px;}
@media (max-width:820px){.wegweiser .ww-grid{grid-template-columns:1fr;}}
.wegweiser .ww-card{display:flex;flex-direction:column;gap:10px;background:#fff;border:1px solid rgba(31,26,20,.10);border-radius:14px;padding:22px 22px 24px;}
.wegweiser .ww-card.is-primary{border-color:var(--jales-amber,#A37F42);box-shadow:0 10px 30px rgba(31,26,20,.08);}
.wegweiser .ww-step{font:600 12px/1.4 var(--font-sans,system-ui,sans-serif);letter-spacing:.12em;text-transform:uppercase;color:var(--jales-amber-text);}
.wegweiser h3{font:500 1.25rem/1.25 var(--font-serif,Georgia,serif);color:var(--jales-charcoal,#1F1A14);margin:0;}
.wegweiser .ww-card p{font:400 .95rem/1.55 var(--font-sans,system-ui,sans-serif);color:var(--jales-charcoal,#1F1A14);opacity:.85;margin:0;flex:1;}
.wegweiser .ww-meta{font:500 .85rem/1.4 var(--font-sans,system-ui,sans-serif);color:var(--jales-charcoal,#1F1A14);opacity:.7;}
.wegweiser .ww-btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;min-height:44px;padding:10px 18px;border-radius:999px;font:600 .95rem/1.2 var(--font-sans,system-ui,sans-serif);text-decoration:none;cursor:pointer;border:1.5px solid var(--jales-forest,#2A3F33);color:var(--jales-forest,#2A3F33);background:transparent;align-self:flex-start;transition:background .2s,color .2s;}
.wegweiser .ww-btn:hover{background:var(--jales-forest,#2A3F33);color:#fff;}
.wegweiser .ww-btn.ww-btn-primary{background:var(--jales-forest,#2A3F33);color:#fff;}
.wegweiser .ww-btn.ww-btn-primary:hover{background:var(--jales-charcoal,#1F1A14);border-color:var(--jales-charcoal,#1F1A14);}
.wegweiser .ww-btn:focus-visible{outline:3px solid var(--jales-amber,#A37F42);outline-offset:2px;}
