/* =============================================================
   Mihaelas Massage Studio — public stylesheet
   Direction: nocturnal editorial luxury. Warm near-black,
   ivory type, champagne accent, serif display + clean sans.
   ============================================================= */

:root {
    color-scheme: dark;
    --bg:        #121416;
    --bg-2:      #17191d;
    --bg-3:      #1f2227;
    --ink:       #ebe7e2;
    --ink-2:     #b1aba5;
    --ink-3:     #77716c;
    --line:      rgba(235, 231, 226, 0.12);
    --line-2:    rgba(235, 231, 226, 0.22);
    --gold:      #c97d55;
    --gold-2:    #e2a685;
    --wine:      #3b2b25;
    --ok:        #7fbf8a;
    --gold-ink:  #16100c;

    --ambient-gold: rgba(201, 125, 85, 0.10);
    --ambient-wine: rgba(59, 43, 37, 0.28);
    --header-glass: rgba(18, 20, 22, 0.78);
    --menu-glass: rgba(18, 20, 22, 0.96);
    --footer-shade: rgba(0, 0, 0, 0.35);
    --modal-glass: rgba(18, 20, 22, 0.92);
    --modal-shadow: rgba(0, 0, 0, 0.60);
    --frame-shadow: rgba(0, 0, 0, 0.80);
    --grain-opacity: 0.045;
    --photo-ink: #f7efe3;
    --photo-ink-2: #b1aba5;
    --photo-line: rgba(235, 231, 226, 0.22);
    --photo-accent: #e2a685;

    --serif: 'Jost', 'Futura', 'Avenir Next', 'Helvetica Neue', sans-serif;
    --sans:  'Instrument Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;

    --gutter: clamp(20px, 5vw, 72px);
    --max: 1320px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --radius: 2px;
}

:root[data-theme="light"] {
    color-scheme: light;
    --bg:        #f3f1ee;
    --bg-2:      #e9e6e2;
    --bg-3:      #dcd8d3;
    --ink:       #1e1c1a;
    --ink-2:     #56514c;
    --ink-3:     #7d7772;
    --line:      rgba(30, 28, 26, 0.13);
    --line-2:    rgba(30, 28, 26, 0.23);
    --gold:      #9a5230;
    --gold-2:    #7d3f22;
    --wine:      #6b4a3c;
    --ok:        #39754c;
    --gold-ink:  #fff8f3;

    --ambient-gold: rgba(157, 116, 49, 0.13);
    --ambient-wine: rgba(122, 57, 69, 0.09);
    --header-glass: rgba(244, 239, 232, 0.84);
    --menu-glass: rgba(244, 239, 232, 0.97);
    --footer-shade: rgba(91, 65, 52, 0.06);
    --modal-glass: rgba(47, 35, 30, 0.56);
    --modal-shadow: rgba(61, 42, 33, 0.20);
    --frame-shadow: rgba(61, 42, 33, 0.24);
    --grain-opacity: 0.025;
}

@media (prefers-color-scheme: light) {
    :root:not([data-theme]) {
        color-scheme: light;
        --bg: #f3f1ee;
        --bg-2: #e9e6e2;
        --bg-3: #dcd8d3;
        --ink: #1e1c1a;
        --ink-2: #56514c;
        --ink-3: #7d7772;
        --line: rgba(30, 28, 26, 0.13);
        --line-2: rgba(30, 28, 26, 0.23);
        --gold: #9a5230;
        --gold-2: #7d3f22;
        --wine: #6b4a3c;
        --ok: #39754c;
        --gold-ink: #fff8f3;
        --ambient-gold: rgba(157, 116, 49, 0.13);
        --ambient-wine: rgba(122, 57, 69, 0.09);
        --header-glass: rgba(244, 239, 232, 0.84);
        --menu-glass: rgba(244, 239, 232, 0.97);
        --footer-shade: rgba(91, 65, 52, 0.06);
        --modal-glass: rgba(47, 35, 30, 0.56);
        --modal-shadow: rgba(61, 42, 33, 0.20);
        --frame-shadow: rgba(61, 42, 33, 0.24);
        --grain-opacity: 0.025;
    }
}

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    min-height: 100vh;
}

body::before {
    /* atmospheric glow top-left */
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(1200px 700px at 12% -10%, var(--ambient-gold), transparent 60%),
        radial-gradient(900px 600px at 100% 110%, var(--ambient-wine), transparent 60%);
}

