
  /* ============ HOME - section heads ============ */
  .home-section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 32px;
    margin-bottom: 56px;
    flex-wrap: wrap;
  }
  .home-section-h {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(34px, 3.4vw, 50px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.01em;
    margin-top: 14px;
  }
  .home-section-h em { color: var(--gold); font-style: italic; }
  .home-section-link, .home-link {
    font-family: "Geist Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
    padding-bottom: 4px;
    border-bottom: 1px solid currentColor;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: color .2s, gap .25s ease;
  }
  .home-section-link:hover, .home-link:hover { color: var(--gold); gap: 18px; }

  /* ============ HERO - Split Editorial ============ */
  .home-hero {
    padding: 100px 0 110px;
    background: var(--white);
    border-bottom: 1px solid rgba(26,23,20,0.08);
  }
  .home-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 72px;
    align-items: center;
  }
  .home-hero-text { max-width: 580px; }
  .home-h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(36px, 5.2vw, 60px);
    line-height: 1.02;
    font-weight: 500;
    letter-spacing: -0.015em;
    margin-top: 22px;
  }
  .home-h1 em { font-style: italic; color: var(--gold); }
  .home-hero-lede {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(19px, 1.4vw, 22px);
    line-height: 1.45;
    color: rgba(26,23,20,0.78);
    margin-top: 32px;
    max-width: 520px;
  }
  .home-hero-actions {
    margin-top: 40px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
  }
  /* The home hero's second CTA shares the outlined-button rule with the ankauf
     heroes; see .btn-ghost in base.css. */
  .home-hero-foot {
    margin-top: 52px;
    padding-top: 28px;
    border-top: 1px solid rgba(26,23,20,0.10);
    font-family: "Geist Mono", monospace;
    font-size: 10.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(26,23,20,0.8);
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    align-items: center;
  }
  .home-hero-foot .dot { color: var(--gold); opacity: 0.6; }

  /* Hero image */
  .home-hero-image {
    position: relative;
    aspect-ratio: 4 / 5;
    background: var(--cream);
    overflow: hidden;
    margin: 0;
  }
  .home-hero-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 25%;
    display: block;
  }
  .home-hero-image figcaption {
    position: absolute;
    bottom: 20px; left: 20px;
    font-family: "Geist Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--white);
    background: rgba(26,23,20,0.55);
    padding: 7px 12px;
    backdrop-filter: blur(8px);
  }

  @media (max-width: 900px) {
    .home-hero { padding: 0 0 56px; }
    .home-hero-grid { grid-template-columns: 1fr; gap: 28px; }
    /* On mobile: image first (visual anchor), text below - Susanne is the
       trust signal, she should set the tone before the headline kicks in. */
    .home-hero-image { order: -1; max-width: 460px; aspect-ratio: 4 / 5; margin: 0 auto; }
    .home-hero-text { text-align: left; }
    .hero-eyebrow-extra { display: none; }
    .home-hero-foot { font-size: 9.5px; gap: 8px 12px; }
  }
  @media (max-width: 480px) {
    .home-h1 { font-size: 34px; line-height: 1.05; }
    .home-hero-lede { font-size: 17px; margin-top: 22px; }
    .home-hero-image { aspect-ratio: 1 / 1; max-width: none; margin: 0 -24px; }
  }

  /* ============ FEATURE EDITORIAL ============ */
  /* Cream, not paper: the collections section directly above is paper and
     services below is white, so the team block takes the third tone to keep
     adjacent sections visually distinct. */
  .home-feature { padding: 140px 0; background: var(--cream); }
  .home-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  .home-feature-portrait {
    position: relative;
    aspect-ratio: 4/5;
    background: var(--cream);
    overflow: hidden;
  }
  .home-feature-portrait img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
  }
  .home-feature-portrait figcaption {
    position: absolute;
    bottom: 18px; left: 18px;
    font-family: "Geist Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--white);
    background: rgba(26,23,20,0.55);
    padding: 7px 12px;
    backdrop-filter: blur(8px);
  }
  .home-feature-h {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(36px, 3.4vw, 52px);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -0.01em;
    margin-top: 14px;
  }
  .home-feature-h em { color: var(--gold); font-style: italic; }
  .home-feature-text p {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(26,23,20,0.78);
    max-width: 540px;
  }
  .home-feature-quote {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 22px !important;
    line-height: 1.45 !important;
    color: var(--ink) !important;
    margin-top: 28px !important;
    padding-left: 24px;
    border-left: 1px solid var(--gold);
  }
  .home-feature-attrib {
    margin-top: 12px !important;
    font-family: "Geist Mono", monospace;
    font-size: 10px !important;
    letter-spacing: 0.22em !important;
    text-transform: uppercase;
    color: rgba(26,23,20,0.8) !important;
    padding-left: 24px;
  }
  .home-feature-text .home-link { margin-top: 32px; }
  @media (max-width: 900px) {
    .home-feature { padding: 80px 0; }
    .home-feature-grid { grid-template-columns: 1fr; gap: 40px; }
    .home-feature-portrait { max-width: 440px; }
  }

  /* ============ NEU IM HAUS - horizontal slider ============ */
  .home-new {
    padding: 120px 0;
    background: var(--cream);
    overflow: hidden;
  }
  .home-new .home-section-head { padding-right: 48px; }

  /* Override the grid layout for the home "Neu im Haus" section into a
     horizontal scroll-snap track that bleeds to the right viewport edge. */
  .home-new .home-new-grid {
    display: flex !important;
    grid-template-columns: none;
    gap: 18px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 0;
    padding: 4px 0 22px;
    margin-right: calc(-1 * max(48px, (100vw - 1360px) / 2));
    padding-right: max(48px, (100vw - 1360px) / 2);
    scrollbar-width: thin;
    scrollbar-color: rgba(26,23,20,0.25) transparent;
  }
  .home-new .home-new-grid::-webkit-scrollbar { height: 6px; }
  .home-new .home-new-grid::-webkit-scrollbar-track { background: transparent; }
  .home-new .home-new-grid::-webkit-scrollbar-thumb {
    background: rgba(26,23,20,0.18);
    border-radius: 3px;
  }
  .home-new .home-new-grid::-webkit-scrollbar-thumb:hover { background: rgba(26,23,20,0.32); }

  .home-new .home-new-grid > .new-card {
    flex: 0 0 300px;
    scroll-snap-align: start;
  }
  @media (max-width: 760px) {
    .home-new .home-new-grid > .new-card { flex: 0 0 78vw; max-width: 320px; }
    .home-new .home-new-grid {
      gap: 14px;
      margin-right: -24px;
      padding-right: 24px;
    }
  }

  /* default grid (used elsewhere) */
  .new-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .new-card {
    background: var(--white);
    border: 1px solid rgba(26,23,20,0.10);
    text-decoration: none;
    color: var(--ink);
    display: flex;
    flex-direction: column;
    transition: transform .35s ease, box-shadow .35s ease, border-color .25s ease;
  }
  .new-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 48px -28px rgba(26,23,20,0.22);
    border-color: var(--gold);
  }
  .new-media {
    position: relative;
    aspect-ratio: 1 / 1;
    background: var(--cream);
    overflow: hidden;
    border-bottom: 1px solid rgba(26,23,20,0.08);
  }
  .new-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  .new-card:hover .new-media img { transform: scale(1.04); }
  .new-media-tag {
    position: absolute;
    top: 14px; left: 14px;
    z-index: 2;
    font-family: "Geist Mono", monospace;
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink);
    background: rgba(255,255,255,0.92);
    padding: 5px 9px;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(26,23,20,0.08);
  }
  .new-body { padding: 22px 22px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
  .new-body h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 26px;
    font-style: italic;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.005em;
  }
  .new-spec {
    font-size: 13px;
    line-height: 1.45;
    color: rgba(26,23,20,0.68);
  }
  .new-foot {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid rgba(26,23,20,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }
  .new-price {
    font-family: "Geist", ui-sans-serif, system-ui, sans-serif;
    font-style: normal;
    font-size: 16px;
    color: var(--ink);
  }
  .new-cta {
    font-family: "Geist Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap .25s ease, color .2s;
  }
  .new-card:hover .new-cta { gap: 14px; color: var(--gold); }
  @media (max-width: 1000px) {
    .new-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 540px) {
    .home-new { padding: 70px 0; }
    .new-grid { grid-template-columns: 1fr; gap: 16px; }
  }

  /* ============ COLLECTIONS BENTO - 4-col grid ============ */
  .home-collections { padding: 140px 0; background: var(--paper); }
  .bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 280px keeps the longest tile copy (Anfertigung nach Maß, 5 lines) clear of
       its CTA - at 240px the tile clipped it, since tiles are overflow:hidden. */
    grid-auto-rows: 280px;
    gap: 12px;
  }
  .bento-tile {
    grid-column: span 2;
    grid-row: span 1;
    background: var(--white);
    border: 1px solid rgba(26,23,20,0.08);
    padding: 28px 30px;
    text-decoration: none;
    color: var(--ink);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease, background .25s ease;
  }
  .bento-tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 48px -28px rgba(26,23,20,0.22);
  }
  /* XL = 2 cols × 2 rows */
  .bento-tile--xl {
    grid-column: span 2;
    grid-row: span 2;
    padding: 36px 38px 38px;
  }
  /* Wide = full row */
  .bento-tile--wide {
    grid-column: span 4;
  }
  .bento-tile--dark {
    background: var(--ink);
    color: var(--cream);
    border-color: var(--ink);
  }
  .bento-tile--dark:hover { background: #221c16; }

  .bento-meta {
    font-family: "Geist Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
  }
  .bento-tile--dark .bento-meta { color: var(--gold-light); }

  /* body floats to the bottom so meta sits flush at the top */
  .bento-body {
    display: flex;
    flex-direction: column;
    margin-top: auto;
    padding-top: 20px;
  }
  .bento-tile h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(26px, 2.2vw, 34px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.005em;
    margin-bottom: 12px;
  }
  .bento-tile--xl h3 { font-size: clamp(48px, 4.5vw, 64px); line-height: 0.96; }
  .bento-tile h3 em { color: var(--gold); font-style: italic; }
  .bento-tile--dark h3 em { color: var(--gold-light); }
  .bento-tile p {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(26,23,20,0.7);
    margin-bottom: 18px;
    max-width: 36ch;
  }
  .bento-tile--dark p { color: rgba(244,243,239,0.72); }
  .bento-tile--xl p { font-size: 15.5px; max-width: 38ch; margin-bottom: 24px; }
  .bento-tile--wide p { max-width: 56ch; }
  .bento-cta {
    font-family: "Geist Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    transition: gap .25s ease;
  }
  .bento-tile--dark .bento-cta { color: var(--cream); }
  .bento-tile:hover .bento-cta { gap: 18px; }
  @media (max-width: 900px) {
    .home-collections { padding: 80px 0; }
    .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 280px; }
    .bento-tile, .bento-tile--xl, .bento-tile--wide { grid-column: span 2; grid-row: span 1; }
    .bento-tile--xl { grid-row: span 2; }
  }
  @media (max-width: 540px) {
    .bento {
      grid-template-columns: 1fr;
      grid-auto-rows: auto;
    }
    .bento-tile,
    .bento-tile--xl,
    .bento-tile--wide {
      grid-column: span 1;
      grid-row: auto;
      min-height: 220px;
    }
    .bento-tile--xl {
      min-height: 340px;
      padding: 32px 30px 30px;
    }
    .bento-tile--xl h3 { font-size: 44px; }
  }

  /* ============ SERVICES STRIP ============ */
  .home-services { padding: 120px 0; background: var(--white); }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid rgba(26,23,20,0.12);
    border-left: 1px solid rgba(26,23,20,0.12);
  }
  .service-card {
    padding: 44px 36px 38px;
    border-right: 1px solid rgba(26,23,20,0.12);
    border-bottom: 1px solid rgba(26,23,20,0.12);
    background: var(--white);
    text-decoration: none;
    color: var(--ink);
    display: flex;
    flex-direction: column;
    min-height: 280px;
    transition: background .3s, padding-left .3s;
  }
  .service-card:hover { background: var(--cream); padding-left: 42px; }
  .service-num {
    font-family: "Geist Mono", monospace;
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 0.22em;
  }
  .service-card h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 34px;
    font-weight: 500;
    line-height: 1;
    margin-top: 36px;
    letter-spacing: -0.005em;
  }
  .service-card p {
    margin-top: 16px;
    margin-bottom: 28px;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(26,23,20,0.72);
  }
  .service-link {
    margin-top: auto;
    font-family: "Geist Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: gap .25s ease;
  }
  .service-card:hover .service-link { gap: 18px; color: var(--gold); }
  @media (max-width: 900px) {
    .home-services { padding: 70px 0; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card { min-height: 220px; padding: 32px 26px; }
    .service-card h3 { font-size: 28px; margin-top: 24px; }
  }

  /* ============ LOCATIONS (compact) ============ */
  .home-locations {
    padding: 110px 0 120px;
    background: var(--paper);
    border-top: 1px solid rgba(26,23,20,0.08);
  }
  .locs-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .locs-card {
    background: var(--white);
    border: 1px solid rgba(26,23,20,0.12);
    border-radius: 2px;
    padding: 48px 48px 44px;
    display: flex;
    flex-direction: column;
  }
  .locs-label {
    font-family: "Geist Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
  }
  .locs-name {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(30px, 2.6vw, 40px);
    font-weight: 500;
    line-height: 1;
    color: var(--ink);
    margin: 0 0 14px;
  }
  .locs-addr {
    font-family: "Geist", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(26,23,20,0.6);
    margin: 0 0 28px;
  }
  .locs-facts {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 32px;
  }
  .locs-fact {
    display: flex;
    align-items: flex-start;
    gap: 14px;
  }
  .locs-fact-ic {
    flex-shrink: 0;
    display: inline-flex;
    margin-top: 1px;
  }
  .locs-fact-ic svg { width: 20px; height: 20px; display: block; }
  .locs-fact:first-child .locs-fact-ic { color: var(--gold); }
  .locs-fact:last-child .locs-fact-ic { color: rgba(26,23,20,0.4); }
  .locs-phone {
    font-family: "Geist", sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
    transition: color .2s;
  }
  .locs-phone:hover { color: var(--gold); }
  .locs-hours {
    font-family: "Geist", sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(26,23,20,0.6);
  }
  .locs-route {
    align-self: flex-start;
    margin-top: auto;
    background: var(--ink);
    color: var(--white);
    padding: 15px 26px;
    border-radius: 2px;
    font-family: "Geist", sans-serif;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: background .25s ease, color .25s ease, gap .25s ease;
  }
  .locs-route .arr { color: var(--gold); transition: transform .25s ease; }
  .locs-route:hover { background: var(--gold); color: var(--ink); gap: 16px; }
  .locs-route:hover .arr { color: var(--ink); transform: translateX(3px); }
  @media (max-width: 760px) {
    .home-locations { padding: 60px 0 70px; }
    .locs-row { grid-template-columns: 1fr; gap: 18px; }
    .locs-card { padding: 32px 26px 30px; }
  }

  /* ============ FOOTER NEWSLETTER ============ */
  .foot-news {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
    padding-bottom: 56px;
    margin-bottom: 56px;
    border-bottom: 1px solid rgba(26,23,20,0.08);
  }
  .foot-news-text { max-width: 540px; }
  .foot-news-text h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(28px, 2.4vw, 38px);
    line-height: 1.15;
    font-weight: 500;
    margin-top: 12px;
    letter-spacing: -0.005em;
  }
  .foot-news-text h3 em { color: var(--gold); font-style: italic; }
  .foot-news-form {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
  }
  .sg2-nl-row {
    display: flex;
    gap: 10px;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
  }
  .sg2-nl-form input[type="email"] {
    flex: 1;
    min-width: 220px;
    font-family: "Geist", sans-serif;
    font-size: 14px;
    padding: 14px 18px;
    border: 1px solid rgba(26,23,20,0.2);
    background: var(--white);
    color: var(--ink);
    transition: border-color .2s;
    border-radius: 2px;
  }
  .sg2-nl-form input[type="email"]:focus { outline: none; border-color: var(--gold); }
  .sg2-nl-form input[type="email"]::placeholder { color: rgba(26,23,20,0.42); }
  .sg2-nl-form .btn-primary { padding: 14px 22px; font-size: 12px; }
  .visually-hidden {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
  }
  @media (max-width: 760px) {
    .foot-news { gap: 22px; padding-bottom: 36px; margin-bottom: 36px; }
  }
