/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:#fff0}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type="checkbox"],[type="radio"]{box-sizing:border-box;padding:0}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{-webkit-appearance:textfield;outline-offset:-2px}[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}

/* ==========================================================
   HAARSTUDIO FERRERI – styles.css
   ========================================================== */

/* --- 1. FONT-FACE --- */
@font-face {
    font-family: 'Raleway';
    src: url('../fonts/raleway-v37-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Raleway';
    src: url('../fonts/raleway-v37-latin-italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Raleway';
    src: url('../fonts/raleway-v37-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* --- 2. ROOT VARIABLEN --- */
:root {
    --gold:    rgb(253, 200, 46);   
    --schwarz: rgb(29, 29, 27);     
    --weiss:   rgb(255, 255, 255);
    --grau:    rgb(248, 248, 248);
    --schrift: 'Raleway', sans-serif;
    --header-h: 10vw;
}

/* --- 3. BASE --- */
*, *::before, *::after { box-sizing: border-box; }

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-h);
    font-size: 18px;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--schrift);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--schwarz);
    background: var(--weiss);
    margin: 0;
    padding: 0;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { margin: 0; line-height: 1.2; }
p  { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
img { border-style: none; max-width: 100%; height: auto; display: block; }
a { background-color: transparent; text-decoration: none; color: inherit; transition: color 0.3s; }

/* --- 4. PROGRESS BAR --- */
#progress-bar {
    position: fixed;
    top: 0; left: 0;
    height: 4px;
    background: var(--gold);
    z-index: 2000;
    width: 0;
    transition: width 0.1s linear;
}

/* ==========================================================
   5. HEADER  — .logo | nav | .contacts
   Welle: welle-oben.svg  3540 × 216px, Ratio 16.39 : 1
   Höhe als vw: background-size-% × (216/3540) = % × 6.10%
     Desktop 220% → 220 × 6.10% = 13.42vw
     shrink  140% → 140 × 6.10% =  8.54vw
   ========================================================== */
header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;

    background-color: transparent;
    background-image: url('../images/welle-oben.svg');
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 220% auto;

    /* padding-bottom = 13.42vw (220% × 6.10%) */
    padding: 10px 20px 13.42vw;

    transition: padding 0.4s, background-size 0.4s;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
}

/* Schwarze Fläche ÜBER der Welle */
header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--schwarz);
    clip-path: inset(0 0 13.42vw 0);
    z-index: -1;
    transition: clip-path 0.4s;
}

header.shrink {
    /* Welle weg: background nur schwarze Farbe, kein SVG */
    background-image: none;
    background-color: var(--schwarz);
    border-bottom: 3px solid var(--gold);
    padding-top: 6px;
    padding-bottom: 12px;
}
header.shrink::before {
    /* Kein clip nötig: ganzer Header ist schwarz */
    clip-path: none;
}

/* ---------- Logo ---------- */
header .logo {
    flex: 0 0 auto;
    line-height: 0;
    margin-right: 20px;
}
header .logo a { display: block; }
header .logo img {
    height: clamp(40px, 6vw, 96px);
    width: auto;
    transition: height 0.4s;
}
header.shrink .logo img {
    height: clamp(28px, 3.5vw, 48px);
}