.grain {
    position: fixed;
    inset: -50%;
    width: 200%;
    height: 200%;
    pointer-events: none;
    z-index: 1;
    opacity: var(--grain-opacity);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
    animation: grain 6s steps(8) infinite;
}
@keyframes grain {
    0%   { transform: translate(0, 0); }
    25%  { transform: translate(-4%, 3%); }
    50%  { transform: translate(3%, -2%); }
    75%  { transform: translate(-2%, -4%); }
    100% { transform: translate(0, 0); }
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
p { margin: 0 0 1em; }
.muted { color: var(--ink-2); }

::selection { background: var(--gold); color: var(--gold-ink); }

/* ---------- header --------------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px var(--gutter);
    border-bottom: 1px solid transparent;
    transition: background 0.4s var(--ease), border-color 0.4s var(--ease), padding 0.4s var(--ease);
}
.site-header.is-scrolled {
    background: var(--header-glass);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border-bottom-color: var(--line);
    padding-top: 12px;
    padding-bottom: 12px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}
.brand-mark {
    display: inline-block;
    flex: 0 0 auto;
    width: 25px;
    height: 25px;
    background: url('/assets/img/favicon.svg?v=2') center / contain no-repeat;
    opacity: 0.72;
    filter: saturate(0.78) brightness(1.16);
    transition: opacity 0.3s ease, filter 0.3s ease;
}
.brand:hover .brand-mark { opacity: 0.95; filter: saturate(0.95) brightness(1.24); }
.brand-name {
    font-family: var(--serif);
    font-size: 20px;
    letter-spacing: 0.01em;
}

.nav-desktop {
    display: none;
    gap: 34px;
}
.nav-desktop a {
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-2);
    position: relative;
    padding: 6px 0;
    transition: color 0.3s;
}
.nav-desktop a::after {
    content: '';
    position: absolute;
    left: 0; right: 100%;
    bottom: 0;
    height: 1px;
    background: var(--gold);
    transition: right 0.4s var(--ease);
}
.nav-desktop a:hover, .nav-desktop a[aria-current="page"] { color: var(--ink); }
.nav-desktop a:hover::after, .nav-desktop a[aria-current="page"]::after { right: 0; }

.header-right {
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
    z-index: 2;
}

.theme-toggle {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: color-mix(in srgb, var(--bg-2) 58%, transparent);
    color: var(--ink-2);
    cursor: pointer;
    transition: color 0.3s, border-color 0.3s, background 0.3s, transform 0.3s var(--ease);
}
.theme-toggle:hover { border-color: var(--gold); color: var(--gold-2); transform: rotate(8deg); }
.theme-toggle:focus-visible { outline: 1px solid var(--gold); outline-offset: 3px; }
.theme-icon {
    position: absolute;
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: opacity 0.25s var(--ease), transform 0.35s var(--ease);
}
.theme-icon-sun { opacity: 0; transform: rotate(-35deg) scale(0.65); }
.theme-icon-moon { opacity: 1; transform: rotate(0) scale(1); }
:root[data-theme="light"] .theme-icon-sun { opacity: 1; transform: rotate(0) scale(1); }
:root[data-theme="light"] .theme-icon-moon { opacity: 0; transform: rotate(35deg) scale(0.65); }
@media (prefers-color-scheme: light) {
    :root:not([data-theme]) .theme-icon-sun { opacity: 1; transform: rotate(0) scale(1); }
    :root:not([data-theme]) .theme-icon-moon { opacity: 0; transform: rotate(35deg) scale(0.65); }
}

.status-pill {
    display: none;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 0.08em;
    color: var(--ink-2);
    padding: 6px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
}
.status-pill .dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--ink-3);
    box-shadow: 0 0 0 0 rgba(127, 191, 138, 0);
}
.status-pill.is-open { color: var(--ink); border-color: rgba(127, 191, 138, 0.35); }
.status-pill.is-open .dot {
    background: var(--ok);
    animation: pulse 2.4s infinite;
}
@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(127, 191, 138, 0.5); }
    70%  { box-shadow: 0 0 0 7px rgba(127, 191, 138, 0); }
    100% { box-shadow: 0 0 0 0 rgba(127, 191, 138, 0); }
}

.lang-switch {
    font-size: 12px;
    letter-spacing: 0.16em;
    color: var(--ink-2);
    border: 1px solid var(--line);
    padding: 6px 10px;
    transition: color 0.3s, border-color 0.3s;
}
.lang-switch:hover { color: var(--gold-2); border-color: var(--gold); }

.menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: none;
    border: 0;
    color: var(--ink);
    cursor: pointer;
    padding: 6px 0;
    font: inherit;
}
.menu-toggle-label {
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-2);
}
.menu-toggle-icon {
    width: 26px; height: 14px;
    position: relative;
}
.menu-toggle-icon i {
    position: absolute;
    left: 0; right: 0;
    height: 1px;
    background: var(--ink);
    transition: transform 0.4s var(--ease), top 0.4s var(--ease);
}
.menu-toggle-icon i:first-child { top: 2px; }
.menu-toggle-icon i:last-child  { top: 11px; }
.menu-toggle[aria-expanded="true"] .menu-toggle-icon i:first-child { top: 6px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle-icon i:last-child  { top: 6px; transform: rotate(-45deg); }

/* ---------- mobile menu ---------------------------------------- */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 40;
    background: var(--menu-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 96px var(--gutter) 48px;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu nav a {
    display: flex;
    align-items: baseline;
    gap: 18px;
    font-family: var(--serif);
    font-size: clamp(34px, 8vw, 56px);
    line-height: 1.15;
    padding: 6px 0;
    border-bottom: 1px solid var(--line);
    opacity: 0;
    transform: translateY(16px);
    animation: rise 0.7s var(--ease) forwards;
    animation-delay: calc(0.05s + var(--i) * 0.06s);
}
.mobile-menu nav a[aria-current="page"] { color: var(--gold-2); }
.mm-index {
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.16em;
    color: var(--ink-3);
}
.mobile-menu-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.mm-lang { color: var(--ink-2); font-size: 14px; letter-spacing: 0.06em; }
body.menu-open { overflow: hidden; }

/* ---------- buttons & links ------------------------------------ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: 1px solid var(--gold);
    border-radius: var(--radius);
    color: var(--ink);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
    white-space: nowrap;
}
.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    z-index: -1;
    transform: translateY(101%);
    transition: transform 0.45s var(--ease);
}
.btn-primary { background: var(--gold); color: var(--gold-ink); }
.btn-primary::before { background: var(--gold-2); }
.btn-primary:hover { color: var(--gold-ink); }
.btn-primary:hover::before { transform: translateY(0); }
.btn-ghost { border-color: var(--line-2); }
.btn-ghost:hover { color: var(--gold-ink); border-color: var(--gold); }
.btn-ghost:hover::before { transform: translateY(0); }
.btn:active { transform: translateY(1px); }

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-2);
}
.link-arrow::after {
    content: '';
    width: 26px;
    height: 1px;
    background: currentColor;
    transition: width 0.4s var(--ease);
}
.link-arrow:hover::after { width: 42px; }

.link-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-2);
    margin-bottom: 28px;
}
.link-back::before {
    content: '';
    width: 22px; height: 1px;
    background: currentColor;
}
.link-back:hover { color: var(--gold-2); }

.chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid var(--line-2);
    border-radius: 999px;
    color: var(--ink-2);
    transition: all 0.3s;
}
.chip:hover { color: var(--gold-ink); background: var(--gold); border-color: var(--gold); }

/* ---------- typography helpers --------------------------------- */
.eyebrow {
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}
.eyebrow::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--gold);
    vertical-align: middle;
    margin-right: 14px;
}
.h-small {
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-3);
    margin: 34px 0 12px;
}
.h-small:first-child { margin-top: 0; }

