:root {
    --ink: #080807;
    --coal: #100f0d;
    --coal-2: #16140f;
    --paper: #f7f3ee;
    --soft: #e7dfd6;
    --muted: #9b9288;
    --line: rgba(247, 243, 238, 0.12);
    --line-strong: rgba(247, 243, 238, 0.22);
    --brass: #d4af6a;
    --brass-light: #f0d79c;
    --brass-dark: #8d7138;
    --shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
    --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.35);
    --radius: 14px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    --display: "Fraunces", Georgia, "Times New Roman", serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--paper);
    background: var(--ink);
    font-family: var(--font);
    line-height: 1.6;
    letter-spacing: -0.01em;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.lightbox-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

::selection {
    background: var(--brass);
    color: #16130d;
}

/* Fine film grain over everything for a tactile, premium texture */
.grain {
    position: fixed;
    inset: 0;
    z-index: 100;
    pointer-events: none;
    opacity: 0.05;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Header ---------- */
.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 82px;
    padding: 16px clamp(18px, 4vw, 56px);
    color: var(--paper);
    transition: background 400ms var(--ease), border-color 400ms var(--ease),
        min-height 400ms var(--ease), backdrop-filter 400ms var(--ease);
    border-bottom: 1px solid transparent;
}

.site-header.is-scrolled,
.site-header.is-open {
    min-height: 66px;
    background: rgba(8, 8, 7, 0.72);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(22px) saturate(140%);
    -webkit-backdrop-filter: blur(22px) saturate(140%);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    min-width: 0;
    font-family: var(--display);
    font-weight: 600;
    font-size: 1.12rem;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: opacity 300ms var(--ease);
}

.brand:hover {
    opacity: 0.82;
}

.brand-mark {
    width: 56px;
    height: 42px;
    object-fit: contain;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 3vw, 38px);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.site-nav a,
.text-link {
    position: relative;
    text-decoration: none;
    transition: color 240ms var(--ease);
}

.site-nav a:hover {
    color: var(--brass-light);
}

.site-nav a::after,
.text-link::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 1px;
    background: var(--brass);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 320ms var(--ease);
}

.site-nav a:hover::after,
.text-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-cta {
    padding: 9px 20px;
    color: #1a160d !important;
    background: linear-gradient(135deg, var(--brass-light), var(--brass) 55%, var(--brass-dark));
    border-radius: 999px;
    box-shadow: 0 8px 22px rgba(212, 175, 106, 0.28);
    transition: transform 320ms var(--ease), box-shadow 320ms var(--ease);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(212, 175, 106, 0.4);
}

.nav-cta::after {
    display: none !important;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 46px;
    height: 46px;
    padding: 0;
    color: var(--paper);
    background: rgba(247, 243, 238, 0.04);
    border: 1px solid var(--line);
    border-radius: 10px;
    transition: background 240ms var(--ease);
}

.nav-toggle:hover {
    background: rgba(247, 243, 238, 0.1);
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform 300ms var(--ease);
}

.site-header.is-open .nav-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
}

.site-header.is-open .nav-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    min-height: 100svh;
    padding: 124px clamp(18px, 5vw, 80px) 84px;
    isolation: isolate;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(120% 90% at 18% 30%, rgba(212, 175, 106, 0.16) 0%, rgba(8, 8, 7, 0) 46%),
        linear-gradient(90deg, rgba(8, 8, 7, 0.96) 0%, rgba(8, 8, 7, 0.74) 46%, rgba(8, 8, 7, 0.28) 100%),
        linear-gradient(0deg, rgba(8, 8, 7, 0.96) 0%, rgba(8, 8, 7, 0) 44%);
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: -2;
    overflow: hidden;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: contrast(1.1) brightness(0.8) saturate(0.96);
    transform: scale(1.06);
    animation: heroZoom 22s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    to {
        transform: scale(1.16);
    }
}