/* ---------- Nav ---------- */
header nav {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
header nav ul {
    display: flex;
    flex-direction: row;
    list-style: none;
    gap: 22px;
    margin: 0;
    padding: 0;
}
header nav ul a {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.88rem;      /* 1px kleiner, ab 1200px größer */
    letter-spacing: 0.07em;
    color: var(--weiss);
    transition: color 0.3s;
    white-space: nowrap;
}
header nav ul a:hover,
header nav ul a.aktiv { color: var(--gold); }
header nav ul .mobile-only { display: none; }

/* ---------- Contacts ---------- */
header .contacts {
    flex: 0 0 auto;
    text-align: right;
    margin-left: 20px;
}
header .contacts span {
    display: block;
    font-size: 0.62rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 2px;
}
header .contacts a {
    font-weight: 700;
    font-size: 1rem;
    color: var(--weiss);
    transition: color 0.3s;
    white-space: nowrap;
}
header .contacts a:hover { color: var(--gold); }

/* ---------- Hamburger ---------- */
.menu-toggle {
    display: none;
    width: 28px;
    height: 20px;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
}
.menu-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--weiss);
    border-radius: 2px;
    transition: 0.25s;
}
.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 9px; }
.menu-toggle span:nth-child(3) { top: 18px; }
.menu-toggle.open span:nth-child(1) { top: 9px; transform: rotate(135deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; left: -40px; }
.menu-toggle.open span:nth-child(3) { top: 9px; transform: rotate(-135deg); }

/* ==========================================================
   5b. TABLET-HEADER  768px – 1023px
       Logo links + Contacts rechts (Zeile 1)
       Nav zentriert darunter (Zeile 2)
   ========================================================== */
@media (min-width: 768px) and (max-width: 1023px) {
    :root { --header-h: 10.5vw; }

    header {
        flex-wrap: wrap;
        align-items: center;
        background-size: 180% auto;
        /* Tablet 180% × 6.10% = 10.98vw */
        padding: 10px 20px 10.5vw;
    }
    header::before {
        clip-path: inset(0 0 10.5vw 0);
    }
    header.shrink {
        background-image: none;
        background-color: var(--schwarz);
        border-bottom: 3px solid var(--gold);
        padding: 6px 20px 12px;
    }
    header.shrink::before { clip-path: none; }

    /* Zeile 1: Logo (links) + Contacts (rechts) */
    header .logo {
        flex: 1 0 auto;
        margin-right: 0;
    }
    header .contacts {
        flex: 0 0 auto;
        margin-left: auto;
        text-align: right;
    }

    /* Zeile 2: Nav volle Breite, zentriert */
    header nav {
        flex: 0 0 100%;
        order: 3;
        justify-content: center;
        padding-top: 8px;
    }
    header nav ul { gap: 20px; }
    header nav ul a { font-size: 0.85rem; }

    /* Hamburger versteckt */
    .menu-toggle { display: none !important; }
    /* Nav immer sichtbar */
    header nav ul {
        display: flex !important;
        position: static !important;
        background: transparent !important;
        flex-direction: row !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
    }
    header nav ul .mobile-only { display: none; }
}

/* ==========================================================
   6. HERO / BILD
   ========================================================== */
.bild {
    margin-top: var(--header-h);
    height: 62vh;
    overflow: hidden;
}
.bild img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.bild#klein { height:auto !important;}
/* ==========================================================
   7. CONTAINER
   ========================================================== */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 30px;
}

/* ==========================================================
   8. SECTIONS allgemein
   ========================================================== */
main section { padding: 90px 0; }

.gold-line {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 12px 0 24px;
    border: none;
}
.gold-line.center { margin: 12px auto 24px; }

/* ==========================================================
   9. SECTION: INTRO
   ========================================================== */
section.intro { background: var(--weiss); text-align: center; }

section.intro h1 {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    margin-bottom: 10px;
}
section.intro .sub-h1 {
	color: rgb(136, 136, 136);
	font-size: clamp(1.4rem, 3vw, 2.2rem);
	font-weight: 400;
	margin-bottom: 40px;
}
section.intro p { max-width: 820px; margin: 0 auto 1em; }

/* ==========================================================
   10. SECTION: QUICKLINKS
   ========================================================== */
section.quicklinks { background: var(--grau); padding: 70px 0; }

.ql-wrap {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}
.ql-circle {
    width: clamp(280px, 30vw, 360px);
    height: clamp(280px, 30vw, 360px);
    border-radius: 50%;
    border: none;                  /* kein Border */
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    transition: transform 0.4s;
}
.ql-circle:hover { transform: scale(1.04); }

.ql-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.52);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--weiss);
	text-align: center;
	padding: 5%;
	transition: background 0.4s;
	gap: 8px;
}
.ql-circle:hover .ql-overlay {
    background: rgba(254, 200, 47, 0.92);
    color: var(--schwarz);
}

/* Icons sind bereits fill="#FDC82E" (gold) → kein filter nötig */
.ql-icon {
    width: clamp(40px, 5vw, 54px);
    height: clamp(40px, 5vw, 54px);
    filter: none;
    flex-shrink: 0;
}
/* Hover: gold → schwarz auf gelbem HG */
.ql-circle:hover .ql-icon {
    filter: brightness(0);
}

.ql-title {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.2;
    color: var(--gold);
}
.ql-circle:hover .ql-title { color: var(--schwarz); }

.ql-text {
    font-size: 1rem;
    line-height: 1.45;
    color: var(--weiss);
    opacity: 0.97;
}
.ql-circle:hover .ql-text { color: var(--schwarz); opacity: 1; }

