/* ==========================================================================
   Salon Auguste – Friseursalon
   Gestaltungsidee: Ruhe. Die Farben sind aus dem Titelbild gezogen –
   Cremeweiß vom Himmel, Goldbeige vom Feld, Kupfer vom Haar. Dadurch
   wirkt die Seite wie eine Fortsetzung des Fotos, nicht wie ein Rahmen.
   ========================================================================== */

:root {
    --papier:    #FCF9F5;   /* Himmel im Bild */
    --papier-2:  #F2EAE0;   /* heller Feldton */
    --tinte:     #2E2822;
    --tinte-2:   #6E6156;
    --tinte-3:   #A0938A;
    --linie:     #E6DACB;
    --terra:     #B5714A;   /* Kupfer aus dem Haar */
    --terra-2:   #96593A;
    --gold:      #C2A472;   /* Goldbeige aus dem Feld */

    --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia,
             "Times New Roman", serif;
    --sans:  -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue",
             Helvetica, Arial, sans-serif;
}

body.ref-seite { background: var(--papier); color: var(--tinte); font-family: var(--sans); }

.sa-wrap { width: min(100% - 2.5rem, 1180px); margin-inline: auto; }
.sa-schmal { width: min(100% - 2.5rem, 780px); margin-inline: auto; }

.sa-kicker {
    font-family: var(--sans);
    font-size: .72rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    display: block;
    margin-bottom: 1.4rem;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 400; letter-spacing: -.01em; }

/* ------------------------------------------------------------- Kopf ----- */
.sa-kopf {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(251, 247, 242, .92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--linie);
}
.sa-kopf .sa-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.1rem 0;
}
.sa-logo {
    color: var(--tinte);
    font-family: var(--serif);
    font-size: 1.35rem;
    line-height: 1;
    letter-spacing: .02em;
}
.sa-logo small {
    display: block;
    font-family: var(--sans);
    font-size: .58rem;
    letter-spacing: .34em;
    text-transform: uppercase;
    color: var(--tinte-3);
    margin-top: .38rem;
}
.sa-nav { display: flex; align-items: center; gap: 2rem; font-size: .92rem; }
.sa-nav a { color: var(--tinte-2); transition: color .2s; }
.sa-nav a:hover { color: var(--terra); }
.sa-nav .sa-knopf { color: #fff; }
@media (max-width: 800px) { .sa-nav a:not(.sa-knopf) { display: none; } }

.sa-knopf {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .8rem 1.5rem;
    background: var(--terra);
    color: #fff;
    border: 0;
    border-radius: 2px;
    font-family: var(--sans);
    font-size: .88rem;
    font-weight: 600;
    letter-spacing: .04em;
    transition: background .22s, transform .18s;
}
.sa-knopf:hover { background: var(--terra-2); transform: translateY(-1px); }
.sa-knopf-2 {
    background: transparent;
    color: var(--tinte);
    border: 1px solid var(--tinte);
}
.sa-knopf-2:hover { background: var(--tinte); color: var(--papier); }

/* ------------------------------------------------------------- Hero ----- */
.sa-hero {
    position: relative;
    min-height: min(92svh, 820px);
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}

/* Das Foto füllt den ganzen Bereich */
.sa-hero-foto { position: absolute; inset: 0; z-index: -2; }
.sa-hero-foto img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: 62% 42%;   /* Gesicht bleibt frei */
}
/* Sanfter Verlauf nur über der linken Hälfte, damit der Text trägt und
   das Gesicht rechts unangetastet bleibt */
.sa-hero-foto::after {
    content: '';
    position: absolute; inset: 0;
    background:
        linear-gradient(94deg,
            rgba(252, 249, 245, .985) 0%,
            rgba(252, 249, 245, .965) 30%,
            rgba(252, 249, 245, .88)  42%,
            rgba(252, 249, 245, .45)  52%,
            rgba(252, 249, 245, .08)  62%,
            transparent 70%),
        linear-gradient(180deg, rgba(252,249,245,.35) 0%, transparent 22%);
}

.sa-hero-inhalt { position: relative; z-index: 1; }
.sa-hero-text-spalte { max-width: 27rem; padding: clamp(3rem, 7vw, 5.5rem) 0; }

.sa-hero h1 {
    font-size: clamp(2.6rem, 5.6vw, 4.4rem);
    line-height: 1.03;
    margin-bottom: 1.4rem;
}
.sa-hero h1 em { font-style: italic; color: var(--terra); }