.hero-content {
    align-self: center;
    width: 100%;
    max-width: 760px;
    min-width: 0;
}

.hero-content > * {
    animation: rise 900ms var(--ease) backwards;
}

.eyebrow {
    animation-delay: 60ms;
}
#hero-title {
    animation-delay: 140ms;
}
.hero-copy {
    animation-delay: 240ms;
}
.hero-actions {
    animation-delay: 340ms;
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(26px);
    }
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 14px;
    color: var(--brass);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 26px;
    height: 1px;
    background: var(--brass);
    opacity: 0.7;
}

h1,
h2,
h3 {
    font-family: var(--display);
    font-weight: 500;
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1 {
    max-width: 11ch;
    margin: 0;
    font-size: clamp(3.4rem, 10vw, 9rem);
    font-weight: 500;
    line-height: 0.92;
    letter-spacing: -0.02em;
    text-transform: none;
}

h2 {
    margin: 0;
    font-size: clamp(2rem, 5vw, 4.2rem);
    line-height: 1.04;
    letter-spacing: -0.02em;
}

h3 {
    margin: 0;
    font-size: clamp(1.4rem, 2.3vw, 2.05rem);
    line-height: 1.1;
    letter-spacing: -0.015em;
}

.hero-copy {
    width: 100%;
    max-width: 620px;
    margin: 26px 0 0;
    color: rgba(247, 243, 238, 0.78);
    font-size: clamp(1.08rem, 2vw, 1.32rem);
    font-weight: 400;
}

.hero-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    width: min(100%, 460px);
    margin-top: 38px;
}

/* ---------- Buttons ---------- */
.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 100%;
    min-height: 52px;
    padding: 14px 26px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.96rem;
    letter-spacing: 0.005em;
    text-decoration: none;
    overflow: hidden;
    transition: transform 320ms var(--ease), box-shadow 320ms var(--ease),
        background 320ms var(--ease), border-color 320ms var(--ease), color 320ms var(--ease);
}

.button::after {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-120%) skewX(-18deg);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
    transition: transform 700ms var(--ease);
}

.button:hover::after {
    transform: translateX(120%) skewX(-18deg);
}

.button:hover {
    transform: translateY(-3px);
}

.button-primary {
    color: #1a160d;
    background: linear-gradient(135deg, var(--brass-light), var(--brass) 55%, var(--brass-dark));
    box-shadow: 0 14px 34px rgba(212, 175, 106, 0.32);
}

.button-primary:hover {
    box-shadow: 0 20px 46px rgba(212, 175, 106, 0.42);
}

.button-secondary {
    color: var(--paper);
    background: rgba(247, 243, 238, 0.06);
    border-color: var(--line-strong);
    backdrop-filter: blur(8px);
}

.button-secondary:hover {
    background: rgba(247, 243, 238, 0.12);
    border-color: var(--brass);
}

/* ---------- Social icons ---------- */
.social-links {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.social-links {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    color: rgba(247, 243, 238, 0.75);
    background: rgba(247, 243, 238, 0.06);
    border: 1px solid rgba(247, 243, 238, 0.14);
    border-radius: 999px;
    backdrop-filter: blur(8px);
    transition: transform 360ms var(--ease), background 360ms var(--ease),
        border-color 360ms var(--ease), color 360ms var(--ease), box-shadow 360ms var(--ease);
}

.social-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    transition: transform 360ms var(--ease);
}

.social-icon:hover svg {
    transform: scale(1.12);
}

.social-icon.fb:hover {
    color: #fff;
    background: #1877F2;
    border-color: #1877F2;
    box-shadow: 0 12px 32px rgba(24, 119, 242, 0.45);
    transform: translateY(-4px);
}