.ql-link {
    font-weight: 700;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 2px;
    color: var(--gold);
}
.ql-circle:hover .ql-link { color: var(--schwarz); border-bottom-color: var(--schwarz); }

/* ==========================================================
   11. DIVIDER
   ========================================================== */
.divider { width: 100%; overflow: hidden; }
.divider img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ==========================================================
   12. SECTION: PORTRAIT / ZITAT
   ========================================================== */
section.portrait { background: var(--weiss); }

.portrait-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    align-items: center;
}
.portrait-round {
    width: clamp(280px, 28vw, 440px);
    height: clamp(280px, 28vw, 440px);
    border-radius: 50%;
    border: 8px solid var(--gold);
    overflow: hidden;
    flex-shrink: 0;
}
.portrait-round img { width: 100%; height: 100%; object-fit: cover; }

.portrait-quote .gold-icon {
    font-size: 3rem;
    color: var(--gold);
    display: block;
    margin-bottom: 16px;
    line-height: 1;
    opacity: 1;
}
.portrait-quote blockquote {
    font-style: italic;
    font-size: clamp(1.1rem, 2vw, 1.55rem);
    line-height: 1.5;
    margin: 0 0 20px;
}
.portrait-quote cite {
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    font-style: normal;
    letter-spacing: 0.08em;
    font-size: 1rem;
}

/* ==========================================================
   13. SECTION: PREISE
   ========================================================== */
section.preise {
    background: rgb(244, 244, 244);
    position: relative;
    overflow: clip;  /* clip statt hidden: schneidet ab aber ohne overflow:hidden Nebenwirkungen */
}

/* Hintergrund-Icons: icon-friseur/fuesse sind fill="#FFFFFF" */
section.preise.haarstudio::after {
    content: '';
    position: absolute;
    right: 20%;
    bottom: 10%;
    width: clamp(100px, 18vw, 360px);
    height: clamp(100px, 18vw, 360px);
    background: url('../images/icon-friseur.svg') no-repeat center / contain;
    pointer-events: none;
    z-index: 0;
}
section.preise.podologie::after {
    content: '';
    position: absolute;
    right: 20%;
    bottom: 10%;
    width: clamp(100px, 18vw, 360px);
    height: clamp(100px, 18vw, 360px);
    background: url('../images/icon-fuesse.svg') no-repeat center / contain;
    pointer-events: none;
    z-index: 0;
}
/* Container über dem Icon-Layer */
section.preise .container { position: relative; z-index: 1; }

/* Intro-Kopf: Text links, CTA-Kreis rechts
   Kein flex/grid — table-layout */
.preise-kopf {
    display: table;
    width: 100%;
    margin-bottom: 36px;
}
.preise-kopf-text {
    display: table-cell;
    vertical-align: middle;
    padding-right: 44px;
}
.preise-kopf-text h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--schwarz);
    margin-bottom: 10px;
}
.preise-kopf-text p {
	color: rgb(56,56,56);
}
.preise-kopf-text p a { color: var(--schwarz); text-decoration: underline; font-weight: 700; }
.preise-kopf-cta {
    display: table-cell;
    vertical-align: middle;
    width: 1%;
    white-space: nowrap;
}

/* CTA-Kreis – kein flex/grid innen, absolute Zentrierung */
.cta-btn-wrap {
    display: inline-block;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: inset 0 0 0 6px var(--weiss), 0 4px 20px rgba(253, 200, 46, 0.35);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
    position: relative;
}
.cta-btn-wrap a {
    position: absolute;
    inset: 0;
    display: block;
    padding: 36px 14px 0;
    color: var(--schwarz);
    font-weight: 700;
    font-size: 0.88rem;
    text-align: center;
    line-height: 1.5;
}
/* Desktop: jede Zeile als Block */
.cta-line1,
.cta-line2 { display: block; }
.cta-btn-wrap a strong { display: block; }

.cta-btn-wrap:hover {
    box-shadow: inset 0 0 0 6px var(--weiss), 0 8px 30px rgba(253, 200, 46, 0.55);
}
.rotate-cta     { transform: rotate(8deg); }
.rotate-cta-alt { transform: rotate(-8deg); }
.rotate-cta:hover     { transform: rotate(8deg) scale(1.07); }
.rotate-cta-alt:hover { transform: rotate(-8deg) scale(1.07); }