/* ---------- hero ----------------------------------------------- */
.hero {
    position: relative;
    z-index: 2;
    padding: clamp(56px, 12vh, 140px) var(--gutter) clamp(48px, 8vh, 96px);
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    gap: 48px;
}
.hero-side {
    display: none;
    position: absolute;
    left: calc(var(--gutter) - 48px);
    top: clamp(56px, 12vh, 140px);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ink-3);
    align-items: center;
    gap: 14px;
}
.hero-side .sep { width: 1px; height: 40px; background: var(--line-2); }

.hero-inner { max-width: 880px; }
.hero-title {
    font-family: var(--serif);
    font-size: clamp(46px, 9vw, 116px);
    line-height: 0.98;
    letter-spacing: -0.02em;
    font-weight: 300;
    margin: 0 0 32px;
    text-wrap: balance;
}
.hero-title em, .page-title em { font-style: italic; color: var(--gold-2); }
.hero-text {
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.6;
    color: var(--ink-2);
    max-width: 620px;
    margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
}
.meta-label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-3);
    margin-bottom: 6px;
}
.meta-value { font-size: 15px; color: var(--ink); }

/* ---------- page head ------------------------------------------ */
.page-head {
    position: relative;
    z-index: 2;
    padding: clamp(48px, 10vh, 120px) var(--gutter) clamp(24px, 4vh, 48px);
    max-width: var(--max);
    margin: 0 auto;
}
.page-title {
    font-family: var(--serif);
    font-size: clamp(42px, 7vw, 92px);
    line-height: 1;
    letter-spacing: -0.02em;
    font-weight: 300;
}
.page-lead {
    margin-top: 28px;
    max-width: 640px;
    font-size: 18px;
    color: var(--ink-2);
}
.page-404 { min-height: 60vh; }