.social-icon.ig:hover {
    color: #fff;
    background: radial-gradient(circle at 30% 110%, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
    box-shadow: 0 12px 32px rgba(220, 39, 67, 0.42);
    transform: translateY(-4px);
}

/* ---------- Scroll cue ---------- */
.scroll-cue {
    position: absolute;
    right: clamp(18px, 5vw, 80px);
    bottom: 30px;
    color: rgba(247, 243, 238, 0.7);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-decoration: none;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transition: color 240ms var(--ease);
}

.scroll-cue:hover {
    color: var(--brass);
}

.scroll-cue::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 44px;
    margin-top: 12px;
    background: linear-gradient(var(--brass), transparent);
    animation: cue 1.8s ease-in-out infinite;
}

@keyframes cue {
    0%, 100% {
        transform: scaleY(0.5);
        transform-origin: top;
        opacity: 0.4;
    }
    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

/* ---------- Marquee ---------- */
.marquee {
    overflow: hidden;
    padding: 22px 0;
    background: var(--coal);
    border-block: 1px solid var(--line);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 38px;
    white-space: nowrap;
    will-change: transform;
    animation: marquee 34s linear infinite;
}

.marquee span {
    font-family: var(--display);
    font-size: clamp(1.3rem, 3vw, 2.1rem);
    color: rgba(247, 243, 238, 0.42);
}

.marquee-dot {
    color: var(--brass) !important;
    font-size: 0.7rem !important;
}

@keyframes marquee {
    to {
        transform: translateX(-50%);
    }
}

/* ---------- Sections ---------- */
.section-pad {
    padding: clamp(78px, 9vw, 140px) clamp(18px, 5vw, 80px);
}

.intro {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.72fr);
    gap: clamp(32px, 7vw, 96px);
    align-items: end;
    background: var(--paper);
    color: var(--ink);
}

.intro h2 {
    color: #1a1814;
}

.intro .eyebrow,
.services .eyebrow,
.gallery .eyebrow,
.contact .eyebrow {
    color: var(--brass-dark);
}

.intro .eyebrow::before,
.services .eyebrow::before,
.gallery .eyebrow::before,
.contact .eyebrow::before {
    background: var(--brass-dark);
}

.intro-text {
    max-width: 580px;
    margin: 0;
    color: #514b44;
    font-size: clamp(1.05rem, 1.7vw, 1.26rem);
}

.services,
.gallery {
    position: relative;
    background:
        radial-gradient(80% 60% at 80% 0%, rgba(212, 175, 106, 0.1), transparent 60%),
        linear-gradient(180deg, rgba(212, 175, 106, 0.05), rgba(212, 175, 106, 0)),
        var(--ink);
}

.section-head {
    max-width: 820px;
    margin-bottom: clamp(38px, 6vw, 68px);
}

/* ---------- Service cards ---------- */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 330px;
    padding: clamp(26px, 4vw, 44px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(247, 243, 238, 0.045), rgba(247, 243, 238, 0.015));
    overflow: hidden;
    transition: transform 420ms var(--ease), border-color 420ms var(--ease), background 420ms var(--ease);
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 80% at 50% 0%, rgba(212, 175, 106, 0.16), transparent 60%);
    opacity: 0;
    transition: opacity 420ms var(--ease);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 106, 0.45);
    background: linear-gradient(180deg, rgba(247, 243, 238, 0.06), rgba(247, 243, 238, 0.02));
}

.service-card:hover::before {
    opacity: 1;
}

.service-card h3,
.service-card p {
    position: relative;
}

.service-number {
    position: relative;
    display: block;
    margin-bottom: auto;
    padding-bottom: 56px;
    font-family: var(--display);
    color: var(--brass);
    font-size: 1.1rem;
    font-weight: 600;
}

.service-card p {
    margin: 18px 0 0;
    color: rgba(247, 243, 238, 0.68);
}

.service-card--herren {
    background: linear-gradient(180deg, rgba(8,8,7,0.52) 0%, rgba(8,8,7,0.76) 100%),
                url('images/herren.png') center/cover no-repeat;
}