.sa-hero-text {
    font-size: 1.08rem;
    line-height: 1.75;
    color: var(--tinte-2);
    max-width: 34ch;
    margin-bottom: 2rem;
}
.sa-hero-knoepfe { display: flex; flex-wrap: wrap; gap: .8rem; }

/* Schnellbuchung direkt im Hero */
.sa-hero-schnell {
    margin-top: 2.2rem;
    padding-top: 1.6rem;
    border-top: 1px solid var(--linie);
}
.sa-hero-schnell-titel {
    font-size: .72rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--tinte-3);
    margin-bottom: .9rem;
}
.sa-hero-zeiten { display: flex; flex-wrap: wrap; gap: .5rem; }
.sa-hero-zeit {
    padding: .58rem 1.05rem;
    background: rgba(252, 249, 245, .8);
    border: 1px solid var(--linie);
    border-radius: 2px;
    color: var(--tinte);
    font-size: .92rem;
    font-weight: 600;
    transition: all .2s;
}
.sa-hero-zeit:hover { border-color: var(--terra); color: var(--terra); }
.sa-hero-zeit small {
    display: block;
    font-size: .68rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--tinte-3);
    font-weight: 500;
    margin-bottom: .1rem;
}

.sa-hero-belege {
    display: flex;
    flex-wrap: wrap;
    gap: 1.8rem;
    margin-top: 2.4rem;
    padding-top: 1.6rem;
    border-top: 1px solid var(--linie);
}
.sa-beleg b {
    display: block;
    font-family: var(--serif);
    font-size: 1.7rem;
    line-height: 1;
    color: var(--terra);
}
.sa-beleg span {
    font-size: .74rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--tinte-3);
    margin-top: .4rem;
    display: block;
}

/* Arbeiten-Galerie */
.sa-galerie { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.sa-galerie figure { margin: 0; overflow: hidden; border-radius: 3px; }
.sa-galerie img {
    width: 100%; aspect-ratio: 1; object-fit: cover;
    border-radius: 3px; display: block;
    transition: transform .5s var(--ease, cubic-bezier(.22,.8,.32,1));
}
.sa-galerie figure:hover img { transform: scale(1.03); }
.sa-galerie figcaption {
    font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
    color: var(--tinte-3); margin-top: .9rem;
}

/* Breites Bild als Trenner */
.sa-band { position: relative; height: clamp(280px, 36vw, 440px); overflow: hidden; }
.sa-band img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 34%; }
.sa-band-text {
    position: absolute; inset: 0;
    display: grid; place-items: center;
    text-align: center; padding: 2rem;
    background: linear-gradient(180deg, rgba(46,40,34,.18), rgba(46,40,34,.5));
}
.sa-band-text blockquote {
    margin: 0; max-width: 24ch;
    font-family: var(--serif);
    font-size: clamp(1.5rem, 3.4vw, 2.4rem);
    line-height: 1.25; color: #fff;
}
.sa-band-text cite {
    display: block; font-family: var(--sans); font-style: normal;
    font-size: .74rem; letter-spacing: .2em; text-transform: uppercase;
    color: rgba(255,255,255,.8); margin-top: 1.2rem;
}