/* Preistabellen-Grid */
.preise-tabellen {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    /* Spalten nehmen nur ihre natürliche Höhe ein, nicht 100% */
    align-items: start;
}
.preise-tabellen.einspaltig {
    grid-template-columns: 1fr;
    max-width: 560px;
}
.preise-spalte {
    background: var(--weiss);
    border-radius: 8px;
    padding: 28px 30px;
    /* Keine Streckung auf volle Höhe */
    align-self: start;
}
.preise-spalte h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--schwarz);
    margin-bottom: 6px;
}

table { width: 100%; border-collapse: collapse; }
section.preise table td {
    padding: 9px 0;
    border-bottom: 1px solid rgb(235, 235, 235);
    color: var(--schwarz);
}
section.preise table td:last-child {
    text-align: right;
    font-weight: 700;
    color: var(--schwarz);
    white-space: nowrap;
    padding-left: 20px;
}
section.preise table tr:last-child td { border-bottom: none; }

/* ==========================================================
   14. SECTION: ANSCHRIFT – gelber HG
   ========================================================== */
section.anschrift {
    background: var(--gold);
    color: var(--schwarz);
    padding: 80px 0;
}
.anschrift-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.info-box h3 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 2px solid var(--schwarz);
    padding-bottom: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.info-icon {
    font-size: 1.375rem;
    color: var(--schwarz);
    display: inline-block;
    width: 28px;
    text-align: center;
    flex-shrink: 0;
}.info-box a { color: var(--schwarz); font-weight: 700; }
.info-box a:hover { opacity: 0.7; }
.info-box p { margin-bottom: 8px; }
.oz-table { width: auto; }
.oz-table td { padding: 5px 0; border-bottom: none;  }
.oz-table td:first-child { font-weight: 700; padding-right: 25px; white-space: nowrap; }
/* "Terminvereinbarungen bitte per Telefon" – markant aber nicht riesig */
.termin-hinweis {
    margin-top: 24px;
    font-style: normal;
    font-weight: 700;
    font-size: clamp(1.25rem, 2.2vw, 1.375rem);
    color: var(--schwarz);
    line-height: 1.25;
    display: block;
}

/* ==========================================================
   15. SECTION: KONTAKT – schwarzer HG
   ========================================================== */
section.kontakt {
    background: var(--schwarz);
    color: var(--weiss);
}
section.kontakt h2 {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: var(--weiss);
}
/* Termin-Hinweis vor Formular: klein & dezent */
section.kontakt .kontakt-hinweis {
    text-align: center;
    font-size: clamp(0.82rem, 1.2vw, 0.95rem);
    color: rgb(160, 160, 160);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.02em;
    margin: 8px 0 36px;
}
section.kontakt .kontakt-hinweis a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
}
section.kontakt .kontakt-hinweis a:hover { opacity: 0.8; }

section.kontakt form { max-width: 700px; margin: 0 auto; }
.form-name { margin-bottom: 14px; }
.form-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }

section.kontakt input[type="text"],
section.kontakt input[type="email"],
section.kontakt input[type="tel"],
section.kontakt textarea {
    width: 100%;
    padding: 13px 16px;
    background: var(--weiss);
    border: 1px solid rgb(221, 221, 221);
    border-radius: 4px;
    color: var(--schwarz);
    font-family: var(--schrift);
    font-size: 0.93rem;
    transition: border-color 0.3s;
    outline: none;
	letter-spacing:0.05em;
}
section.kontakt input::placeholder,
section.kontakt textarea::placeholder { color: rgb(170, 170, 170); }
section.kontakt input:focus,
section.kontakt textarea:focus { border-color: var(--gold); }
section.kontakt textarea { resize: vertical; margin-bottom: 14px; }

.gold-btn {
    background: var(--gold);
    color: var(--schwarz);
    border: none;
    padding: 15px 45px;
    font-family: var(--schrift);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    display: block;
    width: 100%;
}
.gold-btn:hover { background: rgb(245, 194, 0); transform: translateY(-2px); }

/* ==========================================================
   16. FOOTER
   ========================================================== */