.service-card--herren:hover {
    background: linear-gradient(180deg, rgba(8,8,7,0.38) 0%, rgba(8,8,7,0.62) 100%),
                url('images/herren.png') center/cover no-repeat;
}

.service-card--kinder {
    background: linear-gradient(180deg, rgba(8,8,7,0.52) 0%, rgba(8,8,7,0.76) 100%),
                url('images/Kinder.png') center/cover no-repeat;
}

.service-card--kinder:hover {
    background: linear-gradient(180deg, rgba(8,8,7,0.38) 0%, rgba(8,8,7,0.62) 100%),
                url('images/Kinder.png') center/cover no-repeat;
}

.service-card--farbe {
    background: linear-gradient(180deg, rgba(8,8,7,0.52) 0%, rgba(8,8,7,0.76) 100%),
                url('images/farbe und pflege.png') center/cover no-repeat;
}

.service-card--farbe:hover {
    background: linear-gradient(180deg, rgba(8,8,7,0.38) 0%, rgba(8,8,7,0.62) 100%),
                url('images/farbe und pflege.png') center/cover no-repeat;
}

/* ---------- Salon ---------- */
.salon {
    display: grid;
    grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1fr);
    gap: clamp(32px, 7vw, 98px);
    align-items: center;
    background: var(--coal);
}

.salon-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.salon-image::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    pointer-events: none;
}

.salon-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 800ms var(--ease);
}

.salon-image:hover img {
    transform: scale(1.05);
}

.salon-copy p:not(.eyebrow) {
    max-width: 610px;
    margin: 24px 0 0;
    color: rgba(247, 243, 238, 0.7);
    font-size: 1.1rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
    color: var(--brass);
    font-weight: 700;
}

/* ---------- Gallery ---------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: clamp(18px, 3vw, 30px);
}

.gallery-item {
    position: relative;
    margin: 0;
}

.gallery-card {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    min-height: clamp(500px, 42vw, 680px);
    padding: 0;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    overflow: hidden;
    cursor: zoom-in;
    appearance: none;
}

.gallery-card::before {
    content: "";
    position: absolute;
    inset: 14px;
    z-index: 2;
    border: 1px solid rgba(247, 243, 238, 0.24);
    border-radius: calc(var(--radius) - 6px);
    opacity: 0;
    transition: opacity 320ms var(--ease);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms var(--ease), filter 700ms var(--ease);
}

.gallery-card:hover::before,
.gallery-card:focus-visible::before {
    opacity: 1;
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
    transform: scale(1.055);
    filter: contrast(1.08) brightness(0.9);
}

.gallery-overlay {
    position: absolute;
    inset: auto 0 0;
    z-index: 3;
    display: grid;
    gap: 4px;
    padding: 76px clamp(22px, 3vw, 34px) clamp(22px, 3vw, 34px);
    color: var(--paper);
    text-align: left;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.84));
}

.gallery-overlay span {
    font-family: var(--display);
    font-size: clamp(1.55rem, 2.8vw, 2.7rem);
    line-height: 1;
}

.gallery-overlay small {
    color: var(--brass);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.gallery-item figcaption {
    margin-top: 12px;
    color: rgba(247, 243, 238, 0.66);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    grid-template-columns: minmax(48px, 0.1fr) minmax(0, 1fr) minmax(48px, 0.1fr);
    align-items: center;
    gap: clamp(10px, 2vw, 24px);
    padding: clamp(18px, 4vw, 54px);
    background:
        radial-gradient(80% 80% at 50% 0%, rgba(212, 175, 106, 0.16), transparent 55%),
        rgba(5, 5, 5, 0.94);
    backdrop-filter: blur(18px);
}

.gallery-lightbox[hidden] {
    display: none;
}

.lightbox-frame {
    margin: 0;
    min-width: 0;
}

.lightbox-frame img {
    width: 100%;
    max-height: 78vh;
    object-fit: contain;
    border: 1px solid rgba(247, 243, 238, 0.18);
    border-radius: var(--radius);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.72);
    background: #050505;
}

.lightbox-frame figcaption {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px 20px;
    margin-top: 16px;
    color: rgba(247, 243, 238, 0.72);
}

.lightbox-frame strong {
    color: var(--paper);
    font-family: var(--display);
    font-size: clamp(1.5rem, 2.5vw, 2.4rem);
    line-height: 1;
}

.lightbox-close,
.lightbox-arrow {
    display: inline-grid;
    place-items: center;
    color: var(--paper);
    background: rgba(247, 243, 238, 0.08);
    border: 1px solid var(--line);
    border-radius: 999px;
    cursor: pointer;
    transition: transform 180ms var(--ease), background 180ms var(--ease);
}

.lightbox-close:hover,
.lightbox-arrow:hover {
    transform: translateY(-2px);
    background: rgba(212, 175, 106, 0.2);
}

.lightbox-close {
    position: absolute;
    top: clamp(16px, 3vw, 32px);
    right: clamp(16px, 3vw, 32px);
    width: 46px;
    height: 46px;
    font-size: 2rem;
    line-height: 1;
}

.lightbox-arrow {
    width: clamp(44px, 5vw, 62px);
    height: clamp(44px, 5vw, 62px);
    font-size: clamp(2.1rem, 4vw, 3.4rem);
    line-height: 0;
}

/* ---------- Contact ---------- */
.contact {
    background: var(--paper);
    color: var(--ink);
}