/* --------------------------------------------------------- Abschnitte --- */
.sa-abschnitt { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.sa-abschnitt-hell { background: var(--papier-2); }
.sa-kopfzeile { max-width: 56ch; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.sa-kopfzeile h2 { font-size: clamp(2rem, 4.6vw, 3rem); line-height: 1.12; margin-bottom: 1rem; }
.sa-kopfzeile p { color: var(--tinte-2); font-size: 1.05rem; line-height: 1.7; }
.sa-mitte { text-align: center; }
.sa-mitte .sa-kopfzeile { margin-inline: auto; }

/* ------------------------------------------------------------ Preise ---- */
.sa-preise { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.sa-preisspalte h3 {
    font-size: 1.3rem;
    padding-bottom: .9rem;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid var(--linie);
}
.sa-preiszeile {
    display: flex;
    align-items: baseline;
    gap: .8rem;
    padding: .7rem 0;
    font-size: .96rem;
}
.sa-preiszeile span:first-child { color: var(--tinte-2); }
.sa-preiszeile .sa-punkte {
    flex: 1;
    border-bottom: 1px dotted var(--linie);
    min-width: 1rem;
}
.sa-preiszeile b { font-family: var(--serif); font-size: 1.05rem; white-space: nowrap; }

/* ----------------------------------------------------------- Buchung ---- */
.sa-buchung {
    background: #fff;
    border: 1px solid var(--linie);
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 30px 70px -45px rgba(42, 35, 32, .5);
}
.sa-buchung-kopf {
    padding: 1.5rem 1.8rem;
    border-bottom: 1px solid var(--linie);
    background: var(--papier);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.sa-buchung-kopf h3 { font-size: 1.3rem; }
.sa-schritte-anzeige { display: flex; gap: .45rem; align-items: center; font-size: .78rem; color: var(--tinte-3); }
.sa-schritte-anzeige i {
    width: 26px; height: 3px; border-radius: 2px; background: var(--linie); display: block;
    transition: background .3s;
}
.sa-schritte-anzeige i.aktiv { background: var(--terra); }

.sa-buchung-koerper { padding: 1.8rem; }
.sa-schritt-titel {
    font-size: .74rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--tinte-3);
    margin-bottom: 1.1rem;
}

.sa-wahl { display: grid; gap: .7rem; }
.sa-wahl-karte {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.3rem;
    border: 1px solid var(--linie);
    border-radius: 2px;
    background: #fff;
    text-align: left;
    width: 100%;
    transition: border-color .2s, background .2s, transform .18s;
}
.sa-wahl-karte:hover { border-color: var(--terra); transform: translateX(3px); }
.sa-wahl-karte.gewaehlt { border-color: var(--terra); background: rgba(196, 112, 79, .06); }
.sa-wahl-karte b { display: block; font-family: var(--serif); font-size: 1.1rem; }
.sa-wahl-karte span { font-size: .85rem; color: var(--tinte-3); }
.sa-wahl-karte .sa-wahl-preis { margin-left: auto; font-family: var(--serif); font-size: 1.05rem; white-space: nowrap; }

.sa-stylistinnen { display: grid; grid-template-columns: repeat(3, 1fr); gap: .7rem; }
.sa-stylistin {
    padding: 1.2rem .8rem;
    border: 1px solid var(--linie);
    border-radius: 2px;
    background: #fff;
    text-align: center;
    transition: border-color .2s, background .2s;
}
.sa-stylistin:hover, .sa-stylistin.gewaehlt { border-color: var(--terra); background: rgba(196, 112, 79, .06); }
.sa-stylistin .sa-kreis {
    width: 46px; height: 46px; border-radius: 50%;
    margin: 0 auto .7rem;
    background: linear-gradient(150deg, #E8DACB, #C9AE97);
    display: grid; place-items: center;
    font-family: var(--serif); font-size: 1.1rem; color: var(--tinte);
}
.sa-stylistin b { display: block; font-size: .95rem; font-weight: 600; }
.sa-stylistin span { font-size: .78rem; color: var(--tinte-3); }

.sa-tage { display: grid; grid-template-columns: repeat(5, 1fr); gap: .55rem; margin-bottom: 1.5rem; }
.sa-tag {
    padding: .9rem .4rem;
    border: 1px solid var(--linie);
    border-radius: 2px;
    background: #fff;
    text-align: center;
    transition: all .2s;
}
.sa-tag span { display: block; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--tinte-3); }
.sa-tag b { display: block; font-family: var(--serif); font-size: 1.35rem; margin-top: .2rem; }
.sa-tag:hover:not(:disabled) { border-color: var(--terra); }
.sa-tag.gewaehlt { background: var(--terra); border-color: var(--terra); color: #fff; }
.sa-tag.gewaehlt span, .sa-tag.gewaehlt b { color: #fff; }
.sa-tag:disabled { opacity: .35; cursor: not-allowed; }

.sa-zeiten { display: grid; grid-template-columns: repeat(auto-fill, minmax(88px, 1fr)); gap: .5rem; }
.sa-zeit {
    padding: .75rem .4rem;
    border: 1px solid var(--linie);
    border-radius: 2px;
    background: #fff;
    font-size: .93rem;
    font-weight: 600;
    text-align: center;
    transition: all .2s;
}
.sa-zeit:hover:not(:disabled) { border-color: var(--terra); color: var(--terra); }
.sa-zeit:disabled { opacity: .3; text-decoration: line-through; cursor: not-allowed; }

.sa-zusammenfassung {
    background: var(--papier);
    border-left: 2px solid var(--terra);
    padding: 1.3rem 1.5rem;
    margin-bottom: 1.4rem;
}
.sa-zusammenfassung-zeile {
    display: flex; justify-content: space-between; gap: 1rem;
    padding: .45rem 0; font-size: .95rem;
}
.sa-zusammenfassung-zeile span:first-child { color: var(--tinte-3); }
.sa-zusammenfassung-zeile b { font-weight: 600; text-align: right; }
.sa-zusammenfassung-summe {
    display: flex; justify-content: space-between;
    margin-top: .7rem; padding-top: .9rem;
    border-top: 1px solid var(--linie);
    font-family: var(--serif); font-size: 1.25rem;
}

.sa-fertig { text-align: center; padding: 1.5rem 0; }
.sa-fertig-haken {
    width: 64px; height: 64px; border-radius: 50%;
    background: rgba(196, 112, 79, .12);
    color: var(--terra);
    display: grid; place-items: center;
    margin: 0 auto 1.3rem;
    font-size: 1.7rem;
}
.sa-fertig h3 { font-size: 1.6rem; margin-bottom: .7rem; }
.sa-fertig p { color: var(--tinte-2); font-size: .98rem; line-height: 1.65; max-width: 42ch; margin: 0 auto 1.5rem; }

.sa-zurueck {
    background: none; border: 0; padding: .5rem 0;
    color: var(--tinte-3); font-size: .88rem;
    margin-top: 1.2rem;
}
.sa-zurueck:hover { color: var(--terra); }

/* -------------------------------------------------------- Team, Fuß ---- */
.sa-team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.sa-team-karte { text-align: center; }
.sa-team-bild {
    aspect-ratio: 3 / 4;
    border-radius: 200px 200px 3px 3px;
    background: linear-gradient(165deg, #E8DACB, #D3BCA6);
    margin-bottom: 1.2rem;
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
}
.sa-team-bild img { width: 100%; height: 100%; object-fit: cover; }
.sa-team-initial {
    font-family: var(--serif);
    font-size: clamp(2.6rem, 6vw, 3.6rem);
    color: rgba(42, 35, 32, .3);
}
.sa-team-karte h3 { font-size: 1.25rem; margin-bottom: .25rem; }
.sa-team-karte span { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--tinte-3); }

.sa-fuss {
    background: var(--tinte);
    color: var(--papier);
    padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
}
.sa-fuss-gitter { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; }
.sa-fuss h4 {
    font-family: var(--sans);
    font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1rem; font-weight: 600;
}
.sa-fuss p, .sa-fuss li { color: rgba(251, 247, 242, .72); font-size: .93rem; line-height: 1.8; }
.sa-fuss .sa-logo { color: var(--papier); margin-bottom: 1rem; }
.sa-fuss .sa-logo small { color: rgba(251, 247, 242, .5); }
.sa-fuss-unten {
    border-top: 1px solid rgba(251, 247, 242, .14);
    padding-top: 1.5rem;
    font-size: .82rem;
    color: rgba(251, 247, 242, .45);
    display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
}

/* ------------------------------------------------------ Reaktionsfähig -- */
@media (max-width: 900px) {
    .sa-preise, .sa-team { grid-template-columns: 1fr; gap: 2rem; }
    .sa-galerie { grid-template-columns: 1fr 1fr; }
    .sa-galerie figure:last-child { display: none; }

    /* Auf schmalen Geräten steht das Bild oben, der Text darunter –
       ein Verlauf über das halbe Bild wäre dort unlesbar. */
    .sa-hero { min-height: 0; display: block; }
    .sa-hero-foto { position: relative; inset: auto; height: 58svh; max-height: 460px; }
    .sa-hero-foto img { object-position: 58% 32%; }
    .sa-hero-foto::after {
        background: linear-gradient(180deg, transparent 55%, rgba(252,249,245,.96) 99%);
    }
    .sa-hero-text-spalte { max-width: none; padding: 0 0 3rem; margin-top: -2rem; }
    .sa-hero-inhalt { position: relative; }
    .sa-fuss-gitter { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 620px) {
    .sa-tage { grid-template-columns: repeat(3, 1fr); }
    .sa-stylistinnen { grid-template-columns: 1fr; }
    .sa-hero-schild { left: 0; }
    .sa-hero-belege { gap: 1.4rem; }
}

/* Zweispalter für den Abschnitt „Ihr Besuch" */
.sa-zweispalter {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}
@media (max-width: 900px) { .sa-zweispalter { grid-template-columns: 1fr; gap: 2.5rem; } }