footer {
    background: var(--schwarz);
    color: rgb(119, 119, 119);
    padding: 28px 0;
    font-size: 0.83rem;
    border-top: 1px solid rgb(42, 42, 42);
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
footer a { color: rgb(153, 153, 153); transition: color 0.3s; }
footer a:hover { color: var(--gold); }

/* ==========================================================
   17. UI BUTTONS
   ========================================================== */
.toTop,
.toBottom {
    position: fixed;
    right: 20px;
    width: 44px;
    height: 44px;
    background: var(--schwarz);
    color: var(--weiss);
    border: 1px solid var(--gold);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s, background 0.3s, color 0.3s;
    font-size: 0.9rem;
}
.toTop   { bottom: 80px; }
.toBottom { bottom: 26px; }
.toTop.visible, .toBottom.visible { opacity: 1; pointer-events: auto; }
.toTop:hover,   .toBottom:hover   { background: var(--gold); color: var(--schwarz); transform: scale(1.1); }

/* ==========================================================
   18. REVEAL
   ========================================================== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal.active { opacity: 1; transform: translateY(0); }

/* ==========================================================
   19. TABLET-FONT  769–1100px  →  19px
   ========================================================== */
@media (min-width: 769px) {
    html { font-size: 19px; }
}

/* ==========================================================
   20. DESKTOP  ≥1024px: Logo | Nav | Contacts – alle nebeneinander       
   ========================================================== */
@media (min-width: 1024px) {
    :root { --header-h: 12vw; }

    header {
        flex-wrap: nowrap;
        padding: 10px 24px 13vw;
        background-size: 220% auto;
    }
    header::before {
        clip-path: inset(0 0 12vw 0);
    }
    header.shrink {
        background-image: none;
        background-color: var(--schwarz);
        border-bottom: 3px solid var(--gold);
        padding: 6px 24px 12px;
    }
    header.shrink::before { clip-path: none; }
    header .logo { flex: 0 0 auto; margin-right: 20px; }
    header nav   { flex: 1 1 auto; order: 0; padding-top: 0; }
    header nav ul { gap: 24px; }
    header nav ul a { font-size: 0.88rem; }
    header .contacts { flex: 0 0 auto; margin-left: 20px; order: 0; }
}

/* ==========================================================
   20b. DESKTOP WIDE ≥1101px: font 20px
   ========================================================== */
@media (min-width: 1101px) {
    html { font-size: 20px; }
    :root { --header-h: 11.5vw; }
}

/* ==========================================================
   20c. ≥1200px: Nav-Schrift größer
   ========================================================== */
@media (min-width: 1200px) {
    header nav ul a { font-size: 0.95rem; }
    header nav ul { gap: 28px; }
}

/* ==========================================================
   21. AB 1400px: Welle auf volle Viewport-Breite (100%)
       100% × 6.10% = 6.10vw  →  verlängert sich nur nach rechts
   ========================================================== */
@media (min-width: 1400px) {
    :root { --header-h: 6vw; }

    header {
        background-size: 100% auto;
        padding-bottom: 6vw;
    }
    header::before {
        clip-path: inset(0 0 6vw 0);
    }
    header.shrink {
        background-image: none;
        background-color: var(--schwarz);
        border-bottom: 3px solid var(--gold);
        padding-bottom: 12px;
    }
    header.shrink::before { clip-path: none; }
}

/* ==========================================================
   22. MOBILE  max 767px
       Logo links | Tel-Icon + Hamburger rechts
   ========================================================== */
@media (max-width: 767px) {

    :root { --header-h: 15.5vw; }
    html  { font-size: 18px; }

    header {
        flex-wrap: nowrap;
        align-items: center;
        /* Mobile 260% × 6.10% = 15.86vw */
        background-size: 260% auto;
        padding: 10px 14px 15.5vw;
        gap: 10px;
    }
    header::before {
        clip-path: inset(0 0 15.5vw 0);
    }
    header.shrink {
        background-image: none;
        background-color: var(--schwarz);
        border-bottom: 3px solid var(--gold);
        padding: 6px 14px 10px;
    }
    header.shrink::before { clip-path: none; }

    /* Logo: so klein wie nötig */
    header .logo { flex: 0 0 auto; margin-right: 0; }

    /* Nav: klappt aus – Hamburger steuert */
    header nav { flex: 0 0 auto; order: 3; }
    .menu-toggle { display: block; }

    /* Contacts: Tel-Icon neben Hamburger */
    header .contacts {
        flex: 0 0 auto;
        margin-left: auto;
        text-align: right;
        margin-right: 14px;
		transform:translateY(14px);
    }
    header .contacts span { display: none; }
    header .contacts a {
        font-size: 0;
        color: var(--gold);
    }
    header .contacts a::before {
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        content: '\f095';
        font-size: 1.3rem;
        color: var(--gold);
        display: block;line-height: 1em;
    }

    /* Mobile-Nav Dropdown */
    header nav ul {
        display: none;
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        background: var(--schwarz);
        flex-direction: column;
        padding: 16px 20px 24px;
        text-align: center;
        border-bottom: 3px solid var(--gold);
        gap: 0;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    }
    header nav ul.open { display: flex; }
    header nav ul li { padding: 10px 0; }
    header nav ul a { font-size: 1rem; text-transform: uppercase; }
    header nav ul .mobile-only { display: block; }

    /* Hero */
    .bild { height: 50vh; }

    /* Divider: 4:3 */
    .divider img { height: auto; aspect-ratio: 4 / 3; max-height: none; }

    /* Portrait: bis 90vw */
    .portrait-inner { grid-template-columns: 1fr; text-align: center; gap: 28px; }
    .portrait-round {
        width: min(90vw, 320px);
        height: min(90vw, 320px);
        margin: 0 auto;
    }

    /* Quicklinks: 95vw */
    .ql-wrap { gap: 24px; }
    .ql-circle {
        width: 95vw;
        height: 95vw;
        max-width: 400px;
        max-height: 400px;
    }

    /* Preise-Kopf: CTA unter dem Text */
    .preise-kopf      { display: block; }
    .preise-kopf-text { display: block; padding-right: 0; margin-bottom: 28px; }
    .preise-kopf-cta  { display: block; text-align: center; width: auto; white-space: normal; }

    /* CTA: abgerundeter Button, Text einzeilig */
    .cta-btn-wrap {
        display: inline-block;
        width: auto;
        height: auto;
        border-radius: 50px;
        box-shadow: 0 4px 18px rgba(253, 200, 46, 0.3);
    }
    .cta-btn-wrap a {
        position: static;
        display: inline-block;
        padding: 14px 32px;
        font-size: 0.95rem;
        line-height: 1.5;
    }
    /* Einzeilig auf Mobile: "Jetzt Termin vereinbaren" */
    .cta-line1::after { content: '\00a0'; }   /* non-breaking space als Trenner */
    .cta-line1, .cta-line2 { display: inline; }
    .cta-btn-wrap a strong { display: block; margin-top: 2px; }

    .rotate-cta, .rotate-cta-alt { transform: none !important; }
    .rotate-cta:hover, .rotate-cta-alt:hover { transform: scale(1.04) !important; }

    /* Logo etwas größer */
    header .logo img { height: clamp(52px, 11vw, 68px); }

    /* Welle kleiner: nur linke Hälfte, kein Abstand */
    header {
        background-size: 200% auto;
        padding-bottom: 12.2vw;  /* 200% × 6.10% */
        padding-left: 0;         /* bündig links */
    }
    header::before { clip-path: inset(0 0 11.8vw 0); }

    /* Preistabellen */
    .preise-tabellen,
    .preise-tabellen.einspaltig { grid-template-columns: 1fr; max-width: 100%; }
    .preise-spalte { padding: 20px 16px; }

    /* Anschrift */
    .anschrift-inner { grid-template-columns: 1fr; gap: 28px; }

    /* Kontakt */
    section.kontakt form { max-width: 100%; }

    /* Footer */
    .footer-inner { flex-direction: column; text-align: center; }
	
	/* Hintergrund-Icons: icon-friseur/fuesse sind fill="#FFFFFF" */
	section.preise.haarstudio::after {
	   bottom:auto;
		right: 5%;
		top: 2%;
	}
	section.preise.podologie::after {
	   bottom:auto;
		right: 5%;
		top: 2%;
	}
}

/* Sehr kleine Screens: Email+Tel untereinander */
@media (max-width: 520px) {
    .form-row { grid-template-columns: 1fr; }
    section.intro h1 { font-size: 1.2rem; }
}
/* Textseiten: Impressum, Datenschutz */
.textseite { background: var(--weiss); padding: 4rem 2rem 5rem; }
.textseite-inner { max-width: 760px; margin: 0 auto; }
.textseite h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: .5rem; }
.textseite h2 { font-size: 1rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin: 2rem 0 .5rem; }
.textseite p, .textseite li { font-size: .97rem; line-height: 1.75; margin-bottom: .8em; color: rgb(80,80,80); }
.textseite ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1em; }
.textseite a { color: var(--gold); }
.textseite hr { border: none; border-top: 1px solid #e5e0da; margin: 2rem 0; }
.kontakt-block { display: flex; flex-direction: column; gap: 6px; margin: 1rem 0 1.5rem; }
.kontakt-block a { color: var(--schwarz); font-weight: 700; }
.kontakt-block a i { color: var(--gold); margin-right: 8px; }