.contact-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 36px;
    align-items: center;
    padding: clamp(32px, 5vw, 64px);
    color: var(--paper);
    background:
        radial-gradient(90% 130% at 0% 0%, rgba(212, 175, 106, 0.22), transparent 55%),
        linear-gradient(135deg, var(--coal-2), var(--ink));
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.contact-panel h2 {
    color: var(--paper);
}

.contact-panel p:not(.eyebrow) {
    max-width: 660px;
    margin: 20px 0 0;
    color: rgba(247, 243, 238, 0.74);
}

.contact .eyebrow,
.contact-panel .eyebrow {
    color: var(--brass);
}

.contact-panel .eyebrow::before {
    background: var(--brass);
}

.contact-details {
    list-style: none;
    display: grid;
    gap: 14px;
    margin: 28px 0 0;
    padding: 0;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.05rem;
    color: rgba(247, 243, 238, 0.9);
}

.contact-details a {
    text-decoration: none;
    transition: color 240ms var(--ease);
}

.contact-details a:hover {
    color: var(--brass-light);
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    color: var(--brass);
    background: rgba(212, 175, 106, 0.12);
    border: 1px solid rgba(212, 175, 106, 0.28);
    border-radius: 999px;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.hours {
    margin-top: 30px;
    padding-top: 26px;
    border-top: 1px solid var(--line);
}

.hours-title {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 16px;
    font-family: var(--display);
    font-size: 1.2rem;
    color: var(--paper);
}

.hours-list {
    list-style: none;
    display: grid;
    gap: 2px;
    margin: 0;
    padding: 0;
    max-width: 420px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.98rem;
    color: rgba(247, 243, 238, 0.82);
    transition: background 240ms var(--ease), color 240ms var(--ease);
}

.hours-list li span:first-child {
    color: rgba(247, 243, 238, 0.66);
}

.hours-list li.is-closed span:last-child {
    color: var(--muted);
}

.hours-list li.is-today {
    background: rgba(212, 175, 106, 0.14);
    color: var(--paper);
}

.hours-list li.is-today span:first-child {
    color: var(--brass-light);
    font-weight: 600;
}

.hours-list li.is-today span:last-child {
    color: var(--brass-light);
    font-weight: 600;
}

.contact-actions {
    justify-content: flex-end;
    align-self: start;
    min-width: min(360px, 100%);
    width: auto;
    margin-top: 0;
}

/* ---------- Footer ---------- */
.site-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 32px clamp(18px, 5vw, 80px);
    color: rgba(247, 243, 238, 0.58);
    background: #050504;
    border-top: 1px solid var(--line);
    font-size: 0.9rem;
}