/* ---------- sections ------------------------------------------- */
.section {
    position: relative;
    z-index: 2;
    max-width: var(--max);
    margin: 0 auto;
    padding: clamp(56px, 9vh, 120px) var(--gutter);
}
.section-tight { padding-top: clamp(16px, 3vh, 40px); }
.section + .section { border-top: 1px solid var(--line); }

.section-head {
    display: grid;
    grid-template-columns: 1fr;
    align-items: end;
    gap: 20px 28px;
    margin-bottom: clamp(32px, 5vh, 56px);
}
.section-title {
    font-family: var(--serif);
    font-size: clamp(30px, 4.6vw, 54px);
    line-height: 1.05;
    letter-spacing: -0.015em;
    font-weight: 300;
}
.section-sub { color: var(--ink-3); font-size: 14px; letter-spacing: 0.06em; margin: 8px 0 0; }
.section-link { grid-column: 1 / -1; }

/* ---------- profile cards -------------------------------------- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(16px, 3vw, 40px) clamp(14px, 2.5vw, 32px);
}
.card { display: flex; flex-direction: column; gap: 16px; }
.card-media {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--bg-3);
    border-radius: var(--radius);
}
.card-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18, 20, 22, 0.55), transparent 45%);
    opacity: 0.7;
    transition: opacity 0.5s;
}
.card-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 1.2s var(--ease), filter 0.6s;
    filter: saturate(0.9) contrast(1.02);
}
.card:hover .card-media img { transform: scale(1.07); filter: saturate(1) contrast(1.04); }
.card:hover .card-media::after { opacity: 0.35; }
.card-body { display: flex; flex-direction: column; gap: 8px; }
.card-name {
    font-family: var(--serif);
    font-size: clamp(24px, 3.2vw, 34px);
    line-height: 1.1;
    display: flex;
    align-items: baseline;
    gap: 12px;
}
.presence-note {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--ink-2);
    font-family: var(--sans);
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
}
.presence-note i {
    width: 5px;
    height: 5px;
    flex: 0 0 5px;
    border-radius: 50%;
    background: var(--ok);
}
.card-presence { margin-left: auto; white-space: nowrap; }
.card-name a { transition: color 0.3s; }
.card:hover .card-name a { color: var(--gold-2); }
.card-age {
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.12em;
    color: var(--ink-3);
}
.card-tag { font-style: normal; 
    font-family: var(--serif);
    font-style: italic;
    font-size: 16px;
    color: var(--ink-2);
    margin: 0;
}
.card .link-arrow { margin-top: 6px; font-size: 12px; }

/* ---------- about ---------------------------------------------- */
.about-grid {
    display: grid;
    gap: 40px;
}
.about-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--ink-2);
    max-width: 620px;
}
.about-text p:first-child::first-letter {
    font-family: var(--serif);
    font-size: 3.4em;
    line-height: 0.8;
    float: left;
    margin: 8px 12px 0 0;
    color: var(--gold-2);
}
.about-points {
    list-style: none;
    margin: 0; padding: 0;
    display: grid;
    gap: 0;
    border-top: 1px solid var(--line);
}
.about-points li {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 16px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
    align-items: baseline;
}
.about-points strong {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 22px;
    color: var(--ink);
}
.about-points span { color: var(--ink-2); font-size: 15px; }

/* ---------- CTA box -------------------------------------------- */
.cta-box {
    position: relative;
    padding: clamp(36px, 6vw, 72px);
    border: 1px solid var(--line-2);
    text-align: center;
    overflow: hidden;
    background:
        radial-gradient(600px 300px at 50% 120%, rgba(201, 125, 85, 0.14), transparent 70%),
        var(--bg-2);
}
.cta-box::before, .cta-box::after {
    content: '';
    position: absolute;
    width: 10px; height: 10px;
    border: 1px solid var(--gold);
    transform: rotate(45deg);
}
.cta-box::before { top: 16px; left: 16px; }
.cta-box::after  { bottom: 16px; right: 16px; }
.cta-title {
    font-family: var(--serif);
    font-size: clamp(30px, 5vw, 58px);
    font-weight: 300;
    letter-spacing: -0.015em;
    margin-bottom: 14px;
}
.cta-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 28px;
}

