    :root {
      /* Brand-DNA aus dem Studio — identisch */
      --gold:        #c69e50;
      --gold-light:  #e8c87a;
      --gold-dim:    rgba(198,158,80,.13);
      --gold-border: rgba(198,158,80,.25);

      /* Hair-spezifische Farbwelt — warm, hell, luftig */
      --bg:          #f3f4f6;
      --bg2:         #eaecef;
      --surface:     #f9fafb;
      --card:        #ffffff;
      --border:      rgba(25,32,45,.1);
      --text:        #191b1e;
      --muted:       #666b73;
      --muted2:      #4e535b;
      --accent-warm: #262a30;

      --noise-opacity: .018;

      /* Dunkle Flächen -> Deep Green (wie Startseite) */
      --deep-green:  #1b1e23;
      --deep-green-2:#21242a;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* ── NOISE ── */
    body::before {
      content: '';
      position: fixed; inset: 0;
      pointer-events: none; z-index: 900;
      opacity: var(--noise-opacity);
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      background-size: 128px 128px;
    }

    a, button { text-decoration: none; color: inherit; cursor: pointer; }
    img { display: block; max-width: 100%; }

    .container { width: min(1280px, calc(100% - 48px)); margin: 0 auto; }

    /* ── HEADER ── */
    .site-header {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 500;
      padding: 0 40px;
      height: 80px;
      display: flex; align-items: center; justify-content: space-between;
      transition: background .4s, border-color .4s, box-shadow .4s;
      border-bottom: 1px solid transparent;
    }
    .site-header.scrolled {
      background: rgba(247,244,239,.94);
      border-color: var(--border);
      backdrop-filter: blur(20px);
      box-shadow: 0 1px 0 rgba(198,158,80,.12);
    }

    /* Zurück-Link links */
    .header-back {
      display: flex; align-items: center; gap: 10px;
      font-size: .72rem; letter-spacing: .15em; text-transform: uppercase;
      color: var(--muted); transition: color .2s;
    }
    .header-back:hover { color: var(--gold); }
    .header-back::before {
      content: '←';
      font-size: .9rem;
      transition: transform .2s;
    }
    .header-back:hover::before { transform: translateX(-4px); }

    .header-left {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }
    .header-dot {
      color: var(--muted);
      opacity: .9;
      font-size: .9rem;
      line-height: 1;
    }

    /* Logo Mitte */
    .nav-logo {
      position: absolute; left: 50%; transform: translateX(-50%);
      display: flex; align-items: center; justify-content: center;
      opacity: .82;
    }
    .nav-logo img {
      width: auto;
      height: 48px;
      max-width: 220px;
    }

    .nav-name {
      font-size: .72rem;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--text);
      white-space: nowrap;
    }

    /* Bereich-Badge rechts */
    .header-badge {
      display: flex; align-items: center; gap: 8px;
      font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
      color: var(--muted2);
      border: 1px solid var(--gold-border);
      padding: 7px 16px; border-radius: 2px;
    }
    .header-badge-dot {
      width: 5px; height: 5px;
      background: var(--gold); border-radius: 50%;
    }

    /* ── HERO — horizontales Split-Layout ── */
    .hero {
      min-height: 100svh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      position: relative;
      overflow: hidden;
    }

    /* Linke Hälfte: Text */
    .hero-left {
      display: flex; flex-direction: column;
      justify-content: center;
      padding: 120px 80px 70px 60px;
      background: var(--bg);
      position: relative; z-index: 2;
    }

    /* Vertikaler goldener Trennstrich */
    .hero-left::after {
      content: '';
      position: absolute; right: -1px; top: 15%; bottom: 15%;
      width: 1px;
      background: linear-gradient(to bottom, transparent, var(--gold), transparent);
      opacity: .5;
      z-index: 10;
    }

    .hero-tag {
      display: flex; align-items: center; gap: 14px;
      font-size: .7rem; letter-spacing: .22em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 32px;
    }
    .hero-tag::before {
      content: ''; width: 36px; height: 1px;
      background: var(--gold); flex-shrink: 0;
    }

    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3.8rem, 7vw, 7.5rem);
      font-weight: 300;
      line-height: .92;
      letter-spacing: -.025em;
      color: var(--text);
    }
    .hero-title em {
      font-style: italic;
      color: var(--gold);
      display: block;
    }

    .hero-sub {
      margin-top: 32px;
      font-size: 1rem; font-weight: 300;
      color: var(--muted); max-width: 44ch; line-height: 1.8;
    }

    .hero-actions {
      margin-top: 44px;
      display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
    }

    .btn-primary {
      display: inline-flex; align-items: center; gap: 12px;
      padding: 15px 34px;
      background: var(--deep-green); color: var(--surface);
      font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
      font-weight: 500; border-radius: 2px;
      transition: background .25s, transform .2s;
    }
    .btn-primary:hover { background: var(--deep-green-2); transform: translateY(-2px); }

    .btn-outline {
      display: inline-flex; align-items: center; gap: 12px;
      padding: 14px 28px;
      border: 1px solid var(--gold-border);
      color: var(--gold);
      font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
      border-radius: 2px;
      transition: border-color .25s, background .25s;
    }
    .btn-outline:hover { border-color: var(--gold); background: var(--gold-dim); }

    /* Rechte Hälfte: Bild */
    .hero-right {
      position: relative; overflow: hidden;
    }
    .hero-right img {
      width: 100%; height: 100%;
      object-fit: cover; object-position: center 20%;
      filter: brightness(.88) saturate(.9);
      transition: transform 12s ease;
    }
    .hero-right:hover img { transform: scale(1.03); }

    /* Overlay unten auf Bild */
    .hero-right::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(to bottom, transparent 60%, rgba(247,244,239,.3) 100%);
    }

    /* Floating-Info-Box unten links auf Bild */
    .hero-float {
      position: absolute; bottom: 48px; left: 36px;
      z-index: 5;
      background: rgba(247,244,239,.92);
      border: 1px solid var(--gold-border);
      backdrop-filter: blur(12px);
      padding: 20px 28px;
      border-radius: 2px;
      display: flex; gap: 32px;
    }
    .hero-float-item { text-align: center; }
    .hero-float-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.8rem; font-weight: 300; color: var(--gold);
      display: block; line-height: 1;
    }
    .hero-float-label {
      font-size: .65rem; letter-spacing: .16em; text-transform: uppercase;
      color: var(--muted); margin-top: 4px; display: block;
    }

    /* Scroll indicator */
    .scroll-hint {
      position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      font-size: .62rem; letter-spacing: .2em; text-transform: uppercase;
      color: var(--muted); z-index: 3;
    }
    .scroll-line {
      width: 1px; height: 48px;
      background: linear-gradient(to bottom, var(--gold), transparent);
      animation: scrollPulse 2s ease infinite;
    }
    @keyframes scrollPulse {
      0%,100% { opacity: .3; } 50% { opacity: 1; }
    }

    /* ── MARQUEE — identisch zur Landingpage ── */
    .marquee-wrap {
      overflow: hidden;
      border-top: 1px solid var(--gold-border);
      border-bottom: 1px solid var(--gold-border);
      padding: 13px 0;
      background: var(--bg2);
    }
    .marquee-track {
      display: flex; animation: marquee 28s linear infinite;
      width: max-content;
    }
    .marquee-item {
      display: inline-flex; align-items: center; gap: 20px;
      padding: 0 36px;
      font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
      color: var(--muted); white-space: nowrap;
    }
    .marquee-dot {
      width: 4px; height: 4px;
      background: var(--gold); border-radius: 50%; flex-shrink: 0;
    }
    @keyframes marquee {
      from { transform: translateX(0); } to { transform: translateX(-50%); }
    }

    /* ── SECTION SHARED ── */
    .section { padding: 120px 0; }
    .section-sm { padding: 80px 0; }

    .label-row {
      display: flex; align-items: center; gap: 14px;
      font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 18px;
    }
    .label-row::before {
      content: ''; width: 30px; height: 1px;
      background: var(--gold); flex-shrink: 0;
    }

    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.4rem, 3.5vw, 4rem);
      font-weight: 300; line-height: 1.05; color: var(--text);
    }
    .section-title em { font-style: italic; color: var(--gold); }

    /* ── PHILOSOPHY — großes horizontales Layout ── */
    .philosophy { background: var(--surface); }
    .philosophy-inner {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 100px; align-items: center;
    }
    .philosophy-text .section-title { max-width: 12ch; }
    .philosophy-body {
      color: var(--muted); font-size: 1.05rem;
      font-weight: 300; line-height: 1.9;
      margin-top: 24px;
    }
    .philosophy-visual {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3px; background: var(--border);
    }
    .phil-img {
      overflow: hidden; aspect-ratio: 3/4;
    }
    .phil-img:first-child { aspect-ratio: 3/4; margin-top: -40px; }
    .phil-img img {
      width: 100%; height: 100%;
      object-fit: cover;
      filter: brightness(.88) saturate(.85);
      transition: transform .7s ease, filter .4s;
    }
    .phil-img:hover img { transform: scale(1.05); filter: brightness(.95) saturate(1); }

    /* ── LEISTUNGEN — große Tabelle ── */
    .leistungen {}
    .leistungen-header {
      display: flex; justify-content: space-between; align-items: flex-end;
      gap: 40px; margin-bottom: 56px; padding-bottom: 28px;
      border-bottom: 1px solid var(--border);
    }
    .leistungen-desc {
      max-width: 42ch; color: var(--muted);
      font-size: .9rem; font-weight: 300; line-height: 1.75;
    }

    .leistungen-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2px; background: var(--border);
    }

    .leistung-block {
      background: var(--card);
      padding: 44px 48px 48px;
      display: flex; flex-direction: column;
      transition: background .3s;
      position: relative; overflow: hidden;
    }
    .leistung-block::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 2px;
      background: var(--gold);
      transform: scaleX(0); transform-origin: left;
      transition: transform .4s ease;
    }
    .leistung-block:hover { background: var(--surface); }
    .leistung-block:hover::before { transform: scaleX(1); }

    .leistung-icon {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.2rem; color: var(--gold); opacity: .35;
      margin-bottom: 16px; line-height: 1;
    }
    .leistung-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.8rem; font-weight: 300; color: var(--text);
      line-height: 1.1; margin-bottom: 12px;
    }
    .leistung-desc {
      color: var(--muted); font-size: .88rem;
      font-weight: 300; line-height: 1.7; flex: 1;
    }
    .leistung-meta {
      margin-top: 28px; padding-top: 20px;
      border-top: 1px solid var(--border);
      display: flex; justify-content: space-between;
      align-items: flex-end;
    }
    .leistung-preis {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem; color: var(--gold); font-weight: 300;
    }
    .leistung-preis-note {
      font-size: .72rem; letter-spacing: .08em;
      color: var(--muted); display: block; margin-top: 2px;
    }
    .leistung-dauer {
      font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
      color: var(--muted);
    }

    /* ── PROZESS ── */
    .prozess { background: var(--deep-green); }
    .prozess .section-title { color: var(--surface); }
    .prozess .section-title em { color: var(--gold-light); }
    .prozess .label-row { color: var(--gold); }
    .prozess .label-row::before { background: var(--gold); }

    .prozess-header {
      display: flex; justify-content: space-between; align-items: flex-end;
      gap: 60px; margin-bottom: 64px; padding-bottom: 28px;
      border-bottom: 1px solid rgba(255,255,255,.1);
    }
    .prozess-intro {
      color: rgba(234,236,239,.55); font-size: .9rem;
      font-weight: 300; line-height: 1.8; max-width: 40ch;
    }

    .prozess-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2px; background: rgba(255,255,255,.06);
    }
    .prozess-step {
      background: var(--deep-green);
      padding: 44px 36px 48px;
      transition: background .3s;
    }
    .prozess-step:hover { background: var(--deep-green-2); }
    .step-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 4rem; font-weight: 300; color: var(--gold);
      opacity: .3; line-height: 1; margin-bottom: 20px;
    }
    .step-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.55rem; font-weight: 300;
      color: rgba(234,236,239,.9); margin-bottom: 12px;
    }
    .step-desc {
      font-size: .85rem; font-weight: 300;
      color: rgba(234,236,239,.45); line-height: 1.75;
    }

    /* ── LOOKS — vertikales Bild-Story-Layout ── */
    .looks {}
    .looks-header {
      display: flex; justify-content: space-between; align-items: flex-end;
      gap: 40px; margin-bottom: 56px; padding-bottom: 28px;
      border-bottom: 1px solid var(--border);
    }
    .looks-desc {
      max-width: 42ch; color: var(--muted);
      font-size: .9rem; font-weight: 300; line-height: 1.75;
    }

    .looks-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 3px;
    }
    .look-item { position: relative; overflow: hidden; }
    .look-img {
      aspect-ratio: 3/4; overflow: hidden;
    }
    .look-img img {
      width: 100%; height: 100%;
      object-fit: cover;
      filter: brightness(.78) saturate(.8);
      transition: transform .7s ease, filter .5s;
    }
    .look-item:hover .look-img img {
      transform: scale(1.05);
      filter: brightness(.9) saturate(1.05);
    }
    .look-info {
      padding: 24px 0 8px;
    }
    .look-cat {
      font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 6px;
    }
    .look-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem; font-weight: 300; color: var(--text);
    }
    .look-sub {
      font-size: .82rem; color: var(--muted);
      font-weight: 300; margin-top: 4px;
    }

    /* ── EXPERTISE ── */
    .expertise { background: var(--bg2); }
    .expertise-inner {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 80px; align-items: start;
    }
    .expertise-list {
      display: flex; flex-direction: column; gap: 0;
    }
    .expertise-item {
      display: flex; align-items: baseline; gap: 28px;
      padding: 28px 0;
      border-bottom: 1px solid var(--border);
      transition: background .2s;
      cursor: default;
    }
    .expertise-item:first-child { border-top: 1px solid var(--border); }
    .expertise-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: .85rem; color: var(--gold);
      min-width: 32px; letter-spacing: .08em;
    }
    .expertise-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.65rem; font-weight: 300; color: var(--text);
      flex: 1;
    }
    .expertise-tag {
      font-size: .65rem; letter-spacing: .15em; text-transform: uppercase;
      color: var(--muted); padding: 4px 12px;
      border: 1px solid var(--border); border-radius: 1px;
    }

    .expertise-aside {}
    .expertise-aside .label-row { margin-bottom: 28px; }
    .expertise-aside-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem; font-weight: 300; color: var(--text);
      line-height: 1.2; margin-bottom: 20px;
    }
    .expertise-aside-body {
      color: var(--muted); font-size: .9rem;
      font-weight: 300; line-height: 1.85;
    }
    .expertise-img {
      margin-top: 36px; overflow: hidden;
      aspect-ratio: 4/5;
    }
    .expertise-img img {
      width: 100%; height: 100%;
      object-fit: cover;
      filter: brightness(.82) saturate(.85);
      transition: transform .6s ease;
    }
    .expertise-img:hover img { transform: scale(1.04); }

    /* ── BOOKING CTA ── */
    .booking {
      position: relative; overflow: hidden;
    }
    .booking-box {
      position: relative;
      background: var(--deep-green);
      padding: 100px 80px;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center;
      overflow: hidden;
    }
    /* Großes dekoratives G */
    .booking-box::before {
      content: none; /* Deko-Buchstabe entfernt */
      font-family: 'Cormorant Garamond', serif;
      font-size: 40vw; font-weight: 300;
      color: rgba(198,158,80,.04);
      position: absolute;
      right: -5vw; top: 50%;
      transform: translateY(-50%);
      line-height: 1;
      pointer-events: none;
      user-select: none;
    }
    
    /* Lesbarkeit: Buchungs-Aktionen im dunklen Kasten */
    .booking-box .booking-action {
      color: #eaecef;
      border-color: rgba(255,255,255,.16);
    }
    .booking-box .booking-action--phone:hover { border-color: var(--gold); }
    .booking-box .booking-note { color: rgba(234,236,239,.55); }
    .booking-tag { color: var(--gold); }
    .booking-tag::before { background: var(--gold); }
    .booking-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.5rem, 4vw, 4.2rem);
      font-weight: 300; color: var(--surface);
      line-height: 1.05;
    }
    .booking-title em { font-style: italic; color: var(--gold-light); }
    .booking-sub {
      margin-top: 16px; color: rgba(234,236,239,.5);
      font-size: .9rem; font-weight: 300; line-height: 1.75;
    }
    .booking-right { position: relative; z-index: 2; }
    .booking-form {
      display: flex; flex-direction: column; gap: 12px;
    }
    .booking-field {
      display: flex; align-items: center; justify-content: space-between;
      padding: 18px 22px;
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.1);
      transition: border-color .25s, background .25s;
      border-radius: 2px;
    }
    .booking-field:hover {
      border-color: var(--gold-border);
      background: rgba(198,158,80,.06);
    }
    .booking-field-label {
      font-size: .72rem; letter-spacing: .15em; text-transform: uppercase;
      color: rgba(234,236,239,.5);
    }
    .booking-field-val {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem; color: var(--gold);
    }
    .booking-submit {
      margin-top: 8px;
      display: flex; align-items: center; justify-content: center;
      gap: 14px;
      padding: 18px;
      background: var(--gold); color: var(--text);
      font-size: .8rem; letter-spacing: .16em; text-transform: uppercase;
      font-weight: 500; border: none; border-radius: 2px;
      transition: background .25s, transform .2s;
      cursor: pointer;
    }
    .booking-submit:hover { background: var(--gold-light); transform: translateY(-2px); }
    .booking-note {
      text-align: center; font-size: .7rem;
      color: rgba(234,236,239,.3); letter-spacing: .06em; margin-top: 10px;
    }

    /* ── FOOTER — identisch zur Landingpage ── */
    .footer {
      background: var(--bg);
      border-top: 1px solid var(--border);
      padding: 44px 0;
    }
    .footer-bereiche {
      display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
      gap: 12px 28px;
      padding-bottom: 28px; margin-bottom: 28px;
      border-bottom: 1px solid var(--border);
    }
    .footer-bereiche a {
      font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
      color: var(--muted); text-decoration: none; transition: color .2s;
    }
    .footer-bereiche a:hover { color: var(--gold); }
    .footer-inner {
      display: flex; justify-content: space-between;
      align-items: center; gap: 24px;
    }
    .footer-copy {
      font-size: .75rem; color: var(--muted); letter-spacing: .06em;
    }
    .footer-links { display: flex; gap: 32px; }
    .footer-links a {
      font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
      color: var(--muted); transition: color .2s;
    }
    .footer-links a:hover { color: var(--gold); }
    .footer-credit {
      font-size: .72rem; letter-spacing: .08em; color: var(--muted);
    }
    .footer-credit a { color: var(--gold); transition: opacity .2s; }
    .footer-credit a:hover { opacity: .7; }

    /* ── SCROLL REVEAL ── */
    .reveal {
      opacity: 0; transform: translateY(28px);
      transition: opacity .75s ease, transform .75s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: .1s; }
    .reveal-delay-2 { transition-delay: .2s; }
    .reveal-delay-3 { transition-delay: .3s; }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .hero { grid-template-columns: 1fr; min-height: auto; }
      .hero-left { padding: 104px 32px 48px; min-height: 62svh; justify-content: center; }
      .hero-left::after { display: none; }
      .hero-right { min-height: 50svh; }
      .philosophy-inner { grid-template-columns: 1fr; gap: 48px; }
      .philosophy-visual { grid-template-columns: 1fr 1fr; }
      .phil-img:first-child { margin-top: 0; }
      .leistungen-grid { grid-template-columns: 1fr; }
      .prozess-header { flex-direction: column; gap: 24px; }
      .prozess-steps { grid-template-columns: 1fr 1fr; }
      .looks-grid { grid-template-columns: 1fr 1fr; }
      .expertise-inner { grid-template-columns: 1fr; gap: 48px; }
      .booking-box { grid-template-columns: 1fr; padding: 60px 32px; gap: 48px; }
      .footer-inner { flex-direction: column; text-align: center; gap: 20px; }
      .site-header { padding: 0 24px; }
    }
    

    @media (max-width: 1024px) {
      .site-header { padding: 0 24px; }
      .hero { grid-template-columns: 1fr; min-height: auto; }
      .hero-left { padding: 104px 32px 48px; min-height: 62svh; justify-content: center; }
      .hero-left::after { display: none; }
      .hero-right { min-height: 50svh; }
      .hero-float {
        bottom: 28px;
        left: 24px;
        right: 24px;
        gap: 20px;
        justify-content: space-between;
      }
      .philosophy-inner { grid-template-columns: 1fr; gap: 48px; }
      .philosophy-visual { grid-template-columns: 1fr 1fr; }
      .phil-img:first-child { margin-top: 0; }
      .leistungen-grid { grid-template-columns: 1fr; }
      .prozess-header { flex-direction: column; gap: 24px; }
      .prozess-steps { grid-template-columns: 1fr 1fr; }
      .looks-grid { grid-template-columns: 1fr 1fr; }
      .expertise-inner { grid-template-columns: 1fr; gap: 48px; }
      .booking-box { grid-template-columns: 1fr; padding: 60px 32px; gap: 48px; }
      .footer-inner { flex-direction: column; text-align: center; gap: 20px; }
    }

    @media (max-width: 768px) {
      .container { width: min(100% - 32px, 1280px); }
      .site-header {
        height: auto;
        min-height: 72px;
        padding: 16px 16px;
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-areas:
          "back badge"
          "logo logo";
        row-gap: 10px;
        align-items: center;
      }
      .header-left { grid-area: back; }
      .header-back { font-size: .64rem; letter-spacing: .12em; }
      .header-dot { display: none; }
      .header-badge {
        grid-area: badge;
        justify-self: end;
        padding: 6px 12px;
        font-size: .6rem;
        letter-spacing: .12em;
      }
      .nav-name { display: none; }
      .nav-logo {
        grid-area: logo;
        position: static;
        transform: none;
        justify-self: center;
      }
      .nav-logo img {
        height: 38px;
        max-width: 180px;
      }
      .hero-left { padding: 132px 16px 36px; min-height: auto; }
      .hero-tag { margin-bottom: 20px; gap: 10px; font-size: .6rem; letter-spacing: .16em; }
      .hero-tag::before { width: 24px; }
      .hero-title { font-size: clamp(3rem, 15vw, 4.8rem); line-height: .94; }
      .hero-sub { margin-top: 22px; max-width: 100%; font-size: .95rem; line-height: 1.75; }
      .hero-actions { margin-top: 28px; flex-direction: column; align-items: stretch; gap: 10px; }
      .btn-primary, .btn-outline { justify-content: center; width: 100%; padding: 16px 20px; }
      .hero-right { min-height: 58svh; }
      .hero-right img { object-position: center 24%; }
      .hero-float {
        left: 16px; right: 16px; bottom: 16px;
        padding: 16px 14px; gap: 10px;
      }
      .hero-float-item { flex: 1; }
      .hero-float-num { font-size: 1.35rem; }
      .hero-float-label { font-size: .55rem; letter-spacing: .12em; }
      .scroll-hint { display: none; }
      .marquee-wrap { padding: 10px 0; }
      .marquee-item { padding: 0 24px; font-size: .62rem; letter-spacing: .16em; }
      .section { padding: 84px 0; }
      .section-sm { padding: 64px 0; }
      .label-row { gap: 10px; margin-bottom: 14px; font-size: .62rem; letter-spacing: .16em; }
      .label-row::before { width: 22px; }
      .section-title { font-size: clamp(2.1rem, 11vw, 3.1rem); line-height: 1.02; }
      .philosophy-body,
      .leistungen-desc,
      .looks-desc,
      .expertise-aside-body,
      .prozess-intro,
      .booking-sub { font-size: .95rem; line-height: 1.8; }
      .philosophy-inner, .expertise-inner { gap: 32px; }
      .leistungen-header, .looks-header, .prozess-header {
        gap: 20px; margin-bottom: 36px; padding-bottom: 20px;
      }
      .leistungen-header, .looks-header { flex-direction: column; align-items: flex-start; }
      .leistung-block { padding: 28px 22px 30px; }
      .leistung-name { font-size: 1.55rem; }
      .leistung-meta {
        margin-top: 20px; padding-top: 16px; gap: 12px;
        align-items: flex-start; flex-direction: column;
      }
      .prozess-steps { grid-template-columns: 1fr; }
      .prozess-step { padding: 30px 22px 32px; }
      .step-num { font-size: 3rem; margin-bottom: 14px; }
      .step-title { font-size: 1.35rem; }
      .looks-grid, .philosophy-visual { grid-template-columns: 1fr; }
      .look-info { padding: 18px 0 4px; }
      .look-name { font-size: 1.35rem; }
      .expertise-item {
        display: grid;
        grid-template-columns: 28px 1fr;
        gap: 6px 14px;
        align-items: start;
        padding: 20px 0;
      }
      .expertise-name { font-size: 1.35rem; }
      .expertise-tag { grid-column: 2; justify-self: start; }
      .expertise-img { margin-top: 24px; aspect-ratio: 16 / 11; }
      .booking-box { padding: 44px 20px; gap: 28px; }
      .booking-title { font-size: clamp(2.2rem, 12vw, 3.2rem); }
      .booking-box::before { font-size: 58vw; right: -8vw; }
      .booking-field {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 16px 18px;
      }
      .booking-submit { width: 100%; }
      .footer-links { flex-wrap: wrap; justify-content: center; gap: 18px; }
    }

    @media (max-width: 480px) {
      .site-header { padding: 14px 12px; }
      .container { width: min(100% - 24px, 1280px); }
      .hero-left { padding: 126px 12px 28px; }
      .hero-title { font-size: clamp(2.6rem, 15vw, 4rem); }
      .hero-sub { font-size: .92rem; line-height: 1.7; }
      .btn-primary, .btn-outline { font-size: .72rem; letter-spacing: .12em; }
      .hero-right { min-height: 52svh; }
      .hero-float { padding: 14px 10px; gap: 8px; }
      .hero-float-num { font-size: 1.15rem; }
      .hero-float-label { font-size: .5rem; }
      .section { padding: 72px 0; }
      .section-title { font-size: clamp(1.95rem, 11vw, 2.6rem); }
      .leistung-block, .prozess-step { padding-left: 18px; padding-right: 18px; }
      .booking-box { padding: 36px 16px; }
    }
