:root {
  --black: #050504;
  --black-soft: #090807;
  --panel: #0f0d0b;
  --panel-2: #14110d;
  --cream: #f2ece3;
  --muted: #b1a597;
  --gold: #d6a64f;
  --gold-light: #f2d39b;
  --gold-dark: #7a4a16;
  --line: rgba(240, 212, 159, .13);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --shadow-soft: 0 25px 80px rgba(0,0,0,.28);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --header-h: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body { margin: 0; position: relative; isolation: isolate; background: var(--black); color: var(--cream); font-family: var(--sans); font-size: 16px; line-height: 1.65; overflow-x: hidden; }
body.menu-open, body.transitioning { overflow: hidden; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
[hidden] { display: none !important; }

.skip-link { position: fixed; left: 16px; top: -80px; z-index: 999; padding: 12px 18px; color: #000; background: var(--gold-light); transition: top .2s; }
.skip-link:focus { top: 12px; }
.site-backdrop { position: fixed; inset: 0; z-index: -2; pointer-events: none; background: radial-gradient(circle at 50% -10%, rgba(255,255,255,.04), transparent 40%), url("site-backdrop-4k.svg") center center / cover no-repeat; transform: scale(1.02); }
body::before { content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none; background: linear-gradient(180deg, rgba(0,0,0,.38), rgba(0,0,0,.12) 35%, rgba(0,0,0,.45)); }
.noise { position: fixed; inset: 0; z-index: 30; pointer-events: none; opacity: .018; mix-blend-mode: soft-light; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E"); }

.site-header { height: var(--header-h); padding: 0 clamp(20px, 4vw, 70px); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 38px; position: fixed; inset: 0 0 auto; z-index: 80; background: linear-gradient(180deg, rgba(5,5,4,.92), rgba(5,5,4,.72) 68%, rgba(5,5,4,.16)); border-bottom: 1px solid rgba(255,255,255,.05); backdrop-filter: blur(16px) saturate(110%); }
.brand { border: 0; background: none; padding: 0; display: flex; align-items: center; gap: 14px; cursor: pointer; text-align: left; }
.brand-logo { width: clamp(120px, 12vw, 170px); height: auto; filter: drop-shadow(0 10px 28px rgba(0,0,0,.3)); }
.footer-logo { width: min(280px, 100%); height: auto; filter: drop-shadow(0 12px 28px rgba(0,0,0,.25)); }
.brand-copy { display: flex; flex-direction: column; letter-spacing: .12em; line-height: 1; }
.brand-copy strong { font: 600 17px/1 var(--serif); letter-spacing: .22em; }
.brand-copy small { margin-top: 6px; color: var(--gold); font-size: 8px; letter-spacing: .35em; }
.footer-brand { display:flex; align-items:center; }
.desktop-nav { justify-self: center; display: flex; align-items: center; gap: clamp(14px, 2vw, 32px); }
.desktop-nav button, .footer-links button, .footer-links a { border: 0; background: none; padding: 10px 0; color: #c7bcae; font-size: 12px; letter-spacing: .13em; text-transform: uppercase; cursor: pointer; position: relative; }
.desktop-nav button::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 4px; height: 1px; background: var(--gold); transition: right .25s ease; }
.desktop-nav button:hover, .desktop-nav button.is-current { color: #fff; }
.desktop-nav button:hover::after, .desktop-nav button.is-current::after { right: 0; }
.header-cta { border: 1px solid rgba(232,195,124,.42); background: rgba(214,166,79,.06); color: var(--gold-light); padding: 12px 18px; font-size: 11px; letter-spacing: .13em; text-transform: uppercase; cursor: pointer; transition: .25s; }
.header-cta:hover { background: var(--gold); border-color: var(--gold); color: #0b0907; }
.menu-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); background: transparent; cursor: pointer; position: relative; }
.menu-toggle span { position: absolute; left: 11px; right: 11px; height: 1px; background: var(--cream); transition: .3s; }
.menu-toggle span:first-child { top: 16px; }
.menu-toggle span:last-child { top: 24px; }
.menu-open .menu-toggle span:first-child { top: 20px; transform: rotate(45deg); }
.menu-open .menu-toggle span:last-child { top: 20px; transform: rotate(-45deg); }

.mobile-menu { position: fixed; inset: 0; z-index: 70; background: rgba(5,5,4,.96); backdrop-filter: blur(20px); transform: translateY(-105%); transition: transform .8s cubic-bezier(.22,1,.36,1); padding-top: var(--header-h); }
.menu-open .mobile-menu { transform: translateY(0); }
.mobile-menu-inner { min-height: calc(100vh - var(--header-h)); display: flex; flex-direction: column; padding: 9vh 8vw 5vh; }
.mobile-menu-inner > button { border: 0; border-bottom: 1px solid var(--line); background: none; text-align: left; padding: 14px 0; font: 500 clamp(28px,7vw,48px)/1 var(--serif); cursor: pointer; }
.mobile-menu-footer { margin-top: auto; color: var(--gold); font-size: 10px; letter-spacing: .28em; }

.page-curtain { position: fixed; inset: 0; z-index: 100; background: linear-gradient(180deg, rgba(5,5,4,.18), rgba(12,10,8,.82) 28%, rgba(20,15,10,.94) 55%, rgba(10,9,8,.35)); backdrop-filter: blur(12px); transform: translateY(-101%); display: grid; place-items: center; pointer-events: none; }
.page-curtain::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 18%, rgba(242,211,155,.12), transparent 28%), linear-gradient(90deg, transparent, rgba(242,211,155,.09), transparent); }
.page-curtain span { color: transparent; -webkit-text-stroke: 1px rgba(240,207,136,.16); text-shadow: 0 0 30px rgba(240,207,136,.06); font: 600 min(20vw,240px)/1 var(--serif); letter-spacing: .06em; }
.page-curtain.is-entering { animation: curtainIn .64s cubic-bezier(.22,1,.36,1) forwards; }
.page-curtain.is-leaving { animation: curtainOut .86s cubic-bezier(.22,1,.36,1) forwards; }
@keyframes curtainIn { from { transform: translateY(-101%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes curtainOut { from { transform: translateY(0); opacity: 1; } to { transform: translateY(101%); opacity: .75; } }

.page-stage { min-height: 100vh; }
.page { min-height: 100vh; padding-top: var(--header-h); opacity: 0; transform: translateY(18px); }
.page.is-active { opacity: 1; transform: translateY(0); }
.page.page-enter { animation: pageReveal .92s cubic-bezier(.16,1,.3,1) both; }
@keyframes pageReveal { from { opacity: 0; transform: translateY(42px) scale(.992); filter: blur(6px); } to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); } }

.content-shell { width: min(1240px, calc(100% - 48px)); margin-inline: auto; }
.section-pad { padding-top: clamp(95px, 12vw, 170px); padding-bottom: clamp(95px, 12vw, 170px); }
.section-pad-small { padding-top: clamp(60px, 7vw, 100px); padding-bottom: clamp(75px, 9vw, 130px); }
.eyebrow { margin: 0 0 18px; color: var(--gold); font-size: 10px; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: .95; }
h1 em, h2 em { color: var(--gold-light); font-weight: 400; }
h2 { margin-bottom: 26px; font-size: clamp(44px, 6vw, 82px); letter-spacing: -.025em; }
h3 { font-size: clamp(28px, 3vw, 42px); }
p { color: #b7ab9c; }
.section-heading { max-width: 760px; }
.section-heading > p:last-child { max-width: 660px; font-size: 18px; }

.hero { min-height: calc(100vh - var(--header-h)); display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; position: relative; isolation: isolate; overflow: hidden; padding: clamp(30px,5vw,80px) clamp(24px,7vw,110px) 70px; background: linear-gradient(90deg, rgba(5,5,4,.9) 0 38%, rgba(5,5,4,.58) 58%, rgba(5,5,4,.84) 100%), url("bg-lounge-4k.svg") center center / cover no-repeat; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -2; background: radial-gradient(circle at 50% 50%, rgba(255,255,255,.03), transparent 50%), linear-gradient(90deg, transparent 0 49.7%, rgba(230,192,121,.045) 50%, transparent 50.3%); }
.hero-logo-wrap { width: min(52vw, 680px); position: relative; justify-self: center; }
.hero-logo { width: 100%; filter: drop-shadow(0 26px 60px rgba(0,0,0,.36)); }
.hero-copy { max-width: 610px; position: relative; z-index: 2; }
.hero-copy h1 { margin-bottom: 28px; font-size: clamp(58px, 7vw, 110px); letter-spacing: -.045em; }
.hero-copy > p:not(.eyebrow) { max-width: 570px; font-size: clamp(16px, 1.4vw, 19px); }
.button-row { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 35px; }
.btn { min-height: 50px; border: 1px solid transparent; padding: 14px 22px; display: inline-flex; align-items: center; justify-content: center; background: transparent; color: #fff; font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; cursor: pointer; transition: transform .35s cubic-bezier(.22,1,.36,1), background .35s ease, color .35s ease, border .35s ease, box-shadow .35s ease; border-radius: 999px; }
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: linear-gradient(135deg, #f0cf88, #b47627); color: #100b06; box-shadow: 0 12px 35px rgba(183,116,39,.16); }
.btn-gold:hover { background: linear-gradient(135deg, #f8dfa6, #c98d39); }
.btn-ghost { border-color: rgba(255,255,255,.18); color: #ddd3c7; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); }
.btn-outline { border-color: rgba(214,166,79,.5); color: var(--gold-light); }
.btn-outline:hover { background: var(--gold); color: #110b06; }
.hero-scroll { position: absolute; right: 28px; bottom: 32px; writing-mode: vertical-rl; color: #887c6e; font-size: 9px; letter-spacing: .25em; text-transform: uppercase; display: flex; align-items: center; gap: 12px; }
.hero-scroll span { width: 1px; height: 50px; background: linear-gradient(var(--gold), transparent); }
.hero-scroll { animation: heroScrollFloat 2.8s ease-in-out infinite; }
@keyframes heroScrollFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(7px); } }
.hero-orbit { position: absolute; border: 1px solid rgba(226,184,106,.12); border-radius: 50%; z-index: -1; }
.orbit-one { width: 520px; height: 520px; right: -250px; top: 6%; }
.orbit-two { width: 760px; height: 760px; left: -520px; bottom: -480px; }

.home-intro { text-align: center; }
.home-intro .section-heading { margin: 0 auto 70px; }
.world-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; text-align: left; }
.world-card { min-height: 580px; padding: clamp(28px,4vw,55px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(145deg, rgba(16,13,10,.93), rgba(8,7,6,.84)); box-shadow: var(--shadow-soft); position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; backdrop-filter: blur(8px); }
.world-card::after { content: ""; position: absolute; inset: auto -10% -35% 30%; height: 68%; background: radial-gradient(circle, rgba(218,165,70,.13), transparent 64%); }
.world-card > * { position: relative; z-index: 2; }
.world-card h3 { margin-bottom: 18px; font-size: clamp(39px,4.2vw,62px); }
.world-card p:not(.eyebrow) { max-width: 530px; }
.world-number { position: absolute; top: 28px; right: 32px; color: rgba(240,207,136,.28); font: 500 18px/1 var(--serif); }
.world-art { position: absolute; inset: 0; opacity: .7; }
.line-art-tattoo::before, .line-art-tattoo::after { content: ""; position: absolute; border: 1px solid rgba(234,193,115,.28); border-radius: 48% 52% 40% 60%; transform: rotate(22deg); }
.line-art-tattoo::before { width: 310px; height: 440px; top: -85px; left: 40px; }
.line-art-tattoo::after { width: 200px; height: 330px; top: -55px; left: 120px; }
.line-art-tattoo span { position: absolute; width: 240px; height: 240px; top: 34px; left: 92px; border: 1px solid rgba(234,193,115,.16); border-radius: 50%; }
.line-art-nails::before, .line-art-nails::after, .line-art-nails span { content: ""; position: absolute; border: 1px solid rgba(242,205,139,.25); border-radius: 50% 50% 45% 45% / 70% 70% 30% 30%; transform: rotate(33deg); }
.line-art-nails::before { width: 120px; height: 300px; top: -40px; right: 160px; }
.line-art-nails::after { width: 105px; height: 270px; top: 35px; right: 72px; }
.line-art-nails span { width: 95px; height: 250px; top: -5px; right: 270px; }
.text-link { width: fit-content; margin-top: 18px; padding: 8px 0; border: 0; border-bottom: 1px solid rgba(233,194,121,.35); background: transparent; color: var(--gold-light); font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; cursor: pointer; }
.text-link span { margin-left: 8px; }

.statement-band { overflow: hidden; border-block: 1px solid var(--line); background: linear-gradient(180deg, rgba(11,9,7,.82), rgba(8,7,6,.9)); padding: 22px 0; backdrop-filter: blur(4px); }
.statement-track { width: max-content; display: flex; align-items: center; gap: 35px; animation: marquee 28s linear infinite; }
.statement-track span { color: transparent; -webkit-text-stroke: 1px rgba(231,192,117,.45); font: 500 40px/1 var(--serif); letter-spacing: .08em; }
.statement-track i { color: var(--gold); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

.lounge-teaser { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 8vw, 120px); align-items: center; }
.lounge-visual { min-height: 620px; position: relative; display: grid; place-items: center; background: linear-gradient(180deg, rgba(10,9,7,.5), rgba(7,6,5,.75)), url("bg-lounge-4k.svg") center center / cover no-repeat; border: 1px solid var(--line); border-radius: var(--radius-xl); box-shadow: var(--shadow-soft); overflow: hidden; }
.arch { position: absolute; border: 1px solid rgba(234,191,111,.33); border-radius: 48% 48% 0 0; bottom: 0; }
.arch-back { width: 72%; height: 83%; left: 14%; opacity: .5; }
.arch-front { width: 56%; height: 68%; left: 22%; display: grid; place-items: center; background: linear-gradient(180deg, rgba(221,160,58,.05), rgba(255,255,255,.01)); box-shadow: inset 0 0 80px rgba(211,146,45,.06); }
.arch-front span { color: transparent; -webkit-text-stroke: 1px rgba(242,203,129,.42); font: 500 230px/1 var(--serif); }
.lounge-label { position: absolute; bottom: 26px; left: 0; right: 0; text-align: center; color: var(--gold); font-size: 9px; letter-spacing: .3em; }
.lounge-copy > p:not(.eyebrow) { font-size: 18px; }
.feature-list { margin: 36px 0; border-top: 1px solid var(--line); }
.feature-list > div { padding: 22px 0; display: grid; grid-template-columns: 50px 1fr; column-gap: 14px; border-bottom: 1px solid var(--line); }
.feature-list span { grid-row: span 2; color: var(--gold); font: 500 16px/1.4 var(--serif); }
.feature-list strong { font: 500 23px/1.2 var(--serif); }
.feature-list p { margin: 5px 0 0; font-size: 13px; }

.home-cta { padding-inline: 24px; text-align: center; background: radial-gradient(circle at 50% 40%, rgba(192,119,31,.17), transparent 35%), #090705; border-top: 1px solid var(--line); }
.home-cta h2 { font-size: clamp(52px, 8vw, 112px); }
.home-cta > p:not(.eyebrow) { max-width: 620px; margin: 0 auto 28px; font-size: 18px; }

.subhero { min-height: calc(100vh - var(--header-h)); position: relative; overflow: hidden; display: flex; align-items: center; padding: clamp(70px, 10vw, 150px) clamp(24px, 9vw, 150px); border-bottom: 1px solid var(--line); }
.subhero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,5,4,.99) 0 45%, rgba(5,5,4,.55) 72%, rgba(5,5,4,.85)); z-index: -1; }
.subhero-tattoo { background: linear-gradient(90deg, rgba(5,5,4,.93) 0 42%, rgba(5,5,4,.44) 72%, rgba(5,5,4,.84)), url("bg-ink-4k.svg") center center / cover no-repeat; }
.subhero-nails { background: linear-gradient(90deg, rgba(5,5,4,.9) 0 42%, rgba(5,5,4,.36) 72%, rgba(5,5,4,.72)), url("bg-nails-4k.svg") center center / cover no-repeat; }
.subhero-lounge { justify-content: center; text-align: center; background: linear-gradient(180deg, rgba(5,5,4,.72), rgba(5,5,4,.72)), url("bg-lounge-4k.svg") center center / cover no-repeat; }
.subhero-copy { max-width: 760px; position: relative; z-index: 2; }
.subhero-copy.centered { margin-inline: auto; }
.subhero-copy h1 { margin-bottom: 30px; font-size: clamp(68px, 9vw, 145px); letter-spacing: -.045em; }
.subhero-copy p:not(.eyebrow) { max-width: 640px; margin-bottom: 32px; font-size: 18px; }
.centered p:not(.eyebrow) { margin-inline: auto; }
.vertical-word { position: absolute; right: clamp(20px,4vw,70px); color: transparent; -webkit-text-stroke: 1px rgba(238,198,123,.13); font: 600 clamp(90px,18vw,260px)/1 var(--serif); transform: rotate(90deg); letter-spacing: .08em; }
.subhero-art { position: absolute; inset: 0 0 0 45%; overflow: hidden; }
.ink-circle { position: absolute; width: 560px; height: 560px; right: 6%; top: 50%; transform: translateY(-50%); border-radius: 50%; border: 1px solid rgba(231,187,106,.22); box-shadow: inset 0 0 80px rgba(200,128,36,.06), 0 0 0 70px rgba(214,166,79,.025), 0 0 0 140px rgba(214,166,79,.018); }
.needle-line { position: absolute; width: 2px; height: 70%; top: 15%; right: 32%; background: linear-gradient(transparent, rgba(241,206,140,.65), transparent); transform-origin: center; }
.n1 { transform: rotate(18deg); }.n2 { transform: rotate(42deg); right: 43%; }.n3 { transform: rotate(66deg); right: 55%; }
.nail-orbits span { position: absolute; border: 1px solid rgba(242,205,139,.26); border-radius: 50% 50% 42% 42% / 65% 65% 35% 35%; width: 150px; height: 390px; top: 15%; transform: rotate(25deg); }
.nail-orbits span:nth-child(1){ right: 13%; }.nail-orbits span:nth-child(2){ right: 30%; top: 23%; transform: rotate(8deg); }.nail-orbits span:nth-child(3){ right: 46%; top: 9%; transform: rotate(-10deg); }
.nail-orbits i { position: absolute; width: 500px; height: 500px; border: 1px solid rgba(242,205,139,.12); border-radius: 50%; right: 5%; top: 16%; }
.lounge-monogram { position: absolute; color: transparent; -webkit-text-stroke: 1px rgba(239,201,128,.14); font: 500 min(60vw,700px)/1 var(--serif); }

.intro-split { display: grid; grid-template-columns: 1fr .9fr; gap: clamp(50px,8vw,120px); align-items: start; }
.rich-copy p { font-size: 18px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card { min-height: 300px; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-md); background: linear-gradient(150deg, rgba(16,13,10,.9), rgba(8,7,5,.8)); box-shadow: var(--shadow-soft); backdrop-filter: blur(6px); }
.service-card span { color: var(--gold); font: 500 14px/1 var(--serif); }
.service-card h3 { margin: 65px 0 15px; font-size: 31px; }
.service-card p { font-size: 14px; }

.process-section { background: #0a0806; border-block: 1px solid var(--line); }
.process-line { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 60px; }
.process-step { min-height: 280px; padding: 30px; border-top: 1px solid rgba(214,166,79,.4); border-right: 1px solid var(--line); position: relative; }
.process-step:last-child { border-right: 0; }
.process-step::before { content: ""; position: absolute; width: 9px; height: 9px; border-radius: 50%; background: var(--gold); top: -5px; left: 30px; box-shadow: 0 0 0 7px rgba(214,166,79,.08); }
.process-step b { color: rgba(240,207,136,.28); font: 500 54px/1 var(--serif); }
.process-step h3 { margin: 42px 0 12px; font-size: 32px; }
.process-step p { font-size: 13px; }

.featured-gallery .section-heading { margin-bottom: 55px; }
.masonry-preview { display: grid; grid-template-columns: 1fr 1.2fr 1fr; grid-auto-rows: 250px; gap: 14px; margin-bottom: 35px; }
.gallery-art { margin: 0; min-height: 240px; position: relative; overflow: hidden; background-color: #15100c; border: 1px solid rgba(227,186,108,.12); border-radius: var(--radius-md); transition: transform .45s cubic-bezier(.22,1,.36,1), opacity .35s ease; box-shadow: var(--shadow-soft); }
.gallery-art::before, .gallery-art::after { content: ""; position: absolute; }
.gallery-art::after { inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.85)); }
.gallery-art figcaption { position: absolute; z-index: 2; left: 22px; bottom: 18px; color: #f5eee5; font: 500 24px/1 var(--serif); }
.gallery-art figcaption span { display: block; margin-bottom: 6px; color: var(--gold); font: 600 8px/1 var(--sans); letter-spacing: .24em; text-transform: uppercase; }
.gallery-art.tall { grid-row: span 2; }
.gallery-art.wide { grid-column: span 2; }
.gallery-art.large { grid-column: span 2; grid-row: span 2; }
.art-tattoo-1 { background: radial-gradient(circle at 25% 25%, rgba(218,169,83,.18), transparent 25%), linear-gradient(130deg,#1b130d,#060504); }
.art-tattoo-1::before { width: 58%; height: 76%; left: 17%; top: 3%; border: 1px solid rgba(236,197,122,.35); border-radius: 44% 56% 65% 35%; transform: rotate(25deg); box-shadow: 30px 25px 0 -29px rgba(236,197,122,.35); }
.art-tattoo-2 { background: linear-gradient(145deg,#171717,#070707); }
.art-tattoo-2::before { width: 270px; height: 270px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; top: 14%; left: 20%; box-shadow: inset 20px 0 0 rgba(255,255,255,.02), 35px 10px 0 -34px rgba(240,207,136,.7); }
.art-tattoo-3 { background: radial-gradient(circle at 65% 35%,rgba(207,138,40,.18),transparent 30%),#0b0907; }
.art-tattoo-3::before { content: "ODYSSEY"; color: transparent; -webkit-text-stroke: 1px rgba(241,205,137,.27); font: 500 65px/1 var(--serif); transform: rotate(-22deg); left: -25px; top: 90px; }
.art-tattoo-4 { background: linear-gradient(120deg,#090807,#1c120b); }
.art-tattoo-4::before { width: 70%; height: 1px; top: 50%; left: 15%; background: var(--gold); box-shadow: 0 -40px rgba(214,166,79,.25), 0 40px rgba(214,166,79,.25); transform: rotate(-8deg); }
.art-nails-1 { background: radial-gradient(circle at 50% 35%,rgba(238,213,171,.25),transparent 35%),linear-gradient(145deg,#1d1712,#090706); }
.art-nails-1::before { width: 95px; height: 250px; border: 1px solid rgba(244,214,159,.5); border-radius: 50% 50% 40% 40% / 70% 70% 30% 30%; left: 36%; top: 4%; transform: rotate(20deg); }
.art-nails-2 { background: linear-gradient(135deg,#050505,#21150b); }
.art-nails-2::before { width: 130px; height: 300px; border-radius: 50% 50% 43% 43% / 68% 68% 32% 32%; background: linear-gradient(130deg,#050505 48%,#c18a38 49% 52%,#0d0a08 53%); left: 30%; top: 5%; transform: rotate(-12deg); box-shadow: 90px 35px 0 -25px #0b0907; }
.art-nails-3 { background: linear-gradient(120deg,#201710,#090706); }
.art-nails-3::before { width: 72%; height: 70%; left: 12%; top: 3%; border: 1px solid rgba(244,216,164,.45); border-radius: 50% 50% 45% 45% / 70% 70% 30% 30%; transform: rotate(73deg); }
.art-nails-4 { background: radial-gradient(circle at 35% 45%,rgba(209,148,56,.24),transparent 30%),#0b0907; }
.art-nails-4::before { inset: 14%; border: 1px solid rgba(239,202,132,.32); border-radius: 50%; box-shadow: inset 0 0 0 35px rgba(0,0,0,.12),0 0 0 25px rgba(214,166,79,.04); }

.price-menu { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.menu-column { padding: clamp(30px,4vw,55px); border: 1px solid var(--line); background: #0b0907; }
.menu-column h3 { margin-bottom: 40px; font-size: 48px; }
.menu-item { display: flex; align-items: baseline; gap: 14px; padding: 18px 0; border-bottom: 1px solid rgba(214,166,79,.12); }
.menu-item span { font: 500 20px/1 var(--serif); }
.menu-item i { flex: 1; border-bottom: 1px dotted rgba(214,166,79,.28); }
.menu-item strong { color: var(--gold-light); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }

.nail-values { background: linear-gradient(150deg,#080706,#100b07); border-block: 1px solid var(--line); }
.value-orbit { margin-top: 60px; display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.value-orbit article { min-height: 300px; padding: 30px; border: 1px solid var(--line); border-radius: 180px 180px 0 0; text-align: center; display: flex; flex-direction: column; justify-content: flex-end; background: linear-gradient(180deg,rgba(223,178,94,.05),transparent 55%); }
.value-orbit b { margin-bottom: auto; color: var(--gold); font: 500 14px/1 var(--serif); }
.value-orbit h3 { font-size: 29px; }
.value-orbit p { font-size: 13px; }

.subhero-lounge .subhero-copy { max-width: 900px; }
.lounge-story { display: grid; grid-template-columns: 100px 1fr .9fr; gap: 50px; }
.story-number { color: rgba(240,207,136,.25); font: 500 82px/1 var(--serif); }
.atmosphere-grid { display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: repeat(2, 330px); gap: 16px; }
.atmosphere-card { border: 1px solid var(--line); padding: 28px; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; }
.atmosphere-card.big { grid-row: span 2; }
.atmosphere-card > * { position: relative; z-index: 2; }
.atmosphere-card h3 { margin-bottom: 0; }
.atmosphere-art { position: absolute; inset: 0; background: #0d0a08; }
.atmosphere-art::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg,transparent 30%,rgba(0,0,0,.88)); }
.art-lounge-1 { background: radial-gradient(circle at 50% 45%,rgba(201,128,36,.22),transparent 35%),linear-gradient(145deg,#160f09,#050504); }
.art-lounge-1::before { content:""; position:absolute; width:56%; height:78%; left:22%; bottom:0; border:1px solid rgba(236,194,116,.3); border-radius:50% 50% 0 0; }
.art-lounge-2 { background: linear-gradient(145deg,#18120e,#080605); }
.art-lounge-2::before { content:"INK"; position:absolute; right:-5%; top:8%; color:transparent; -webkit-text-stroke:1px rgba(236,194,116,.18); font:500 150px/1 var(--serif); }
.art-lounge-3 { background: linear-gradient(145deg,#13100d,#060504); }
.art-lounge-3::before { content:"NAILS"; position:absolute; left:-4%; top:8%; color:transparent; -webkit-text-stroke:1px rgba(236,194,116,.18); font:500 90px/1 var(--serif); }
.values-band { background:#0a0806; border-block:1px solid var(--line); }
.values-list { margin-top:55px; display:grid; grid-template-columns:repeat(2,1fr); }
.values-list article { padding:34px; display:grid; grid-template-columns:55px 1fr; border-top:1px solid var(--line); }
.values-list article:nth-child(odd) { border-right:1px solid var(--line); }
.values-list span { grid-row:span 2; color:var(--gold); font:500 15px/1.5 var(--serif); }
.values-list h3 { margin-bottom:8px; font-size:34px; }
.values-list p { margin:0; font-size:14px; }

.simple-hero { min-height: 58vh; padding: clamp(100px,14vw,190px) 24px 80px; text-align: center; display:flex; flex-direction:column; align-items:center; justify-content:center; background: linear-gradient(180deg, rgba(5,5,4,.74), rgba(5,5,4,.82)), url("bg-lounge-4k.svg") center center / cover no-repeat; border-bottom:1px solid var(--line); }
.simple-hero h1 { margin-bottom:24px; font-size:clamp(70px,10vw,150px); }
.simple-hero > p:last-child { max-width:690px; font-size:18px; }
.simple-hero.compact { min-height:38vh; }
.filter-bar { display:flex; justify-content:center; gap:8px; margin-bottom:40px; }
.filter-bar button { border:1px solid var(--line); background:#0b0907; color:#ae9f8f; padding:12px 20px; font-size:10px; letter-spacing:.15em; text-transform:uppercase; cursor:pointer; }
.filter-bar button.is-active { background:var(--gold); border-color:var(--gold); color:#0b0804; }
.gallery-grid { display:grid; grid-template-columns:repeat(4,1fr); grid-auto-rows:250px; gap:12px; }
.gallery-grid .gallery-art.is-hidden { opacity:0; transform:scale(.96); display:none; }
.gallery-note { margin-top:35px; border-left:2px solid var(--gold); padding:4px 0 4px 20px; display:flex; gap:20px; }
.gallery-note span { color:var(--gold); font-size:10px; letter-spacing:.18em; text-transform:uppercase; }
.gallery-note p { margin:0; font-size:13px; }

.artist-grid { display:grid; gap:24px; }
.artist-card { min-height:600px; display:grid; grid-template-columns:1fr 1fr; border:1px solid var(--line); border-radius: var(--radius-lg); background:rgba(11,9,7,.86); box-shadow: var(--shadow-soft); overflow:hidden; backdrop-filter: blur(6px); }
.artist-card:nth-child(even) .artist-image { order:2; }
.artist-image { display:grid; place-items:center; position:relative; overflow:hidden; background:radial-gradient(circle at 50% 50%,rgba(194,123,36,.23),transparent 37%),#080605; }
.artist-image::before { content:""; position:absolute; width:60%; height:70%; border:1px solid rgba(239,198,120,.28); border-radius:50% 50% 0 0; bottom:0; }
.artist-image span { position:relative; color:transparent; -webkit-text-stroke:1px rgba(243,206,136,.38); font:500 clamp(90px,13vw,190px)/1 var(--serif); }
.nails-artist .artist-image::before { border-radius:50% 50% 40% 40% / 70% 70% 30% 30%; height:75%; width:35%; transform:rotate(22deg); bottom:8%; }
.artist-copy { padding:clamp(35px,6vw,80px); display:flex; flex-direction:column; justify-content:center; }
.artist-copy h2 { font-size:clamp(48px,6vw,78px); }
.artist-copy > p:not(.eyebrow) { font-size:17px; }
.artist-tags { display:flex; flex-wrap:wrap; gap:8px; margin:24px 0; }
.artist-tags span { border:1px solid var(--line); padding:7px 12px; color:#c6b8a7; font-size:9px; letter-spacing:.12em; text-transform:uppercase; }

.booking-hero { min-height:50vh; }
.booking-layout { display:grid; grid-template-columns:.65fr 1.35fr; gap:50px; align-items:start; }
.booking-aside { position:sticky; top:120px; border:1px solid var(--line); border-radius: var(--radius-lg); padding:34px; background:rgba(11,9,7,.88); box-shadow: var(--shadow-soft); backdrop-filter: blur(8px); }
.booking-aside ol { list-style:none; padding:0; margin:30px 0; }
.booking-aside li { display:grid; grid-template-columns:42px 1fr; gap:12px; padding:22px 0; border-top:1px solid var(--line); }
.booking-aside li span { color:var(--gold); font:500 14px/1.4 var(--serif); }
.booking-aside strong { font:500 23px/1.2 var(--serif); }
.booking-aside p { margin:5px 0 0; font-size:12px; }
.booking-contact { padding-top:24px; border-top:1px solid var(--line); display:flex; flex-direction:column; gap:8px; }
.booking-contact span { color:#8d8275; font-size:10px; letter-spacing:.12em; text-transform:uppercase; }
.booking-contact a { color:var(--gold-light); font-size:13px; }
.booking-form { border-top:1px solid var(--line); }
.form-section { display:grid; grid-template-columns:60px 1fr; gap:20px; padding:38px 0; border-bottom:1px solid var(--line); }
.form-index { color:var(--gold); font:500 15px/1.5 var(--serif); }
.form-label, label > span { display:block; margin-bottom:10px; color:#d9cdbf; font-size:11px; letter-spacing:.08em; text-transform:uppercase; }
.choice-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:14px; }
.choice-card { margin:0; }
.choice-card input { position:absolute; opacity:0; }
.choice-card span { min-height:145px; padding:26px; border:1px solid var(--line); background:#0a0806; display:flex; flex-direction:column; justify-content:center; cursor:pointer; transition:.25s; }
.choice-card b { color:#f0e6da; font:500 28px/1 var(--serif); }
.choice-card small { margin-top:10px; color:#94887b; font-size:10px; letter-spacing:.1em; text-transform:uppercase; }
.choice-card input:checked + span { border-color:var(--gold); background:linear-gradient(145deg,rgba(214,166,79,.16),#0a0806); box-shadow:inset 0 0 0 1px rgba(214,166,79,.15); }
.form-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:22px; }
.booking-form input, .booking-form textarea, .booking-form select { width:100%; border:0; border-bottom:1px solid rgba(227,191,121,.25); border-radius:0; background:transparent; color:#f3eadf; padding:12px 0; outline:none; }
.booking-form select { color:#c9bdaf; }
.booking-form select option { background:#100d0a; }
.booking-form input:focus, .booking-form textarea:focus, .booking-form select:focus { border-color:var(--gold); }
.booking-form textarea { resize:vertical; }
.privacy-check { display:flex; gap:12px; margin:20px 0 28px; }
.privacy-check input { width:16px; flex:0 0 16px; accent-color:var(--gold); }
.privacy-check span { margin:0; color:#8f8478; font-size:11px; line-height:1.5; letter-spacing:0; text-transform:none; }
.form-hint { margin:12px 0 0; font-size:11px; }
.submit-btn { min-width:240px; }

.contact-grid { display:grid; grid-template-columns:.9fr 1.1fr; gap:24px; }
.contact-panel { border:1px solid var(--line); border-radius: var(--radius-lg); background:rgba(11,9,7,.88); padding:clamp(32px,5vw,70px); box-shadow: var(--shadow-soft); backdrop-filter: blur(8px); }
.contact-panel h2 { font-size:clamp(48px,6vw,76px); }
.contact-list { margin-top:35px; }
.contact-list div { display:grid; grid-template-columns:120px 1fr; gap:20px; padding:18px 0; border-top:1px solid var(--line); }
.contact-list span { color:var(--gold); font-size:9px; letter-spacing:.15em; text-transform:uppercase; }
.contact-list p { margin:0; }
.map-placeholder { min-height:620px; position:relative; overflow:hidden; display:grid; place-items:center; text-align:center; border:1px solid var(--line); border-radius: var(--radius-lg); background:linear-gradient(145deg,rgba(16,13,10,.85),rgba(6,5,4,.78)); box-shadow: var(--shadow-soft); }
.map-lines { position:absolute; inset:-20%; background-image:linear-gradient(rgba(214,166,79,.08) 1px,transparent 1px),linear-gradient(90deg,rgba(214,166,79,.08) 1px,transparent 1px); background-size:60px 60px; transform:rotate(22deg); }
.map-lines::before, .map-lines::after { content:""; position:absolute; height:9px; background:#090705; border-block:1px solid rgba(214,166,79,.13); transform:rotate(-30deg); }
.map-lines::before { width:120%; top:42%; left:-10%; }.map-lines::after { width:90%; top:62%; left:10%; transform:rotate(42deg); }
.map-pin { position:relative; z-index:2; width:86px; height:86px; display:grid; place-items:center; border:1px solid var(--gold); border-radius:50% 50% 50% 0; transform:rotate(-45deg); background:#0b0805; box-shadow:0 0 0 14px rgba(214,166,79,.05); }
.map-pin span { transform:rotate(45deg); color:var(--gold-light); font:500 38px/1 var(--serif); }
.map-placeholder > p { position:absolute; z-index:2; bottom:45px; max-width:400px; padding:0 25px; }
.map-placeholder strong { color:#eee4d8; font:500 25px/1.4 var(--serif); }
.faq-section { display:grid; grid-template-columns:.7fr 1.3fr; gap:70px; }
.accordion { border-top:1px solid var(--line); }
.faq-item { border-bottom:1px solid var(--line); }
.faq-item button { width:100%; padding:25px 0; border:0; background:none; display:flex; justify-content:space-between; text-align:left; cursor:pointer; font:500 25px/1.2 var(--serif); }
.faq-item button span { color:var(--gold); transition:.25s; }
.faq-item > div { max-height:0; overflow:hidden; transition:max-height .35s ease; }
.faq-item > div p { padding:0 45px 24px 0; margin:0; font-size:14px; }
.faq-item.is-open button span { transform:rotate(45deg); }
.faq-item.is-open > div { max-height:180px; }

.legal-copy { max-width:850px; }
.legal-copy h2 { margin-top:45px; font-size:35px; }
.legal-warning { margin-top:45px; padding:20px; border:1px solid rgba(214,166,79,.3); color:#d8c8b5; }

.site-footer { padding:60px clamp(24px,5vw,70px) 35px; display:grid; grid-template-columns:1fr 1fr auto; gap:30px; align-items:center; border-top:1px solid var(--line); background:#050504; }
.footer-brand { display:flex; align-items:center; gap:14px; }
.site-footer > p { margin:0; text-align:center; font:400 23px/1.2 var(--serif); }
.footer-links { display:flex; gap:18px; }
.site-footer > small { grid-column:1/-1; padding-top:22px; border-top:1px solid rgba(255,255,255,.05); color:#6f675f; text-align:center; font-size:10px; letter-spacing:.12em; }

.request-dialog { width:min(680px,calc(100% - 30px)); border:1px solid var(--line); border-radius: var(--radius-lg); background:rgba(13,10,8,.94); color:var(--cream); padding:clamp(28px,5vw,55px); box-shadow:0 30px 100px rgba(0,0,0,.7); backdrop-filter: blur(14px); }
.request-dialog::backdrop { background:rgba(0,0,0,.82); backdrop-filter:blur(6px); }
.request-dialog h2 { font-size:48px; }
.request-dialog textarea { width:100%; margin:15px 0 22px; padding:14px; border:1px solid var(--line); background:#070605; color:#d5c9bb; resize:vertical; }
.dialog-close { position:absolute; right:18px; top:12px; border:0; background:none; color:var(--gold-light); font-size:30px; cursor:pointer; }

.reveal { opacity:0; transform:translateY(32px); transition:opacity .95s ease, transform 1.05s cubic-bezier(.16,1,.3,1); }
.reveal.is-visible { opacity:1; transform:translateY(0); }
.delay-1 { transition-delay:.1s; }.delay-2 { transition-delay:.2s; }.delay-3 { transition-delay:.3s; }

@media (max-width: 1120px) {
  .desktop-nav { display:none; }
  .site-header { grid-template-columns:1fr auto auto; }
  .menu-toggle { display:block; }
  .hero { grid-template-columns:1fr; text-align:center; padding-top:25px; background-position: 62% center; }
  .hero-logo-wrap { width:min(72vw,620px); margin-bottom:-7vw; }
  .hero-copy { margin-inline:auto; }
  .hero-copy > p:not(.eyebrow) { margin-inline:auto; }
  .button-row { justify-content:center; }
  .hero::before { display:none; }
  .brand-logo { width: 132px; }
  .lounge-story { grid-template-columns:70px 1fr; }
  .lounge-story .rich-copy { grid-column:2; }
  .gallery-grid { grid-template-columns:repeat(3,1fr); }
  .booking-layout { grid-template-columns:1fr; }
  .booking-aside { position:static; }
}

@media (max-width: 840px) {
  :root { --header-h:72px; }
  .header-cta { display:none; }
  .content-shell { width:min(100% - 30px,1240px); }
  .hero { min-height:auto; padding:35px 18px 90px; background-position: 64% center; }
  .hero-logo-wrap { width:min(92vw,610px); margin-bottom:-45px; }
  .hero-copy h1 { font-size:clamp(50px,15vw,82px); }
  .hero-scroll { display:none; }
  .world-grid, .lounge-teaser, .intro-split, .price-menu, .contact-grid, .faq-section { grid-template-columns:1fr; }
  .world-card { min-height:520px; }
  .lounge-visual { min-height:520px; }
  .service-grid { grid-template-columns:repeat(2,1fr); }
  .process-line { grid-template-columns:repeat(2,1fr); }
  .process-step:nth-child(2) { border-right:0; }
  .masonry-preview, .gallery-grid { grid-template-columns:repeat(2,1fr); }
  .gallery-art.large { grid-column:span 2; }
  .value-orbit { grid-template-columns:repeat(2,1fr); }
  .atmosphere-grid { grid-template-columns:1fr 1fr; grid-template-rows:460px 300px; }
  .atmosphere-card.big { grid-column:span 2; grid-row:auto; }
  .artist-card { grid-template-columns:1fr; }
  .artist-card:nth-child(even) .artist-image { order:0; }
  .artist-image { min-height:500px; }
  .site-footer { grid-template-columns:1fr; text-align:center; }
  .footer-brand, .footer-links { justify-content:center; }
  .site-footer > p { text-align:center; }
}

@media (max-width: 580px) {
  .site-header { padding-inline:15px; gap:12px; }
  .brand-logo { width: 114px; }
  .brand-mark { width:38px; height:38px; }
  .brand-copy strong { font-size:14px; }
  .hero-logo-wrap { margin-top:0; margin-bottom:-18px; }
  .hero-copy h1 { font-size:49px; }
  .hero-copy > p:not(.eyebrow), .section-heading > p:last-child, .rich-copy p { font-size:15px; }
  h2 { font-size:43px; }
  .section-pad { padding-top:80px; padding-bottom:80px; }
  .button-row .btn, .home-cta .btn { width:100%; }
  .world-card { min-height:480px; padding:28px 24px; }
  .line-art-tattoo::before { width:230px; height:330px; left:20px; }
  .line-art-nails::before { right:100px; }
  .subhero { min-height:78vh; padding:80px 20px; align-items:flex-end; }
  .subhero-copy h1 { font-size:57px; }
  .subhero-copy p:not(.eyebrow) { font-size:15px; }
  .subhero-art { inset:0; opacity:.55; }
  .vertical-word { top:15%; right:-20%; }
  .service-grid, .process-line, .form-grid, .choice-grid, .value-orbit, .values-list { grid-template-columns:1fr; }
  .service-card { min-height:260px; }
  .process-step { border-right:0; }
  .masonry-preview, .gallery-grid { grid-template-columns:1fr; grid-auto-rows:280px; }
  .gallery-art.wide, .gallery-art.large { grid-column:auto; }
  .gallery-art.tall, .gallery-art.large { grid-row:auto; }
  .atmosphere-grid { grid-template-columns:1fr; grid-template-rows:400px 280px 280px; }
  .atmosphere-card.big { grid-column:auto; }
  .lounge-story { grid-template-columns:1fr; gap:24px; }
  .lounge-story .rich-copy { grid-column:auto; }
  .story-number { font-size:50px; }
  .values-list article:nth-child(odd) { border-right:0; }
  .filter-bar { flex-wrap:wrap; }
  .simple-hero h1 { font-size:58px; }
  .artist-image { min-height:360px; }
  .artist-copy { padding:35px 24px; }
  .form-section { grid-template-columns:1fr; }
  .form-index { margin-bottom:-8px; }
  .contact-list div { grid-template-columns:1fr; gap:5px; }
  .map-placeholder { min-height:480px; }
  .faq-section { gap:35px; }
  .faq-item button { font-size:21px; }
  .site-footer { padding-inline:18px; }
}

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


/* Sichere Online-Anfrage */
.honeypot { position:absolute !important; left:-10000px !important; width:1px !important; height:1px !important; overflow:hidden !important; }
.file-field { display:block; margin-top:24px; padding:20px; border:1px dashed rgba(240,212,159,.22); border-radius:18px; background:rgba(255,255,255,.018); }
.file-field > span { display:block; margin-bottom:10px; color:#d9cfc3; }
.file-field input { border:0; padding:0; }
.file-field small { display:block; margin-top:9px; color:#817568; font-size:11px; }
.submit-btn[disabled] { opacity:.55; cursor:wait; transform:none; }
.form-hint.is-error { color:#e8a39b; }
.form-hint.is-success { color:#9dcea5; }
.artist-image.has-custom-image { background-position:center; background-size:cover; background-repeat:no-repeat; }
.artist-image.has-custom-image::before, .artist-image.has-custom-image > span { display:none; }
.gallery-art.has-custom-image { background-position:center; background-size:cover; background-repeat:no-repeat; }
.inline-link{display:inline;padding:0;border:0;border-bottom:1px solid rgba(242,211,155,.45);background:transparent;color:var(--gold-light);cursor:pointer;font:inherit}

/* Odyssey Lounge V4 – hochwertigere, OOC-inspirierte Oberflächen */
:root { --topbar-h: 34px; }
.lounge-topbar {
  height: var(--topbar-h); position: fixed; inset: 0 0 auto; z-index: 90;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px;
  padding: 0 clamp(20px,4vw,70px); border-bottom: 1px solid rgba(240,212,159,.12);
  background: #030405; color: #a99d8f; font-size: 9px; letter-spacing: .09em; text-transform: uppercase;
}
.lounge-topbar > :last-child { justify-self: end; }
.lounge-topbar a { transition: color .25s ease; }
.lounge-topbar a:hover { color: var(--gold-light); }
.lounge-topbar span span, .lounge-topbar a span, .lounge-topbar b { margin-right: 7px; color: var(--gold); font-weight: 700; letter-spacing: .15em; }
.site-header { top: var(--topbar-h); }
.mobile-menu { padding-top: calc(var(--header-h) + var(--topbar-h)); }
.mobile-menu-inner { min-height: calc(100vh - var(--header-h) - var(--topbar-h)); }
.page { padding-top: calc(var(--header-h) + var(--topbar-h)); }
.hero, .subhero { min-height: calc(100vh - var(--header-h) - var(--topbar-h)); }

.site-header::after { content:""; position:absolute; left:0; right:0; bottom:-1px; height:1px; background:linear-gradient(90deg,transparent,rgba(214,166,79,.42),transparent); opacity:.65; }
.brand-copy strong { font-family: var(--sans); font-size: 14px; font-weight: 700; letter-spacing: .16em; }
.desktop-nav button { font-weight: 600; }
.header-cta { border-radius: 3px; box-shadow: inset 0 0 0 1px rgba(0,0,0,.18); }

.page-stage { background: linear-gradient(180deg, rgba(7,10,16,.18), rgba(5,5,4,.1) 45%, rgba(6,8,13,.18)); }
.world-card, .service-card, .menu-column, .contact-panel, .booking-aside, .artist-card, .gallery-art, .atmosphere-card {
  position: relative;
}
.world-card::before, .service-card::before, .menu-column::before, .contact-panel::before, .booking-aside::before, .artist-card::before {
  content:""; position:absolute; inset:0 0 auto; height:2px;
  background: linear-gradient(90deg, transparent 0, #8d541b 16%, #f2d39b 50%, #8d541b 84%, transparent 100%);
  opacity:.72; pointer-events:none;
}
.world-card, .service-card {
  border-radius: 17px; border-color: rgba(240,212,159,.15);
  background: linear-gradient(145deg, rgba(10,11,14,.98), rgba(4,5,7,.96));
  box-shadow: 0 22px 65px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.02);
  transition: transform .45s cubic-bezier(.22,1,.36,1), border-color .35s ease, box-shadow .35s ease;
}
.world-card:hover, .service-card:hover { transform: translateY(-6px); border-color: rgba(240,212,159,.28); box-shadow:0 30px 90px rgba(0,0,0,.42), 0 0 42px rgba(183,116,39,.07); }
.service-card { min-height: 286px; padding: 30px; overflow: hidden; }
.service-card > span {
  width: 58px; height: 58px; display:grid; place-items:center; border-radius:50%;
  color:#100b06; font-family:var(--sans); font-size:12px; font-weight:800;
  background:linear-gradient(135deg,#8f541b,#f3d58f 72%,#fff1bd); box-shadow:0 10px 28px rgba(199,132,43,.18);
}
.service-card h3 { margin: 48px 0 14px; font-family:var(--sans); font-size: 25px; font-weight: 700; line-height:1.15; letter-spacing:-.02em; }
.service-card p { color:#aeb2bc; line-height:1.7; }
.world-number { width: 38px; height:38px; display:grid; place-items:center; border:1px solid rgba(240,212,159,.2); border-radius:50%; top:24px; right:24px; background:rgba(0,0,0,.28); }
.world-card h3 { font-family:var(--sans); font-weight:700; letter-spacing:-.03em; line-height:1.04; }
.world-card p:not(.eyebrow) { color:#aeb2bc; }

.statement-band { box-shadow: inset 0 1px rgba(255,255,255,.015), inset 0 -1px rgba(255,255,255,.015); }
.lounge-visual, .map-placeholder { border-radius: 18px; }
.contact-panel, .booking-aside, .quick-request-form {
  border-radius: 18px; background: linear-gradient(145deg,rgba(11,12,15,.97),rgba(5,6,8,.94)); border:1px solid rgba(240,212,159,.15);
}
.contact-panel h2, .booking-aside h2 { font-family: var(--sans); font-weight:700; letter-spacing:-.03em; }
.contact-list div { grid-template-columns: 150px 1fr; }
.contact-list p, .contact-list a { color:#d8d4cd; }
.map-placeholder { color:inherit; transition:transform .4s cubic-bezier(.22,1,.36,1), border-color .3s ease; }
.map-placeholder:hover { transform:translateY(-5px); border-color:rgba(240,212,159,.28); }

.team-hero, .contact-hero { background: linear-gradient(180deg,rgba(3,4,6,.64),rgba(5,5,4,.84)), url("bg-lounge-4k.svg") center/cover no-repeat; }
.owner-grid { grid-template-columns:repeat(2,minmax(0,1fr)); align-items:stretch; }
.owner-card { min-height: 680px; display:flex; flex-direction:column; border-radius:18px; overflow:hidden; background:linear-gradient(155deg,rgba(10,11,14,.98),rgba(4,5,7,.97)); }
.owner-card:nth-child(even) .artist-image { order:0; }
.owner-visual { min-height: 235px; position:relative; display:grid; place-items:center; overflow:hidden; border-bottom:1px solid var(--line); background:radial-gradient(circle at 50% 42%,rgba(214,166,79,.18),transparent 38%),linear-gradient(145deg,#111318,#06070a); }
.owner-visual::before, .owner-visual::after { content:""; position:absolute; width:360px; height:360px; border:1px solid rgba(240,212,159,.1); border-radius:50%; }
.owner-visual::after { width:255px; height:255px; }
.owner-avatar { position:relative; z-index:2; width:106px; height:106px; display:grid; place-items:center; border-radius:50%; color:#100b06; font:800 27px/1 var(--sans); background:linear-gradient(135deg,#8c5119,#edc776 64%,#fff0b8); box-shadow:0 20px 60px rgba(177,104,28,.22); }
.owner-index { position:absolute; right:24px; top:22px; color:rgba(242,211,155,.42); font:700 10px/1 var(--sans); letter-spacing:.14em; }
.owner-copy { padding:36px 38px 42px; flex:1; justify-content:flex-start; }
.owner-copy h2 { font-family:var(--sans); font-size:clamp(34px,4vw,52px); font-weight:800; line-height:1.02; letter-spacing:-.045em; }
.owner-copy > p:not(.eyebrow) { color:#aeb2bc; font-size:15px; }
.owner-specialties { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; margin:25px 0 8px; }
.owner-specialties.single { grid-template-columns:1fr; }
.owner-specialties > div { padding:18px; border:1px solid rgba(240,212,159,.11); border-radius:12px; background:rgba(255,255,255,.018); }
.owner-specialties span { display:block; margin-bottom:8px; color:var(--gold); font-size:9px; font-weight:700; letter-spacing:.14em; text-transform:uppercase; }
.owner-specialties p { margin:0; color:#c0c3ca; font-size:13px; line-height:1.6; }
.artist-tags { margin-top:16px; }
.artist-tags span { border-radius:999px; background:rgba(214,166,79,.035); }

.quick-contact-shell { display:grid; grid-template-columns:.72fr 1.28fr; gap:clamp(35px,6vw,90px); align-items:start; }
.quick-contact-shell .section-heading { position:sticky; top:calc(var(--header-h) + var(--topbar-h) + 35px); }
.quick-request-form { padding:clamp(25px,4vw,48px); box-shadow:0 28px 90px rgba(0,0,0,.26); }
.quick-request-form label > span { display:block; margin-bottom:8px; color:#d7d0c7; font-size:12px; }
.quick-request-form input, .quick-request-form textarea, .quick-request-form select { width:100%; border:1px solid rgba(240,212,159,.13); border-radius:10px; background:#08090c; color:#f2ece3; padding:13px 14px; outline:none; transition:border-color .25s, box-shadow .25s; }
.quick-request-form input:focus, .quick-request-form textarea:focus { border-color:rgba(240,212,159,.44); box-shadow:0 0 0 3px rgba(214,166,79,.06); }
.quick-request-form textarea { resize:vertical; }
.quick-choice { display:grid; grid-template-columns:repeat(2,1fr); gap:12px; margin-bottom:25px; }
.quick-choice input { position:absolute; opacity:0; pointer-events:none; }
.quick-choice span { min-height:72px; display:grid !important; place-items:center; margin:0 !important; border:1px solid rgba(240,212,159,.14); border-radius:12px; background:#07080b; color:#c9c2b9 !important; font-weight:800; letter-spacing:.12em; text-transform:uppercase; cursor:pointer; }
.quick-choice input:checked + span { color:#100b06 !important; border-color:var(--gold); background:linear-gradient(135deg,#f0cf88,#b47627); }
.quick-request-form .privacy-check { margin:24px 0; }
.quick-request-form .privacy-check input { width:auto; }
.quick-request-form .submit-btn { min-width:220px; }

@media (max-width:1120px) {
  .lounge-topbar { grid-template-columns:1fr 1fr; }
  .lounge-topbar > :last-child { display:none; }
  .owner-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width:840px) {
  :root { --topbar-h:0px; }
  .lounge-topbar { display:none; }
  .site-header { top:0; }
  .owner-grid, .quick-contact-shell { grid-template-columns:1fr; }
  .quick-contact-shell .section-heading { position:static; }
  .owner-card { min-height:0; }
  .owner-visual { min-height:210px; }
  .contact-list div { grid-template-columns:130px 1fr; }
}
@media (max-width:580px) {
  .brand-copy { display:none; }
  .service-card { min-height:235px; padding:24px; }
  .service-card > span { width:50px; height:50px; }
  .service-card h3 { margin-top:35px; font-size:23px; }
  .owner-copy { padding:30px 24px 34px; }
  .owner-specialties { grid-template-columns:1fr; }
  .owner-avatar { width:92px; height:92px; font-size:24px; }
  .contact-list div { grid-template-columns:1fr; }
  .quick-request-form { padding:24px 18px; }
  .quick-choice, .quick-request-form .form-grid { grid-template-columns:1fr; }
  .quick-request-form .submit-btn { width:100%; }
}
.owner-visual.has-custom-image{background-position:center;background-size:cover;background-repeat:no-repeat}.owner-visual.has-custom-image::before,.owner-visual.has-custom-image::after,.owner-visual.has-custom-image .owner-avatar{display:none}


/* Odyssey Lounge V5 – durchgehend einheitliches Premium-Design auf allen Seiten */
:root {
  --premium-panel: linear-gradient(150deg, rgba(12,13,17,.97), rgba(5,6,8,.96));
  --premium-panel-soft: linear-gradient(150deg, rgba(16,14,12,.92), rgba(6,6,7,.94));
  --premium-border: rgba(240,212,159,.15);
  --premium-border-hover: rgba(240,212,159,.32);
  --premium-shadow: 0 24px 74px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.018);
  --premium-shadow-hover: 0 34px 100px rgba(0,0,0,.46), 0 0 45px rgba(182,112,29,.07);
}

.page { position: relative; }
.page::before {
  content:""; position:absolute; inset:0; z-index:-1; pointer-events:none;
  background:
    radial-gradient(circle at 8% 22%, rgba(164,94,23,.09), transparent 24%),
    radial-gradient(circle at 92% 64%, rgba(212,166,79,.065), transparent 27%),
    linear-gradient(180deg, rgba(7,9,14,.12), rgba(5,5,4,.03) 38%, rgba(8,10,15,.15));
}

/* Einheitliche Abschnittsüberschriften */
.section-heading h2, .simple-hero h1, .subhero-copy h1, .home-cta h2 {
  text-wrap: balance;
}
.section-heading::after {
  content:""; display:block; width:86px; height:1px; margin-top:30px;
  background:linear-gradient(90deg,var(--gold),transparent);
}
.home-intro .section-heading::after, .simple-hero .section-heading::after { margin-inline:auto; }

/* Einheitliche Premium-Karten */
.menu-column, .value-orbit article, .atmosphere-card, .values-list article,
.process-step, .faq-item, .legal-copy, .booking-form, .quick-request-form,
.contact-panel, .booking-aside, .artist-card, .world-card, .service-card {
  border-color: var(--premium-border);
}
.menu-column, .value-orbit article, .atmosphere-card, .values-list article,
.process-step, .booking-form, .quick-request-form, .legal-copy {
  background: var(--premium-panel);
  box-shadow: var(--premium-shadow);
}
.menu-column, .value-orbit article, .atmosphere-card, .values-list article,
.process-step, .booking-form, .quick-request-form, .legal-copy,
.gallery-art, .filter-bar button, .choice-card span, .file-field {
  border-radius: 18px;
}
.menu-column, .value-orbit article, .atmosphere-card, .values-list article,
.process-step, .gallery-art, .filter-bar button, .choice-card span {
  transition: transform .45s cubic-bezier(.22,1,.36,1), border-color .35s ease, box-shadow .35s ease, background .35s ease;
}
.menu-column:hover, .value-orbit article:hover, .atmosphere-card:hover,
.values-list article:hover, .process-step:hover, .gallery-art:hover {
  transform: translateY(-5px);
  border-color: var(--premium-border-hover);
  box-shadow: var(--premium-shadow-hover);
}

/* Tattoo: Ablauf und Leistungen */
.process-section {
  background: linear-gradient(180deg, rgba(7,8,11,.94), rgba(4,5,7,.98));
  border-block: 1px solid rgba(240,212,159,.12);
}
.process-line { gap:16px; }
.process-step {
  min-height:285px; padding:32px; border:1px solid var(--premium-border);
  overflow:hidden;
}
.process-step::after {
  content:""; position:absolute; inset:0 0 auto; height:2px;
  background:linear-gradient(90deg,transparent,#8d541b,#f2d39b,#8d541b,transparent);
  opacity:.65;
}
.process-step::before { top:28px; left:auto; right:28px; }
.process-step b { color:rgba(242,211,155,.48); font-family:var(--sans); font-size:12px; font-weight:800; letter-spacing:.16em; }
.process-step h3 { margin-top:70px; font-family:var(--sans); font-size:25px; font-weight:750; letter-spacing:-.025em; }
.process-step p { color:#aeb2bc; font-size:14px; line-height:1.75; }

/* Nails: Leistungen und Werte */
.price-menu { align-items:stretch; }
.menu-column {
  position:relative; overflow:hidden; padding:clamp(32px,4vw,56px);
}
.menu-column::before, .booking-form::before, .legal-copy::before {
  content:""; position:absolute; inset:0 0 auto; height:2px;
  background:linear-gradient(90deg,transparent,#8d541b,#f2d39b,#8d541b,transparent);
  opacity:.7;
}
.menu-column h3 { font-family:var(--sans); font-size:clamp(34px,4vw,48px); font-weight:800; letter-spacing:-.04em; }
.menu-item { border-color:rgba(240,212,159,.11); }
.menu-item strong { font-family:var(--sans); font-weight:700; }
.nail-values, .values-band {
  background:linear-gradient(180deg,rgba(7,8,11,.96),rgba(4,5,7,.98));
  border-block:1px solid rgba(240,212,159,.12);
}
.value-orbit { gap:16px; }
.value-orbit article {
  min-height:300px; padding:30px; border:1px solid var(--premium-border); border-radius:18px;
  text-align:left; justify-content:flex-end; overflow:hidden; position:relative;
}
.value-orbit article::before {
  content:""; position:absolute; width:190px; height:190px; right:-80px; top:-80px;
  border:1px solid rgba(240,212,159,.11); border-radius:50%;
}
.value-orbit b { margin:0 0 auto; width:52px; height:52px; display:grid; place-items:center; border-radius:50%; color:#100b06; background:linear-gradient(135deg,#8f541b,#f3d58f 72%,#fff1bd); }
.value-orbit h3 { font-family:var(--sans); font-size:25px; font-weight:750; letter-spacing:-.025em; }
.value-orbit p { color:#aeb2bc; font-size:14px; line-height:1.7; }

/* Lounge-Seite */
.atmosphere-grid { gap:18px; }
.atmosphere-card {
  padding:32px; border:1px solid var(--premium-border); overflow:hidden;
}
.atmosphere-card::before {
  content:""; position:absolute; inset:0 0 auto; height:2px; z-index:3;
  background:linear-gradient(90deg,transparent,#8d541b,#f2d39b,#8d541b,transparent);
  opacity:.62;
}
.atmosphere-card h3 { font-family:var(--sans); font-weight:750; letter-spacing:-.03em; }
.lounge-story { align-items:start; }
.story-number { color:rgba(242,211,155,.34); font-family:var(--sans); font-weight:800; }
.values-list { gap:16px; }
.values-list article {
  min-height:260px; padding:32px; border:1px solid var(--premium-border); position:relative; overflow:hidden;
}
.values-list article::after {
  content:""; position:absolute; inset:auto -70px -95px auto; width:210px; height:210px;
  border:1px solid rgba(240,212,159,.08); border-radius:50%;
}
.values-list h3 { font-family:var(--sans); font-size:25px; font-weight:750; letter-spacing:-.025em; }
.values-list p { color:#aeb2bc; line-height:1.75; }

/* Galerie */
.filter-bar { gap:10px; }
.filter-bar button {
  border:1px solid var(--premium-border); padding:13px 22px;
  background:rgba(7,8,11,.9); color:#bbb3a9; font-weight:700;
}
.filter-bar button:hover { border-color:var(--premium-border-hover); color:#fff; transform:translateY(-2px); }
.filter-bar button.is-active { color:#100b06; background:linear-gradient(135deg,#f0cf88,#b47627); box-shadow:0 12px 30px rgba(183,116,39,.16); }
.gallery-art { border-color:var(--premium-border); }
.gallery-art figcaption { font-family:var(--sans); font-size:20px; font-weight:750; letter-spacing:-.02em; }
.gallery-note { border-radius:16px; border:1px solid var(--premium-border); background:rgba(7,8,11,.84); box-shadow:var(--premium-shadow); }

/* Team */
.owner-card, .artist-card { border-color:var(--premium-border); }
.owner-card::before, .artist-card::before {
  content:""; position:absolute; inset:0 0 auto; height:2px; z-index:4;
  background:linear-gradient(90deg,transparent,#8d541b,#f2d39b,#8d541b,transparent);
  opacity:.72;
}
.owner-card { position:relative; box-shadow:var(--premium-shadow); transition:transform .45s cubic-bezier(.22,1,.36,1), border-color .35s, box-shadow .35s; }
.owner-card:hover { transform:translateY(-6px); border-color:var(--premium-border-hover); box-shadow:var(--premium-shadow-hover); }

/* Termin- und Kontaktformulare */
.booking-layout { align-items:start; }
.booking-form { position:relative; padding:clamp(28px,4vw,54px); border:1px solid var(--premium-border); overflow:hidden; }
.form-section { padding:42px 0; border-color:rgba(240,212,159,.11); }
.form-index { width:48px; height:48px; display:grid; place-items:center; border-radius:50%; color:#100b06; background:linear-gradient(135deg,#8f541b,#f3d58f 72%,#fff1bd); font-family:var(--sans); font-size:11px; font-weight:800; }
.form-section h3 { font-family:var(--sans); font-weight:750; letter-spacing:-.025em; }
.booking-form input, .booking-form textarea, .booking-form select,
.quick-request-form input, .quick-request-form textarea, .quick-request-form select {
  background:rgba(5,6,8,.72); border:1px solid rgba(240,212,159,.13); border-radius:10px;
  padding:14px 15px; transition:border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.booking-form input:focus, .booking-form textarea:focus, .booking-form select:focus,
.quick-request-form input:focus, .quick-request-form textarea:focus, .quick-request-form select:focus {
  border-color:rgba(240,212,159,.46); box-shadow:0 0 0 3px rgba(214,166,79,.07); background:#08090c;
}
.choice-card span { border:1px solid var(--premium-border); background:rgba(7,8,11,.9); }
.choice-card span:hover { border-color:var(--premium-border-hover); transform:translateY(-3px); }
.choice-card input:checked + span { color:#100b06; border-color:var(--gold); background:linear-gradient(135deg,#f0cf88,#b47627); box-shadow:0 15px 34px rgba(183,116,39,.15); }
.file-field { border-color:rgba(240,212,159,.2); background:rgba(7,8,11,.7); }

/* Kontakt und FAQ */
.contact-grid { align-items:stretch; }
.contact-panel { position:relative; overflow:hidden; }
.contact-panel::after, .booking-aside::after {
  content:""; position:absolute; right:-100px; bottom:-120px; width:260px; height:260px;
  border:1px solid rgba(240,212,159,.07); border-radius:50%; pointer-events:none;
}
.contact-list div { border-color:rgba(240,212,159,.11); }
.faq-section { align-items:start; }
.accordion { padding:12px 30px; border:1px solid var(--premium-border); border-radius:18px; background:var(--premium-panel); box-shadow:var(--premium-shadow); }
.faq-item { border-bottom:1px solid rgba(240,212,159,.11); }
.faq-item:last-child { border-bottom:0; }
.faq-item button { font-family:var(--sans); font-size:20px; font-weight:700; letter-spacing:-.02em; }
.faq-item button:hover { color:var(--gold-light); }

/* Impressum und Datenschutz */
.legal-page .simple-hero { min-height:44vh; }
.legal-copy {
  position:relative; max-width:980px; margin-block:clamp(50px,8vw,110px); padding:clamp(30px,5vw,70px);
  border:1px solid var(--premium-border); overflow:hidden;
}
.legal-copy h2 { font-family:var(--sans); font-size:28px; font-weight:750; letter-spacing:-.025em; }
.legal-copy p { color:#b8b1a8; line-height:1.8; }
.legal-warning { padding:20px; border:1px solid rgba(214,166,79,.22); border-radius:12px; background:rgba(214,166,79,.045); }

/* Footer */
.site-footer {
  background:linear-gradient(180deg,#050608,#020304); border-top:1px solid rgba(240,212,159,.13);
  box-shadow:inset 0 1px rgba(255,255,255,.015);
}

/* Tablet und Mobil – durchgehend benutzerfreundlich */
@media (max-width: 1024px) {
  .process-line { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .value-orbit { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .values-list { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .booking-layout { grid-template-columns:1fr; }
  .booking-aside { position:relative; top:auto; }
}
@media (max-width: 700px) {
  .content-shell { width:min(100% - 32px,1240px); }
  .section-pad { padding-top:76px; padding-bottom:76px; }
  .section-pad-small { padding-top:58px; padding-bottom:68px; }
  .process-line, .value-orbit, .values-list { grid-template-columns:1fr; }
  .process-step, .value-orbit article, .values-list article { min-height:230px; }
  .menu-column, .booking-form, .legal-copy, .accordion { padding:24px 20px; }
  .filter-bar { justify-content:center; }
  .filter-bar button { flex:1 1 130px; }
  .faq-item button { font-size:18px; gap:18px; }
  .faq-item > div p { padding-right:0; }
  .owner-card:hover, .world-card:hover, .service-card:hover, .gallery-art:hover,
  .menu-column:hover, .value-orbit article:hover, .atmosphere-card:hover,
  .values-list article:hover, .process-step:hover { transform:none; }
}