/* ---------- profile detail ------------------------------------- */
.profile-hero {
    position: relative;
    z-index: 2;
    max-width: var(--max);
    margin: 0 auto;
    padding: clamp(24px, 5vh, 64px) var(--gutter) 0;
    display: grid;
    gap: 36px;
}
.profile-cover {
    margin: 0;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--bg-3);
    position: relative;
}
.profile-cover::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 0 1px rgba(235, 231, 226, 0.08);
    pointer-events: none;
}
.profile-cover img { width: 100%; height: 100%; object-fit: cover; }
.profile-name {
    font-family: var(--serif);
    font-size: clamp(48px, 8vw, 96px);
    line-height: 0.95;
    letter-spacing: -0.02em;
    font-weight: 300;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.profile-age {
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
}
.profile-presence { margin: 34px 0 14px; }
.profile-presence + .profile-name { margin-top: 0; }
.profile-tag {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(19px, 2.4vw, 26px);
    color: var(--ink-2);
    margin: 22px 0 0;
    max-width: 520px;
}
.facts {
    margin: 36px 0 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 24px;
    border-top: 1px solid var(--line);
}
.facts div {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}
.facts dt {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-3);
    margin-bottom: 4px;
}
.facts dd { margin: 0; font-size: 15px; }
.profile-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 36px; }
.profile-services-section { margin-top: clamp(44px, 7vh, 84px); border-top: 1px solid var(--line); }
.profile-services-head { display: grid; grid-template-columns: minmax(0, .7fr) minmax(0, 1.3fr); align-items: end; gap: 24px; margin-bottom: 24px; }
.profile-services-head .eyebrow { margin: 0; }
.profile-services-head h2 { font-family: var(--serif); font-size: clamp(28px, 4vw, 46px); font-weight: 300; line-height: 1.08; }
.profile-service-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: clamp(24px, 5vw, 72px); margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.profile-service-list li { display: grid; grid-template-columns: 34px 1fr; align-items: baseline; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.profile-service-list li > span { color: var(--ink-3); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 10px; font-variant-numeric: tabular-nums; }
.profile-service-list strong { color: var(--ink); font-size: 15px; font-weight: 450; }
.profile-services-note { max-width: 720px; margin: 18px 0 0; color: var(--ink-3); font-size: 12px; line-height: 1.65; }
.profile-desc { padding-top: clamp(40px, 6vh, 72px); }
.profile-desc .prose { max-width: 680px; }

.prose { font-size: 17px; line-height: 1.75; color: var(--ink-2); }
.prose p { margin-bottom: 1.2em; }
.prose h2 {
    font-family: var(--serif);
    font-size: clamp(26px, 3.4vw, 36px);
    font-weight: 300;
    color: var(--ink);
    margin: 2em 0 0.6em;
    letter-spacing: -0.01em;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 2em 0 0.8em;
}
.prose ul { padding-left: 0; list-style: none; margin: 0 0 1.4em; }
.prose li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 0.5em;
}
.prose li::before {
    content: '';
    position: absolute;
    left: 0; top: 0.75em;
    width: 14px; height: 1px;
    background: var(--gold);
}
.prose-page { max-width: 760px; }
.prose-small { font-size: 15px; }

.gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.gallery-item {
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--bg-3);
    border-radius: var(--radius);
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease);
}
.gallery-item:hover img { transform: scale(1.05); }

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(18, 20, 22, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    animation: fade 0.3s;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 100%; max-height: 100%; object-fit: contain; box-shadow: 0 30px 80px rgba(0,0,0,0.6); }
.lightbox-close {
    position: absolute;
    top: 16px; right: 20px;
    background: none;
    border: 1px solid var(--photo-line);
    color: var(--photo-ink);
    width: 44px; height: 44px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
}

/* ---------- prices --------------------------------------------- */
.price-list { border-top: 1px solid var(--line-2); max-width: 900px; }
.price-row {
    display: grid;
    grid-template-columns: 40px 1fr auto;
    grid-template-areas: "idx label amount" "idx dur amount";
    gap: 2px 16px;
    align-items: center;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
    transition: padding-left 0.4s var(--ease);
}
.price-row:hover { padding-left: 8px; }
.price-index { grid-area: idx; font-family: var(--serif); font-size: 13px; color: var(--gold); letter-spacing: 0.1em; }
.price-duration { grid-area: dur; font-size: 13px; letter-spacing: 0.1em; color: var(--ink-3); text-transform: uppercase; }

.note {
    margin-top: 40px;
    max-width: 700px;
    padding: 22px 26px;
    border-left: 1px solid var(--gold);
    background: var(--bg-2);
}
.note strong {
    display: block;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}
.note p { margin: 0; color: var(--ink-2); font-size: 15px; }
.inline-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 40px; }