.site-footer p {
    margin: 0;
}

.site-footer p:first-child {
    font-family: var(--display);
    font-size: 1.05rem;
    color: var(--paper);
}

/* ---------- Reveal animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(6px);
    transition: opacity 800ms var(--ease), transform 800ms var(--ease), filter 800ms var(--ease);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1040px) {
    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-panel {
        grid-template-columns: 1fr;
    }

    .contact-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 760px) {
    .site-header {
        min-height: 66px;
    }

    .brand span {
        font-size: 1rem;
    }

    .brand-mark {
        width: 48px;
        height: 36px;
    }

    .nav-toggle {
        display: flex;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 8px);
        right: 16px;
        left: 16px;
        display: grid;
        gap: 0;
        padding: 10px;
        background: rgba(8, 8, 7, 0.96);
        border: 1px solid var(--line);
        border-radius: 14px;
        box-shadow: var(--shadow);
        backdrop-filter: blur(18px);
        visibility: hidden;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 300ms var(--ease), transform 300ms var(--ease), visibility 300ms var(--ease);
    }

    .site-header.is-open .site-nav {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .site-nav a {
        padding: 14px 14px;
        border-radius: 8px;
    }

    .site-nav a:hover {
        background: rgba(247, 243, 238, 0.06);
    }

    .site-nav a::after {
        display: none;
    }

    .hero {
        min-height: 94svh;
        padding-top: 100px;
    }

    .hero::before {
        background:
            radial-gradient(120% 60% at 50% 12%, rgba(212, 175, 106, 0.14), transparent 50%),
            linear-gradient(180deg, rgba(8, 8, 7, 0.74) 0%, rgba(8, 8, 7, 0.9) 66%, rgba(8, 8, 7, 0.96) 100%),
            linear-gradient(90deg, rgba(8, 8, 7, 0.78), rgba(8, 8, 7, 0.3));
    }

    .hero-media img {
        object-position: 58% center;
    }

    h1 {
        max-width: min(342px, 100%);
        font-size: clamp(2.7rem, 12vw, 3.2rem);
    }

    .hero-copy {
        max-width: min(342px, 100%);
        font-size: 1.02rem;
    }

    .hero-content,
    .hero-actions {
        width: min(342px, 100%);
        max-width: 342px;
    }

    .intro,
    .salon {
        grid-template-columns: 1fr;
    }

    .service-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 260px;
    }

    .service-number {
        padding-bottom: 34px;
    }

    .gallery-grid {
        grid-auto-rows: auto;
    }

    .gallery-large {
        grid-row: span 1;
    }

    .gallery-card,
    .gallery-large .gallery-card {
        min-height: 360px;
        aspect-ratio: 4 / 5;
    }

    .gallery-overlay {
        padding: 62px 22px 22px;
    }

    .gallery-lightbox {
        grid-template-columns: 1fr;
        align-content: center;
        padding: 72px 16px 28px;
    }

    .lightbox-frame {
        order: 1;
    }

    .lightbox-prev,
    .lightbox-next {
        position: fixed;
        bottom: 18px;
        z-index: 2;
    }

    .lightbox-prev {
        left: 16px;
    }

    .lightbox-next {
        right: 16px;
    }

    .lightbox-frame img {
        max-height: 68vh;
    }

    .lightbox-frame figcaption {
        padding-right: 74px;
    }

    .button {
        width: 100%;
    }

    .site-footer {
        flex-direction: column;
        text-align: center;
    }
}

@media (min-width: 560px) and (max-width: 760px) {
    .hero-content,
    .hero-actions {
        width: 100%;
        max-width: 620px;
    }

    h1,
    .hero-copy {
        max-width: 620px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
        filter: none;
    }

    .hero-media img {
        transform: none;
    }
}
