/* ═══════════════════════════════════════════════════════════════
     TOKENS & RESET
  ═══════════════════════════════════════════════════════════════ */
  :root {
    --cream:      #f9f5ee;
    --cream-mid:  #f0e9d8;
    --cream-dark: #e4d9c3;
    --gold:       #b8904a;
    --gold-light: #d4a85c;
    --gold-dark:  #8c6a30;
    --brown:      #3c2f1e;
    --brown-mid:  #6b5340;
    --text:       #2e2318;
    --muted:      #7a6553;
    --white:      #ffffff;
    --nav-h:      76px;
    --r:          3px;
    --t:          0.28s ease;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html  { scroll-behavior: smooth; font-size: 18px; }
  body  { font-family: 'Jost', sans-serif; color: var(--text); background: var(--cream); line-height: 1.7; }
  img   { display: block; max-width: 100%; }
  a     { color: inherit; text-decoration: none; }
  ul    { list-style: none; }

  /* Display font helper */
  .serif { font-family: 'Cormorant Garamond', serif; }

  /* Container */
  .container { max-width: 1140px; margin: 0 auto; padding: 0 28px; }
  .section    { padding: 96px 0; }
  .section-alt { background: var(--cream-mid); }

  /* Section labels */
  .eyebrow {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
  }

  /* Divider line */
  .gold-rule {
    display: inline-block;
    width: 48px; height: 1px;
    background: var(--gold);
    vertical-align: middle;
    margin: 0 12px;
  }

  /* Headings */
  h2.display {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 300;
    line-height: 1.12;
    color: var(--brown);
    letter-spacing: .01em;
  }
  h3.display {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 400;
    color: var(--brown);
  }

  /* Buttons */
  .btn {
    display: inline-block;
    padding: 13px 34px;
    font-family: 'Jost', sans-serif;
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    border-radius: var(--r);
    transition: background var(--t), color var(--t), border-color var(--t), transform var(--t);
    cursor: pointer;
    border: 1.5px solid transparent;
    line-height: 1;
  }
  .btn-gold  { background: var(--gold); color: var(--white); border-color: var(--gold); }
  .btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-2px); }
  .btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
  .btn-outline:hover { background: var(--white); color: var(--brown); border-color: var(--white); }
  .btn-outline-dark { background: transparent; color: var(--brown); border-color: var(--gold); }
  .btn-outline-dark:hover { background: var(--gold); color: var(--white); }

  /* Fade-in animations */
  .fade { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
  .fade.up { opacity: 1; transform: none; }
  .fade-left { opacity: 0; transform: translateX(-28px); transition: opacity .6s ease, transform .6s ease; }
  .fade-left.up { opacity: 1; transform: none; }

  /* ═══════════════════════════════════════════════════════════════
     TOPBAR
  ═══════════════════════════════════════════════════════════════ */
  .topbar {
    background: var(--brown);
    color: rgba(255,255,255,.6);
    font-size: .78rem;
    letter-spacing: .06em;
    padding: 9px 0;
    text-align: center;
  }
  .topbar a { color: var(--gold-light); transition: color var(--t); }
  .topbar a:hover { color: var(--white); }
  .topbar-inner { display: flex; justify-content: center; gap: 36px; flex-wrap: wrap; align-items: center; }
  .topbar-item { display: flex; align-items: center; gap: 7px; }

  /* ═══════════════════════════════════════════════════════════════
     NAVIGATION
  ═══════════════════════════════════════════════════════════════ */
  nav {
    position: sticky; top: 0; z-index: 200;
    background: var(--cream);
    border-bottom: 1px solid var(--cream-dark);
    height: var(--nav-h);
    transition: box-shadow var(--t);
  }
  nav.scrolled { box-shadow: 0 4px 24px rgba(60,47,30,.1); }
  .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }

  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 400;
    color: var(--brown);
    letter-spacing: .04em;
  }
  .nav-logo em { font-style: italic; color: var(--gold); }

  .nav-links { display: flex; gap: 32px; align-items: center; }
  .nav-links a {
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--brown-mid);
    transition: color var(--t);
    position: relative;
    padding-bottom: 2px;
  }
  .nav-links a::after {
    content: '';
    position: absolute; bottom: -2px; left: 0; right: 0;
    height: 1px; background: var(--gold);
    transform: scaleX(0); transform-origin: left;
    transition: transform var(--t);
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-links a:hover::after { transform: scaleX(1); }
  .nav-links .btn-gold { padding: 10px 22px; }
  .nav-links .btn-gold::after { display: none; }

  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
  .hamburger span { display: block; width: 22px; height: 1.5px; background: var(--brown); transition: .3s; }
  .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px,4.5px); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px,-4.5px); }

  /* ═══════════════════════════════════════════════════════════════
     HERO
  ═══════════════════════════════════════════════════════════════ */
  .hero {
    min-height: calc(100vh - var(--nav-h));
    background:
      linear-gradient(160deg, rgba(30,22,12,.72) 0%, rgba(30,22,12,.38) 60%, rgba(30,22,12,.65) 100%),
      url('../images/hero/hero.jpg') center/cover no-repeat;
    display: flex; align-items: center;
    position: relative; overflow: hidden;
  }
  /* Decorative diagonal stripe */
  .hero::before {
    content: '';
    position: absolute; bottom: 0; right: 0;
    width: 40%; height: 100%;
    background: linear-gradient(135deg, transparent 50%, rgba(184,144,74,.08) 50%);
    pointer-events: none;
  }
  .hero-content { max-width: 640px; padding: 60px 0; }
  .hero-tag {
    font-size: .75rem; font-weight: 500; letter-spacing: .22em;
    text-transform: uppercase; color: var(--gold-light);
    display: flex; align-items: center; gap: 12px; margin-bottom: 24px;
  }
  .hero-tag::before { content: ''; width: 32px; height: 1px; background: var(--gold-light); }
  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 300; line-height: 1.05;
    color: var(--white); margin-bottom: 24px;
    text-shadow: 0 2px 20px rgba(0,0,0,.25);
  }
  .hero h1 em { font-style: italic; color: var(--gold-light); }
  .hero p {
    font-size: 1.1rem; font-weight: 300;
    color: rgba(255,255,255,.82); margin-bottom: 40px;
    max-width: 480px; line-height: 1.75;
  }
  .hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

  /* Scroll indicator */
  .scroll-hint {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    color: rgba(255,255,255,.45); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase;
    animation: bobble 2s ease-in-out infinite;
  }
  .scroll-hint svg { animation: arrowDown 1.4s ease infinite; }
  @keyframes bobble { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }
  @keyframes arrowDown { 0%,100%{opacity:.4} 50%{opacity:1} }

  /* ═══════════════════════════════════════════════════════════════
     INTRO / USP BAND
  ═══════════════════════════════════════════════════════════════ */
  .usp-band { background: var(--brown); padding: 56px 0; }
  .usp-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; }
  .usp-item {
    text-align: center; padding: 20px 32px;
    border-right: 1px solid rgba(255,255,255,.1);
  }
  .usp-item:last-child { border-right: none; }
  .usp-icon { font-size: 1.6rem; margin-bottom: 10px; }
  .usp-item h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem; font-weight: 400; color: var(--gold-light);
    margin-bottom: 6px;
  }
  .usp-item p { font-size: 1rem; color: rgba(255,255,255,.55); font-weight: 300; line-height: 1.6; }

  /* ═══════════════════════════════════════════════════════════════
     ÜBER UNS
  ═══════════════════════════════════════════════════════════════ */
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
  .about-img-block { position: relative; }
  .about-img-main {
    width: 100%; height: 520px;
    object-fit: cover; border-radius: var(--r);
  }
  /* Second image overlapping */
  .about-img-accent {
    position: absolute;
    bottom: -32px; right: -32px;
    width: 48%; height: 280px;
    object-fit: cover; border-radius: var(--r);
    border: 6px solid var(--cream);
    box-shadow: 0 12px 40px rgba(0,0,0,.18);
  }
  .about-badge-since {
    position: absolute; top: 28px; left: -20px;
    background: var(--gold); color: var(--white);
    padding: 16px 20px; border-radius: var(--r);
    text-align: center; box-shadow: 0 8px 24px rgba(0,0,0,.2);
  }
  .about-badge-since .num { font-family: 'Cormorant Garamond',serif; font-size: 2rem; font-weight: 600; line-height: 1; }
  .about-badge-since .lbl { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; opacity: .9; margin-top: 2px; }

  .about-text { padding-right: 16px; }
  .about-text h2 { margin-bottom: 24px; }
  .about-text p  { color: var(--muted); margin-bottom: 18px; font-size: 1rem; }
  .about-checks  { margin: 28px 0; }
  .check { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 12px; }
  .check-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--gold); flex-shrink: 0; margin-top: 8px;
  }
  .check span { font-size: 1rem; color: var(--text); }

  /* ═══════════════════════════════════════════════════════════════
     TEAM
  ═══════════════════════════════════════════════════════════════ */
  .team-head { text-align: center; margin-bottom: 56px; }
  .team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
  .team-card { text-align: center; }
  .team-img-wrap {
    position: relative; overflow: hidden; border-radius: var(--r);
    margin-bottom: 24px; aspect-ratio: 5/6;
  }
  .team-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
  .team-card:hover .team-img-wrap img { transform: scale(1.04); }
  .team-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(60,47,30,.7) 100%);
    opacity: 0; transition: opacity var(--t);
  }
  .team-card:hover .team-img-overlay { opacity: 1; }
  .team-card h3 { font-size: 1.1rem; font-family: 'Cormorant Garamond',serif; font-weight: 600; margin-bottom: 4px; color: var(--brown); }
  .team-role { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
  .team-bio  { font-size: 1rem; color: var(--muted); margin-top: 10px; line-height: 1.65; }

  /* ═══════════════════════════════════════════════════════════════
     UNSER SALON (3-image layout)
  ═══════════════════════════════════════════════════════════════ */
  .salon-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; align-items: start; }
  .salon-img-big { width: 100%; height: 520px; object-fit: cover; border-radius: var(--r); }
  .salon-imgs-small { display: flex; flex-direction: column; gap: 32px; }
  .salon-imgs-small img { width: 100%; height: 240px; object-fit: cover; border-radius: var(--r); }
  .salon-text { margin-top: 48px; max-width: 560px; }
  .salon-text h2 { margin-bottom: 20px; }
  .salon-text p  { color: var(--muted); font-size: 1rem; margin-bottom: 16px; }

  /* ═══════════════════════════════════════════════════════════════
     LEISTUNGEN
  ═══════════════════════════════════════════════════════════════ */
  .leistungen-head { text-align: center; margin-bottom: 56px; }
  .leistungen-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
  .leistung-card {
    background: var(--cream);
    border: 1px solid var(--cream-dark);
    border-top: 2px solid var(--gold);
    padding: 36px 28px;
    transition: box-shadow var(--t), transform var(--t);
    border-radius: var(--r);
  }
  .leistung-card:hover { box-shadow: 0 8px 32px rgba(60,47,30,.12); transform: translateY(-4px); }
  .leistung-icon { font-size: 1.8rem; margin-bottom: 18px; }
  .leistung-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem; font-weight: 600; margin-bottom: 12px; color: var(--brown);
  }
  .leistung-card p { font-size: 1rem; color: var(--muted); line-height: 1.68; }

  /* ═══════════════════════════════════════════════════════════════
     PREISLISTE
  ═══════════════════════════════════════════════════════════════ */
  .preise-head { text-align: center; margin-bottom: 56px; }
  .preise-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
  .preise-group { }
  .preise-group h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem; font-weight: 600; color: var(--brown);
    border-bottom: 1px solid var(--cream-dark);
    padding-bottom: 12px; margin-bottom: 20px;
    display: flex; align-items: center; gap: 10px;
  }
  .preise-group h4 .icon { font-size: 1rem; }
  .price-row {
    display: flex; justify-content: space-between; align-items: baseline;
    padding: 9px 0;
    border-bottom: 1px dotted var(--cream-dark);
    font-size: 1rem;
  }
  .price-row:last-child { border-bottom: none; }
  .price-row .name { color: var(--text); }
  .price-row .price { color: var(--gold); font-weight: 600; white-space: nowrap; margin-left: 12px; }
  .price-note { font-size: .78rem; color: var(--muted); margin-top: 16px; font-style: italic; }

  /* ═══════════════════════════════════════════════════════════════
     GALERIE / VORHER-NACHHER
  ═══════════════════════════════════════════════════════════════ */
  .galerie-head { text-align: center; margin-bottom: 52px; }
  .galerie-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-template-rows: auto auto;
    gap: 12px;
  }
  .gal-item { position: relative; overflow: hidden; border-radius: var(--r); cursor: zoom-in; }
  .gal-item img { width: 100%; height: 280px; object-fit: cover; transition: transform .45s ease; display: block; }
  .gal-item:hover img { transform: scale(1.06); }
  .gal-overlay {
    position: absolute; inset: 0;
    background: rgba(60,47,30,0);
    display: flex; align-items: center; justify-content: center;
    transition: background .3s ease;
  }
  .gal-item:hover .gal-overlay { background: rgba(60,47,30,.45); }
  .gal-zoom {
    color: var(--white); font-size: 1.6rem; opacity: 0;
    transform: scale(.6); transition: opacity .3s, transform .3s;
  }
  .gal-item:hover .gal-zoom { opacity: 1; transform: scale(1); }

  /* ═══════════════════════════════════════════════════════════════
     LIGHTBOX
  ═══════════════════════════════════════════════════════════════ */
  #lightbox {
    display: none; position: fixed; inset: 0; z-index: 9999;
    align-items: center; justify-content: center;
  }
  #lightbox.open { display: flex; }
  #lb-bg { position: absolute; inset: 0; background: rgba(10,8,5,.94); cursor: zoom-out; animation: lbIn .2s ease; }
  @keyframes lbIn { from{opacity:0} to{opacity:1} }
  #lb-box { position: relative; z-index: 1; max-width: 90vw; max-height: 90vh; animation: lbPop .25s ease; }
  @keyframes lbPop { from{opacity:0;transform:scale(.93)} to{opacity:1;transform:scale(1)} }
  #lb-box img { max-width: 90vw; max-height: 84vh; object-fit: contain; border-radius: var(--r); box-shadow: 0 24px 64px rgba(0,0,0,.6); }
  #lb-caption { text-align: center; color: rgba(255,255,255,.6); font-size: .85rem; margin-top: 12px; font-family: 'Cormorant Garamond',serif; font-style: italic; font-size: 1rem; }
  #lb-counter { text-align: center; color: rgba(255,255,255,.35); font-size: .75rem; letter-spacing: .12em; margin-top: 4px; }
  #lb-close { position: fixed; top: 20px; right: 24px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: #fff; width: 42px; height: 42px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background var(--t); }
  #lb-close:hover { background: var(--gold); border-color: var(--gold); }
  #lb-prev, #lb-next { position: fixed; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); color: #fff; width: 50px; height: 50px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background var(--t), transform var(--t); }
  #lb-prev { left: 20px; }
  #lb-next { right: 20px; }
  #lb-prev:hover { background: var(--gold); transform: translateY(-50%) scale(1.08); }
  #lb-next:hover { background: var(--gold); transform: translateY(-50%) scale(1.08); }

  /* ═══════════════════════════════════════════════════════════════
     TESTIMONIALS
  ═══════════════════════════════════════════════════════════════ */
  .testi-head { text-align: center; margin-bottom: 52px; }
  .testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
  .testi-card {
    background: var(--cream);
    border: 1px solid var(--cream-dark);
    border-radius: var(--r);
    padding: 36px 28px;
    position: relative;
  }
  .testi-card::before {
    content: '\201C';
    font-family: 'Cormorant Garamond',serif;
    font-size: 5rem; line-height: 1;
    color: var(--gold); opacity: .35;
    position: absolute; top: 12px; left: 22px;
  }
  .testi-text {
    font-family: 'Cormorant Garamond',serif;
    font-size: 1.15rem; font-style: italic; line-height: 1.65;
    color: var(--brown-mid); margin-bottom: 20px; position: relative; z-index: 1;
  }
  .testi-stars { color: var(--gold); font-size: .85rem; margin-bottom: 10px; }
  .testi-author { font-size: .82rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }

  /* ═══════════════════════════════════════════════════════════════
     INSTAGRAM PLACEHOLDER
  ═══════════════════════════════════════════════════════════════ */
  .insta-section { background: var(--brown); padding: 72px 0; }
  .insta-head { text-align: center; margin-bottom: 40px; }
  .insta-head .eyebrow { color: var(--gold-light); }
  .insta-head h2 { color: var(--white); }
  .insta-handle { font-size: 1.1rem; color: var(--gold-light); margin-top: 8px; font-family: 'Cormorant Garamond',serif; font-style: italic; }
  .insta-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 6px; }
  .insta-cell {
    aspect-ratio: 1;
    background: rgba(255,255,255,.07);
    border-radius: 2px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background var(--t);
    position: relative; overflow: hidden;
  }
  .insta-cell:hover { background: rgba(184,144,74,.25); }
  .insta-cell-inner { display: flex; flex-direction: column; align-items: center; gap: 6px; color: rgba(255,255,255,.3); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }
  .insta-cell-inner svg { opacity: .4; }
  .insta-cell:hover .insta-cell-inner { color: var(--gold-light); }
  .insta-cell:hover .insta-cell-inner svg { opacity: .9; }
  .insta-cta { text-align: center; margin-top: 32px; }

  /* ═══════════════════════════════════════════════════════════════
     KONTAKT
  ═══════════════════════════════════════════════════════════════ */
  .kontakt-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 72px; }
  .kontakt-info h2 { margin-bottom: 20px; }
  .kontakt-info p  { color: var(--muted); margin-bottom: 28px; font-size: 1rem; }
  .kontakt-block { margin-bottom: 22px; }
  .kontakt-block strong { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 4px; }
  .kontakt-block span, .kontakt-block a { font-size: 1rem; color: var(--text); }
  .kontakt-block a:hover { color: var(--gold); }

  /* Opening hours table */
  .hours-table { width: 100%; font-size: 1rem; margin-top: 8px; }
  .hours-table tr td { padding: 4px 0; color: var(--muted); }
  .hours-table tr td:last-child { text-align: right; color: var(--text); font-weight: 500; }
  .hours-table tr.today td { color: var(--gold); font-weight: 600; }

  /* Form */
  .form-group { margin-bottom: 16px; }
  .form-group label { display: block; font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
  .form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 13px 16px;
    border: 1px solid var(--cream-dark);
    background: var(--cream); font-family: 'Jost',sans-serif;
    font-size: 1rem; color: var(--text); border-radius: var(--r);
    outline: none; transition: border-color var(--t), background var(--t);
  }
  .form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); background: var(--white); }
  .form-group textarea { resize: vertical; min-height: 120px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-note { font-size: .78rem; color: var(--muted); }
  .form-success { display: none; padding: 14px 18px; background: #f0f7f0; border-left: 3px solid #5a9e5a; color: #3a6e3a; font-size: .9rem; border-radius: var(--r); margin-top: 12px; }

  /* ═══════════════════════════════════════════════════════════════
     FOOTER
  ═══════════════════════════════════════════════════════════════ */
  footer { background: var(--brown); color: rgba(255,255,255,.5); padding: 64px 0 28px; }
  .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
  .footer-logo { font-family: 'Cormorant Garamond',serif; font-size: 1.8rem; color: var(--white); margin-bottom: 14px; }
  .footer-logo em { font-style: italic; color: var(--gold-light); }
  .footer-brand p { font-size: 1rem; line-height: 1.75; }
  footer h5 { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 18px; }
  .footer-links li { margin-bottom: 10px; }
  .footer-links a  { font-size: 1rem; transition: color var(--t); }
  .footer-links a:hover { color: var(--gold-light); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px; display: flex; justify-content: space-between; font-size: .78rem; flex-wrap: wrap; gap: 8px; }
  .footer-bottom a { color: rgba(255,255,255,.4); margin-left: 16px; }
  .footer-bottom a:hover { color: var(--gold-light); }

  /* Gold decorative rule */
  .deco-rule { display: flex; align-items: center; gap: 16px; margin: 0 auto 28px; justify-content: center; }
  .deco-rule::before, .deco-rule::after { content: ''; flex: 0 0 48px; height: 1px; background: var(--gold); opacity: .5; }
  .deco-diamond { width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); opacity: .7; }

  /* ═══════════════════════════════════════════════════════════════
     RESPONSIVE
  ═══════════════════════════════════════════════════════════════ */
  @media (max-width: 960px) {
    .about-grid, .kontakt-grid { grid-template-columns: 1fr; }
    .about-img-accent { display: none; }
    .about-img-main { height: 360px; }
    .about-text { padding-right: 0; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .leistungen-grid { grid-template-columns: 1fr 1fr; }
    .preise-cols { grid-template-columns: 1fr 1fr; }
    .testi-grid { grid-template-columns: 1fr 1fr; }
    .galerie-grid { grid-template-columns: 1fr 1fr; }
    .insta-grid { grid-template-columns: repeat(3,1fr); }
    .salon-layout { grid-template-columns: 1fr; }
    .salon-img-big { height: 320px; }
    .salon-imgs-small { flex-direction: row; }
    .salon-imgs-small img { height: 160px; }
    .usp-grid { grid-template-columns: 1fr; gap: 0; }
    .usp-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
    .usp-item:last-child { border-bottom: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 600px) {
    .nav-links { display: none; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--cream); border-bottom: 1px solid var(--cream-dark); padding: 20px 28px 28px; gap: 20px; box-shadow: 0 8px 24px rgba(60,47,30,.12); }
    .nav-links.open { display: flex; }
    .hamburger { display: flex; }
    .hero h1 { font-size: 2.8rem; }
    .team-grid { grid-template-columns: 1fr; }
    .leistungen-grid, .preise-cols, .testi-grid { grid-template-columns: 1fr; }
    .galerie-grid { grid-template-columns: 1fr 1fr; }
    .insta-grid { grid-template-columns: repeat(3,1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; }
    .section { padding: 64px 0; }
    #lb-prev { left: 8px; } #lb-next { right: 8px; }
  }