/* ---------- contact -------------------------------------------- */
.contact-grid { display: grid; gap: 48px; }
.contact-big {
    font-family: var(--serif);
    font-size: clamp(26px, 4vw, 40px);
    line-height: 1.15;
    display: inline-block;
    transition: color 0.3s;
    word-break: break-word;
}
.contact-big:hover { color: var(--gold-2); }
.contact-mail { font-size: clamp(18px, 2.4vw, 26px); }
.contact-phone { margin-bottom: 20px; }
.contact-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.contact-hours { display: flex; flex-direction: column; gap: 2px; }
.contact-hours strong { font-family: var(--serif); font-weight: 400; font-size: 28px; }
.contact-address {
    font-style: normal;
    font-family: var(--serif);
    font-size: clamp(22px, 3vw, 30px);
    line-height: 1.3;
}

/* ---------- footer --------------------------------------------- */
.site-footer {
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--line-2);
    margin-top: clamp(48px, 8vh, 96px);
    padding: clamp(40px, 6vh, 72px) var(--gutter) 32px;
    background: linear-gradient(to bottom, transparent, var(--footer-shade));
}
.footer-grid {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.footer-brand { grid-column: 1 / -1; }
.footer-brand-lockup { display: flex; align-items: center; gap: 10px; margin-bottom: 7px; }
.footer-brand-mark { width: 22px; height: 22px; opacity: 0.46; }
.footer-col h4 {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-3);
    margin-bottom: 10px;
}
.footer-col p { font-size: 15px; color: var(--ink-2); margin: 0; line-height: 1.7; }
.footer-col a:hover { color: var(--gold-2); }
.footer-bottom {
    max-width: var(--max);
    margin: 40px auto 0;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 12px;
    color: var(--ink-3);
}
.footer-adults { margin: 0; }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a:hover { color: var(--gold-2); }

/* ---------- motion --------------------------------------------- */
@keyframes rise {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

[class^="load-"] {
    opacity: 0;
    transform: translateY(18px);
    animation: rise 0.9s var(--ease) forwards;
}
.load-1 { animation-delay: 0.05s; }
.load-2 { animation-delay: 0.15s; }
.load-3 { animation-delay: 0.28s; }
.load-4 { animation-delay: 0.40s; }
.load-5 { animation-delay: 0.52s; }

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
    transition-delay: calc(var(--i, 0) * 0.08s);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
    [class^="load-"], .reveal { opacity: 1; transform: none; }
    .grain { display: none; }
}

/* ---------- responsive ----------------------------------------- */
@media (min-width: 720px) {
    .status-pill { display: inline-flex; }
    .card-grid { grid-template-columns: repeat(3, 1fr); }
    .card-grid-featured .card:nth-child(2) { transform: translateY(48px); }
    .gallery { grid-template-columns: repeat(3, 1fr); }
    .facts { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
    .footer-brand { grid-column: auto; }
    .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
    .section-head { grid-template-columns: 1fr auto; }
    .section-link { grid-column: auto; }
    .about-grid { grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: start; }
    .contact-grid { grid-template-columns: 1fr 1fr; gap: 64px; }
    .price-row {
        grid-template-columns: 48px 1fr 160px 140px;
        grid-template-areas: "idx label dur amount";
    }
    .price-amount { text-align: right; }
}

@media (min-width: 1024px) {
    .nav-desktop { display: flex; }
    .menu-toggle { display: none; }
    .hero-side { display: flex; }
    .hero { grid-template-columns: 1fr; }
    .profile-hero {
        grid-template-columns: minmax(360px, 46%) 1fr;
        gap: 64px;
        align-items: start;
    }
    .profile-cover { position: sticky; top: 90px; }
    .card-grid { gap: 40px 32px; }
    .card-grid-featured .card:nth-child(2) { transform: translateY(64px); }
    .gallery { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 719px) {
    .site-header { gap: 10px; }
    .brand { min-width: 0; gap: 8px; }
    .brand-mark { width: 22px; height: 22px; }
    .brand-name { overflow: hidden; max-width: 180px; font-size: 17px; text-overflow: ellipsis; white-space: nowrap; }
    .header-right { gap: 10px; }
    .menu-toggle-label { display: none; }
    .profile-services-head { grid-template-columns: 1fr; gap: 8px; }
    .profile-service-list { grid-template-columns: 1fr; }
    .card-grid-featured .card:nth-child(2) { transform: none; }
    .card-name { font-size: 22px; }
    .card .link-arrow { display: none; }
    .hero-actions .btn { flex: 1 1 100%; }
}

/* ---------- typography tweaks for Jost ------------------------- */
.hero-title, .page-title, .profile-name { font-weight: 300; letter-spacing: -0.015em; }
.section-title, .cta-title, .card-name, .price-label, .contact-big, .contact-address, .prose h2 { font-weight: 400; letter-spacing: -0.01em; }
.card-tag, .profile-tag { font-style: normal; font-weight: 300; }
.about-text p:first-child::first-letter { font-weight: 300; }
.brand-name { font-weight: 500; letter-spacing: 0.02em; }

/* ---------- hero carousel -------------------------------------- */
.hero-carousel {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}
.carousel-frame {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--bg-3);
    box-shadow: 0 40px 80px -30px var(--frame-shadow);
}
.carousel-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(235, 231, 226, 0.10);
}
.carousel-slide {
    position: absolute;
    inset: 0;
    display: block;
    opacity: 0;
    transition: opacity 1.1s var(--ease);
    z-index: 0;
}
.carousel-slide.is-active { opacity: 1; z-index: 1; }
.carousel-slide img {
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1);
    filter: saturate(0.92);
}
.carousel-slide.is-active img { animation: kenburns 7s linear forwards; }
@keyframes kenburns {
    from { transform: scale(1); }
    to   { transform: scale(1.08); }
}
.carousel-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18, 20, 22, 0.7), transparent 45%);
}
.carousel-caption {
    position: absolute;
    left: 18px; right: 18px; bottom: 16px;
    z-index: 2;
    display: flex;
    align-items: baseline;
    gap: 10px;
    color: var(--photo-ink);
}
.carousel-name {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 400;
    letter-spacing: -0.01em;
}
.carousel-age {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--photo-accent);
}
.carousel-corner {
    position: absolute;
    top: -8px; right: -8px;
    width: 44px; height: 44px;
    border-top: 1px solid var(--gold);
    border-right: 1px solid var(--gold);
    z-index: 3;
    pointer-events: none;
}
.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 14px;
}
.carousel-btn {
    background: none;
    border: 1px solid var(--line-2);
    color: var(--ink-2);
    width: 36px; height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font: inherit;
    font-size: 15px;
    transition: color 0.3s, border-color 0.3s;
}
.carousel-btn:hover { color: var(--gold-2); border-color: var(--gold); }
.carousel-dots { display: flex; gap: 6px; }
.carousel-dot {
    width: 22px; height: 2px;
    border: 0;
    padding: 0;
    background: var(--line-2);
    cursor: pointer;
    transition: background 0.3s, width 0.3s;
}
.carousel-dot.is-active { background: var(--gold); width: 34px; }

@media (min-width: 1024px) {
    .hero-with-carousel {
        grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
        grid-template-areas: "text carousel" "meta meta";
        align-items: center;
        column-gap: 64px;
    }
    .hero-with-carousel .hero-inner { grid-area: text; }
    .hero-with-carousel .hero-carousel { grid-area: carousel; margin: 0 0 0 auto; }
    .hero-with-carousel .hero-meta { grid-area: meta; }
    .hero-with-carousel .hero-title { font-size: clamp(46px, 6.6vw, 92px); }
}

/* ---------- age gate ------------------------------------------- */
.age-gate {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: var(--modal-glass);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    animation: fade 0.4s;
}
.age-ok .age-gate, .age-gate[hidden] { display: none; }
.age-ok body { overflow: auto; }
html:not(.age-ok) body { overflow: hidden; }
.age-gate-box {
    width: 100%;
    max-width: 520px;
    padding: clamp(32px, 6vw, 56px);
    background: var(--bg-2);
    border: 1px solid var(--line-2);
    text-align: center;
    position: relative;
    box-shadow: 0 40px 100px var(--modal-shadow);
}
.age-gate-mark { display: block; margin: 0 auto 20px; width: 34px; height: 34px; opacity: 0.5; }
.age-gate-box .eyebrow { justify-content: center; margin-bottom: 14px; }
.age-gate-box .eyebrow::before { display: none; }
.age-gate-title {
    font-family: var(--serif);
    font-size: clamp(30px, 5vw, 44px);
    font-weight: 300;
    letter-spacing: -0.015em;
    margin-bottom: 14px;
}
.age-gate-text { color: var(--ink-2); font-size: 16px; margin-bottom: 26px; }
.age-gate-actions { display: flex; flex-direction: column; gap: 10px; }
.age-gate-actions .btn { width: 100%; }
.age-gate-note { margin: 18px 0 0; font-size: 12px; color: var(--ink-3); }
@media (min-width: 560px) {
    .age-gate-actions { flex-direction: row; }
    .age-gate-actions .btn { flex: 1; }
}
.age-gate-actions .btn { white-space: normal; line-height: 1.35; padding: 13px 16px; letter-spacing: 0.1em; }

/* ---------- announcement bar ----------------------------------- */
.announce {
    position: relative;
    z-index: 3;
    background: linear-gradient(90deg, rgba(201, 125, 85, 0.16), rgba(201, 125, 85, 0.06));
    border-top: 1px solid rgba(201, 125, 85, 0.35);
    border-bottom: 1px solid rgba(201, 125, 85, 0.25);
}
.announce-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 10px var(--gutter);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}
.announce-inner p { margin: 0; flex: 1; }
.announce-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex: none; box-shadow: 0 0 0 4px rgba(201, 125, 85, 0.18); }
.announce-link { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-2); white-space: nowrap; }
.announce-link:hover { color: var(--ink); }

/* ---------- absence notes --------------------------------------- */
.absence-note {
    display: inline-flex;
    align-items: center;
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-2);
    border: 1px solid var(--line-2);
    border-radius: 999px;
    padding: 4px 10px;
    white-space: nowrap;
}
.card-absence { margin-left: 4px; }
.profile-absence { margin: 0 0 14px; }

/* ---------- news ------------------------------------------------- */
.news-grid {
    display: grid;
    gap: 20px;
}
.news-item {
    padding: 24px 26px;
    border: 1px solid var(--line);
    background: var(--bg-2);
    position: relative;
}
.news-item::before {
    content: '';
    position: absolute;
    left: 0; top: 24px; bottom: 24px;
    width: 1px;
    background: var(--gold);
}
.news-item time {
    display: block;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}
.news-item h3 {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 400;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}
.news-item .prose p:last-child { margin-bottom: 0; }
@media (min-width: 720px) {
    .news-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
}

/* ---------- softer image corners, no scroll-in for images ------- */
:root { --radius-img: 14px; }
.card-media, .profile-cover, .gallery-item, .carousel-frame, .lightbox img, .news-item, .cta-box { border-radius: var(--radius-img); }
.profile-cover::after, .carousel-frame::before, .card-media::after { border-radius: inherit; }
.carousel-slide img, .card-media img, .gallery-item img, .profile-cover img { border-radius: inherit; }
.card.reveal, .gallery-item.reveal { opacity: 1; transform: none; transition: none; }

/* ---------- lightbox navigation --------------------------------- */
.lightbox img { cursor: e-resize; }
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px; height: 52px;
    border-radius: 50%;
    border: 1px solid var(--photo-line);
    background: rgba(18, 20, 22, 0.55);
    color: var(--photo-ink);
    font: inherit;
    font-size: 20px;
    cursor: pointer;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: border-color 0.3s, color 0.3s, background 0.3s;
    z-index: 2;
}
.lightbox-nav:hover { border-color: var(--photo-accent); color: var(--photo-accent); background: rgba(18, 20, 22, 0.8); }
.lightbox-nav[hidden] { display: none; }
.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }
.lightbox-counter {
    position: absolute;
    top: 26px; left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    letter-spacing: 0.18em;
    color: var(--photo-ink-2);
}
.lightbox-counter[hidden] { display: none; }
@media (max-width: 719px) {
    .lightbox { padding: 64px 12px 72px; }
    .lightbox-nav { top: auto; bottom: 14px; transform: none; width: 46px; height: 46px; }
    .lightbox-prev { left: calc(50% - 60px); }
    .lightbox-next { right: calc(50% - 60px); }
}

/* ---------- compact header on tablets (720–1023px) --------------- */
@media (min-width: 720px) and (max-width: 1023px) {
    .site-header { gap: 14px; }
    .brand-name { font-size: 17px; white-space: nowrap; }
    .header-right { gap: 10px; }
    .status-pill { padding: 6px 8px; gap: 0; }
    .status-pill [data-status-label] { display: none; }
    .status-pill .dot { width: 8px; height: 8px; }
    .lang-switch { padding: 6px 8px; }
    .menu-toggle-label { display: none; }
}
@media (max-width: 480px) {
    .brand-name { font-size: 15px; white-space: nowrap; }
}

/* ---------- phone: cards must never overflow the viewport --------- */
.card-grid > .card { min-width: 0; }
.card-body, .card-media { min-width: 0; }
@media (max-width: 719px) {
    .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 14px; }
    .card-grid .card:nth-child(n) { transform: none; }
    .card-name { flex-wrap: wrap; gap: 6px 8px; font-size: 21px; }
    .card-presence, .card-absence { margin-left: 0; flex-basis: 100%; white-space: normal; font-size: 10px; padding: 3px 8px; }
    .card-tag { font-size: 14px; }
    .card { gap: 12px; }
}
@media (max-width: 419px) {
    .card-grid { gap: 20px 10px; }
    .card-name { font-size: 19px; }
    .card-tag { font-size: 13px; }
}
