/* Elite TS High — noir, champagne, wine. */
:root {
    --ink: #070506;
    --ink-2: #0c090a;
    --panel: #141012;
    --panel-2: #1c1518;
    --ivory: #f4ece2;
    --mute: #9b8f88;
    --line: rgba(244, 236, 226, 0.09);
    --line-2: rgba(244, 236, 226, 0.2);
    --gold: #dcb07a;
    --gold-hi: #f7e4c3;
    --gold-lo: #a86f3e;
    --rose: #d6c6bd;
    --pink: #e0709e;
    --pink-hi: #f6b8d1;
    --wine: #7c1429;
    --wine-deep: #2c0711;
    --accent: var(--gold);
    --champagne: linear-gradient(135deg, var(--gold-hi) 0%, var(--gold) 48%, var(--gold-lo) 100%);
    --serif: "Cormorant Garamond", "Didot", "Bodoni 72", Georgia, serif;
    --sans: "Outfit", "Helvetica Neue", sans-serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --silk: cubic-bezier(0.65, 0, 0.35, 1);
    --gutter: clamp(16px, 5vw, 72px);
    --nav-h: 72px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
html, body { margin: 0; padding: 0; }
body.eth {
    position: relative;
    min-height: 100svh;
    overflow-x: hidden;
    background:
        radial-gradient(60rem 40rem at 88% -10%, rgba(124, 20, 41, 0.28), transparent 60%),
        radial-gradient(50rem 36rem at -10% 60%, rgba(124, 20, 41, 0.14), transparent 60%),
        var(--ink);
    color: var(--ivory);
    font-family: var(--sans);
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
}
::selection { background: var(--wine); color: var(--gold-hi); }

img { max-width: 100%; display: block; }
a { color: inherit; }
:focus-visible { outline: 1px solid var(--gold); outline-offset: 3px; }

/* ---------- atmosphere ---------- */
.eth-grain {
    position: fixed;
    inset: 0;
    z-index: 70;
    pointer-events: none;
    opacity: 0.07;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .9 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    animation: eth-grain 1.2s steps(6) infinite;
}
@keyframes eth-grain {
    0% { background-position: 0 0; }
    20% { background-position: -40px 30px; }
    40% { background-position: 30px -50px; }
    60% { background-position: -60px -20px; }
    80% { background-position: 50px 40px; }
    100% { background-position: 0 0; }
}
.eth-glow {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    width: 560px;
    height: 560px;
    margin: -280px 0 0 -280px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(124, 20, 41, 0.34), rgba(220, 176, 122, 0.06) 45%, transparent 70%);
    transform: translate3d(var(--mx, 50vw), var(--my, 30vh), 0);
    transition: opacity 600ms ease;
    opacity: 0;
}
html.eth-pointer .eth-glow { opacity: 1; }
body > header, body > main, body > footer { position: relative; z-index: 2; }

/* ---------- type ---------- */
.eth-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin: 0 0 1rem;
    color: var(--gold);
    font-family: var(--sans);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
}
.eth-kicker::before {
    content: "";
    width: 28px;
    height: 1px;
    background: currentColor;
    opacity: 0.7;
}
.eth-lede {
    margin: 0;
    color: var(--rose);
    font-size: 1.02rem;
    max-width: 34rem;
}

h1, h2, h3 {
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: -0.01em;
}
h1 { margin: 0 0 1rem; font-size: clamp(2.6rem, 6vw, 4.4rem); line-height: 1; }
h1 em, h2 em, .eth-display em {
    font-style: italic;
    font-weight: 400;
    background: var(--champagne);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding-right: 0.08em;
}
h2 { margin: 0 0 0.9rem; font-size: clamp(2rem, 4.4vw, 3.4rem); line-height: 1.02; }
h3 { margin: 0; font-size: 1.45rem; font-weight: 500; line-height: 1.1; }

.eth-display {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(3.2rem, 8.4vw, 7.6rem);
    line-height: 0.9;
    letter-spacing: -0.025em;
}
.eth-display--md { font-size: clamp(2.4rem, 5.6vw, 4.6rem); }
.eth-line { display: block; overflow: hidden; padding-bottom: 0.08em; }
.eth-line > * { display: inline-block; }

/* ---------- buttons ---------- */
.eth-btn {
    appearance: none;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0 1.6rem;
    border-radius: 999px;
    border: 1px solid transparent;
    background: transparent;
    color: var(--ivory);
    text-decoration: none;
    font: inherit;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 500ms var(--ease), border-color 300ms ease, color 300ms ease, box-shadow 500ms var(--ease);
}
.eth-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.55) 50%, transparent 70%);
    transform: translateX(-120%);
    transition: transform 900ms var(--ease);
}
.eth-btn:hover::after { transform: translateX(120%); }
.eth-btn:active { transform: scale(0.97); }
.eth-btn--solid {
    background: var(--champagne);
    color: var(--ink);
    box-shadow: 0 10px 30px -12px rgba(220, 176, 122, 0.55);
}
.eth-btn--solid:hover { box-shadow: 0 16px 44px -14px rgba(220, 176, 122, 0.8); }
.eth-btn--ghost {
    border-color: var(--line-2);
    background: rgba(244, 236, 226, 0.02);
    backdrop-filter: blur(6px);
}
.eth-btn--ghost::after { background: linear-gradient(110deg, transparent 30%, rgba(220, 176, 122, 0.18) 50%, transparent 70%); }
.eth-btn--ghost:hover { border-color: var(--gold); color: var(--gold-hi); }
.eth-btn--tiny {
    height: 38px;
    padding: 0 1.05rem;
    font-size: 0.68rem;
}
.eth-btn[disabled] { opacity: 0.45; cursor: default; }

/* ---------- nav ---------- */
.eth-nav {
    position: sticky;
    top: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    gap: 1.6rem;
    min-height: var(--nav-h);
    padding: 0 var(--gutter);
    border-bottom: 1px solid transparent;
    transition: background 500ms ease, border-color 500ms ease, min-height 500ms var(--ease), backdrop-filter 500ms ease;
}
.eth-nav.is-scrolled {
    --nav-h: 62px;
    background: rgba(7, 5, 6, 0.72);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border-bottom-color: var(--line);
}
.eth-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin: 0;
    color: var(--ivory);
    text-decoration: none;
}
.eth-mark { width: auto; height: 30px; overflow: visible; }
.eth-logo .eth-mark { transition: transform 700ms var(--ease), filter 700ms ease; }
.eth-logo:hover .eth-mark { transform: rotate(-6deg) scale(1.06); filter: drop-shadow(0 0 10px rgba(220, 176, 122, 0.45)); }
.eth-logo__word {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    white-space: nowrap;
}
.eth-logo__word em {
    margin-right: 0.3em;
    font-family: var(--serif);
    font-size: 1.55em;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: none;
    color: var(--gold-hi);
}
.eth-menu {
    display: none;
    appearance: none;
    margin-left: auto;
    border: 1px solid var(--line-2);
    border-radius: 999px;
    background: transparent;
    color: var(--ivory);
    height: 38px;
    padding: 0 1rem;
    font: inherit;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
}
.eth-nav__links { display: flex; gap: 1.8rem; flex: 1; justify-content: center; }
.eth-nav__links a {
    position: relative;
    padding: 0.3rem 0;
    text-decoration: none;
    color: var(--mute);
    font-size: 0.74rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: color 300ms ease;
}
.eth-nav__links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 1px;
    background: var(--champagne);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 600ms var(--ease);
}
.eth-nav__links a:hover { color: var(--ivory); }
.eth-nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.eth-nav__meta { display: flex; align-items: center; gap: 0.8rem; }
.eth-lang { display: flex; padding: 3px; border: 1px solid var(--line); border-radius: 999px; }
.eth-lang button {
    appearance: none;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--mute);
    padding: 0.35rem 0.65rem;
    font: inherit;
    font-size: 0.66rem;
    letter-spacing: 0.14em;
    cursor: pointer;
    transition: background 400ms var(--ease), color 300ms ease;
}
.eth-lang button[aria-pressed="true"] { background: var(--ivory); color: var(--ink); }

/* ---------- entrance ---------- */
.eth-rise {
    animation: eth-rise 1300ms var(--ease) both;
    animation-delay: calc(var(--d, 0) * 110ms + 150ms);
}
.eth-line > .eth-rise { animation-name: eth-rise-line; }
html:not(.eth-age-ok) .eth-rise,
html:not(.eth-age-ok) .eth-hero__frame { animation-play-state: paused; }
@keyframes eth-rise {
    from { opacity: 0; transform: translateY(24px); filter: blur(10px); }
    to { opacity: 1; transform: none; filter: none; }
}
@keyframes eth-rise-line {
    from { transform: translateY(105%) rotate(2deg); }
    to { transform: none; }
}

html.eth-js [data-reveal] {
    opacity: 0;
    transform: translateY(34px);
    filter: blur(8px);
    transition:
        opacity 1100ms var(--ease),
        transform 1100ms var(--ease),
        filter 1100ms var(--ease);
    transition-delay: calc(var(--d, 0) * 120ms);
}
html.eth-js [data-reveal].is-visible { opacity: 1; transform: none; filter: none; }

/* ---------- hero ---------- */
.eth-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: center;
    gap: clamp(2rem, 5vw, 5rem);
    min-height: calc(100svh - var(--nav-h));
    padding: 2rem var(--gutter) 4.5rem;
    overflow-x: clip;
}
.eth-hero__copy { position: relative; z-index: 2; max-width: 44rem; }
.eth-hero .eth-display { margin: 0 0 1.6rem; }
.eth-hero .eth-display .eth-line:last-child > span { font-weight: 300; color: var(--ivory); }
.eth-hero__cta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 2rem 0 0; }
.eth-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin: 2.6rem 0 0;
    padding: 0;
    border-top: 1px solid var(--line);
}
.eth-stats div {
    display: grid;
    gap: 0.15rem;
    padding: 1rem 2rem 0 0;
    margin-right: 2rem;
}
.eth-stats div + div { padding-left: 2rem; border-left: 1px solid var(--line); }
.eth-stats dt {
    margin: 0;
    color: var(--mute);
    font-size: 0.62rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
}
.eth-stats dd {
    margin: 0;
    font-family: var(--serif);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--gold-hi);
}

.eth-hero__stage { position: relative; justify-self: center; width: min(100%, 460px); }
.eth-hero__stage::before {
    content: "";
    position: absolute;
    inset: 12% -18% -8%;
    z-index: -1;
    background: radial-gradient(closest-side, rgba(124, 20, 41, 0.55), transparent);
    filter: blur(20px);
    animation: eth-breathe 7s ease-in-out infinite;
}
@keyframes eth-breathe {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.08); }
}
.eth-hero__frame {
    position: relative;
    aspect-ratio: 3 / 4;
    max-height: calc(100svh - var(--nav-h) - 9rem);
    margin-inline: auto;
    overflow: hidden;
    border-radius: 999px 999px 28px 28px;
    background: var(--panel);
    animation: eth-unveil 1800ms var(--silk) 250ms both;
}
.eth-hero__stage::after {
    content: "";
    position: absolute;
    inset: -14px -14px auto;
    aspect-ratio: 3 / 4;
    max-height: calc(100svh - var(--nav-h) - 9rem + 28px);
    border: 1px solid rgba(220, 176, 122, 0.3);
    border-radius: 999px 999px 36px 36px;
    pointer-events: none;
}
@keyframes eth-unveil {
    from { clip-path: inset(100% 0 0 0 round 999px 999px 28px 28px); }
    to { clip-path: inset(0 0 0 0 round 999px 999px 28px 28px); }
}
.eth-hero__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 22%;
    opacity: 0;
    transform: scale(1.14);
    transition: opacity 1800ms var(--silk), transform 9000ms linear;
}
.eth-hero__slide.is-on { opacity: 1; transform: scale(1.02); }
.eth-hero__slide--mascot {
    object-fit: cover;
    object-position: 50% 42%;
    background: #070506;
}
.eth-hero__slide--mascot.is-on { transform: scale(1.03); }
.eth-hero__frame--mascot { background: #070506; }
.eth-hero__frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(7, 5, 6, 0.65));
}
.eth-hero__caption {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin: 1.5rem 0 0;
    color: var(--rose);
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.2rem;
}
.eth-hero__no {
    font-family: var(--sans);
    font-style: normal;
    font-size: 0.64rem;
    letter-spacing: 0.3em;
    color: var(--gold);
}
.eth-hero__name { transition: opacity 600ms ease, transform 600ms var(--ease); }
.eth-hero__name.is-swapping { opacity: 0; transform: translateY(6px); }

.eth-scroll {
    position: absolute;
    left: 50%;
    bottom: 1.4rem;
    width: 1px;
    height: 54px;
    background: var(--line);
    overflow: hidden;
}
.eth-scroll span {
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 18px;
    background: var(--gold);
    animation: eth-drip 2.4s var(--silk) infinite;
}
@keyframes eth-drip {
    from { transform: translateY(-18px); }
    to { transform: translateY(54px); }
}

/* ---------- featured rail ---------- */
.eth-featured-wrap { position: relative; margin: 0 0 1.5rem; }
.eth-featured {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 var(--gutter);
    padding: 0.4rem var(--gutter) 1.4rem;
    scrollbar-width: none;
}
.eth-featured::-webkit-scrollbar { display: none; }
.eth-featured .eth-card {
    flex: 0 0 min(76vw, 320px);
    scroll-snap-align: start;
}
.eth-rail {
    position: absolute;
    top: 44%;
    z-index: 3;
    width: 52px;
    height: 52px;
    border: 1px solid var(--line-2);
    border-radius: 50%;
    background: rgba(7, 5, 6, 0.55);
    backdrop-filter: blur(10px);
    color: var(--ivory);
    cursor: pointer;
    font-family: var(--serif);
    font-size: 1.6rem;
    line-height: 1;
    transition: border-color 300ms ease, transform 500ms var(--ease), color 300ms ease;
}
.eth-rail--prev { left: 1.2rem; }
.eth-rail--next { right: 1.2rem; }
.eth-rail:hover { border-color: var(--gold); color: var(--gold-hi); transform: scale(1.08); }

/* ---------- marquee ---------- */
.eth-marquee {
    overflow: hidden;
    padding: 1.4rem 0;
    border-block: 1px solid var(--line);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.eth-marquee__track {
    display: flex;
    align-items: center;
    gap: 2.2rem;
    width: max-content;
    animation: eth-marquee 48s linear infinite;
}
.eth-marquee:hover .eth-marquee__track { animation-play-state: paused; }
.eth-marquee span {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(2rem, 4.6vw, 3.8rem);
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(220, 176, 122, 0.55);
    transition: color 500ms ease;
}
.eth-marquee span:hover { color: var(--gold-hi); }
.eth-marquee i { color: var(--pink); font-style: normal; font-size: 1rem; filter: drop-shadow(0 0 6px rgba(224, 112, 158, 0.75)); }
@keyframes eth-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ---------- sections ---------- */
.eth-band, .eth-roster, .eth-method, .eth-split, .eth-apply, .eth-foot { padding: clamp(4rem, 9vw, 7.5rem) var(--gutter); }
.eth-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    align-items: end;
    gap: 1.6rem 3rem;
    padding-bottom: 1rem;
}
.eth-band h2 { margin: 0; }
.eth-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.eth-areas button,
.eth-areas li {
    appearance: none;
    border: 1px solid var(--line-2);
    border-radius: 999px;
    padding: 0.5rem 1rem;
    background: transparent;
    color: var(--rose);
    font: inherit;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: border-color 300ms ease, color 300ms ease, background 500ms var(--ease), transform 500ms var(--ease);
}
.eth-areas button:hover { border-color: var(--gold); color: var(--gold-hi); transform: translateY(-2px); }
.eth-areas button[aria-pressed="true"] {
    background: var(--champagne);
    color: var(--ink);
    border-color: transparent;
}

.eth-section-head { max-width: 40rem; margin-bottom: 2.6rem; }
.eth-roster { padding-top: 3rem; }
.eth-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}
.eth-grid .eth-card:nth-child(3n + 2) { transform: translateY(2.6rem); }
html.eth-js .eth-grid .eth-card:nth-child(3n + 2)[data-reveal]:not(.is-visible) { transform: translateY(calc(2.6rem + 34px)); }
.eth-grid { padding-bottom: 2.6rem; }
.eth-grid.is-filtered .eth-card { transform: none !important; }
html.eth-js .eth-grid .eth-card:nth-child(3n + 2)[data-reveal].is-visible { transform: translateY(2.6rem); }

/* ---------- card ---------- */
.eth-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: var(--panel);
    aspect-ratio: 3 / 4;
    isolation: isolate;
}
.eth-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: inherit;
    border: 1px solid transparent;
    background: radial-gradient(420px circle at var(--px, 50%) var(--py, 30%), rgba(247, 228, 195, 0.16), transparent 45%) border-box;
    opacity: 0;
    pointer-events: none;
    transition: opacity 500ms ease, border-color 500ms ease;
}
.eth-card:hover::before { opacity: 1; border-color: rgba(220, 176, 122, 0.45); }
.eth-card__link,
.eth-card__visual {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
}
.eth-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 22%;
    filter: saturate(0.72) brightness(0.82) contrast(1.05);
    transform: scale(1.02);
    transition: transform 1400ms var(--ease), filter 900ms ease;
}
.eth-card:hover img { transform: scale(1.09); filter: saturate(1.05) brightness(0.95) contrast(1.05); }
.eth-card__meta {
    position: absolute;
    inset: auto 0 0;
    z-index: 1;
    padding: 5rem 1.3rem 1.3rem;
    background: linear-gradient(180deg, transparent, rgba(7, 5, 6, 0.55) 40%, rgba(7, 5, 6, 0.94));
    transition: transform 800ms var(--ease);
}
.eth-card:hover .eth-card__meta { transform: translateY(-6px); }
.eth-card__no {
    position: absolute;
    top: -1.2rem;
    right: 1.3rem;
    color: var(--gold);
    font-size: 0.62rem;
    letter-spacing: 0.3em;
    opacity: 0.8;
}
.eth-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    height: 22px;
    margin-bottom: 0.55rem;
    padding: 0 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(220, 176, 122, 0.35);
    background: rgba(7, 5, 6, 0.45);
    backdrop-filter: blur(6px);
    color: var(--gold-hi);
    font-size: 0.58rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}
.eth-badge::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 8px var(--gold);
}
.eth-card h3 {
    margin-bottom: 0.1rem;
    font-size: clamp(1.8rem, 2.6vw, 2.3rem);
    font-style: italic;
    font-weight: 400;
}
.eth-card p {
    margin: 0;
    color: var(--rose);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.eth-card__from {
    margin-top: 0.5rem !important;
    color: var(--gold-hi) !important;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
}
.eth-card__from strong {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1rem;
    letter-spacing: normal;
    text-transform: none;
    color: var(--pink-hi);
    margin-left: 0.35rem;
}
.eth-card[hidden] { display: none; }
.eth-card.is-filtered-in { animation: eth-card-in 900ms var(--ease) both; animation-delay: calc(var(--i, 0) * 70ms); }
@keyframes eth-card-in {
    from { opacity: 0; transform: translateY(20px) scale(0.97); filter: blur(6px); }
    to { opacity: 1; transform: none; filter: none; }
}
.eth-card__visual[data-tone="0"] { background: #111 url("companions/valentina.jpg") center 22% / cover no-repeat; }
.eth-card__visual[data-tone="1"] { background: #111 url("companions/luna.jpg") center 22% / cover no-repeat; }
.eth-card__visual[data-tone="2"] { background: #111 url("companions/camila.jpg") center 22% / cover no-repeat; }
.eth-card__visual[data-tone="3"] { background: #111 url("companions/isabella.jpg") center 22% / cover no-repeat; }
.eth-card__visual[data-tone="4"] { background: #111 url("companions/marina.jpg") center 22% / cover no-repeat; }
.eth-card__visual[data-tone="5"] { background: #111 url("companions/sofia.jpg") center 22% / cover no-repeat; }

/* ---------- profile ---------- */
.eth-profile { padding: 2.4rem var(--gutter) 5rem; }
.eth-back {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 2rem;
    color: var(--mute);
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    transition: color 300ms ease, gap 500ms var(--ease);
}
.eth-back::before { content: "←"; font-family: var(--serif); font-size: 1.1rem; letter-spacing: 0; }
.eth-back:hover { color: var(--gold-hi); gap: 0.9rem; }
.eth-profile__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
}
.eth-profile__photo {
    position: sticky;
    top: calc(var(--nav-h) + 1.5rem);
    margin: 0;
    overflow: hidden;
    border-radius: 999px 999px 28px 28px;
    background: var(--panel);
    box-shadow: 0 40px 120px -40px rgba(124, 20, 41, 0.7);
}
.eth-profile__photo img {
    width: 100%;
    height: min(80vh, 760px);
    object-fit: cover;
    object-position: 50% 22%;
}
.eth-profile__copy h1 { font-size: clamp(3.4rem, 8vw, 6.4rem); line-height: 0.9; margin-bottom: 1.4rem; }
.eth-stagger > * { animation: eth-rise 1100ms var(--ease) both; }
.eth-stagger > *:nth-child(2) { animation-delay: 80ms; }
.eth-stagger > *:nth-child(3) { animation-delay: 160ms; }
.eth-stagger > *:nth-child(4) { animation-delay: 240ms; }
.eth-stagger > *:nth-child(5) { animation-delay: 320ms; }
.eth-stagger > *:nth-child(n + 6) { animation-delay: 400ms; }
.eth-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin: 2rem 0 0;
    border-top: 1px solid var(--line);
}
.eth-facts div {
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
}
.eth-facts div:nth-child(odd) { padding-right: 1rem; }
.eth-facts div:nth-child(even) { padding-left: 1rem; border-left: 1px solid var(--line); }
.eth-facts dt {
    color: var(--mute);
    font-size: 0.62rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
}
.eth-facts dd { margin: 0.3rem 0 0; font-family: var(--serif); font-size: 1.35rem; }
.eth-rates {
    list-style: none;
    margin: 1.8rem 0 0;
    padding: 0;
    display: grid;
    gap: 0;
}
.eth-rates li {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    padding: 0.35rem 0;
    color: var(--rose);
    font-size: 0.74rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.eth-rates li::after {
    content: "";
    order: 1;
    flex: 1;
    border-bottom: 1px dotted var(--line-2);
    transform: translateY(-4px);
}
.eth-rates strong {
    order: 2;
    color: var(--gold-hi);
    font-family: var(--serif);
    font-size: 1.7rem;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
}
.eth-profile .eth-hero__cta { margin-top: 2rem; }

/* ---------- method ---------- */
.eth-method {
    position: relative;
    background: linear-gradient(180deg, transparent, var(--ink-2) 20%, var(--ink-2) 80%, transparent);
}
.eth-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    list-style: none;
    margin: 3rem 0 0;
    padding: 0;
    border-top: 1px solid var(--line);
}
.eth-steps li {
    position: relative;
    padding: 2.2rem 2rem 1rem 0;
    transition: transform 700ms var(--ease);
}
.eth-steps li + li { padding-left: 2rem; border-left: 1px solid var(--line); }
.eth-steps li::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--champagne);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1200ms var(--ease);
}
.eth-steps li:hover::before { transform: scaleX(1); }
.eth-steps span {
    display: block;
    margin-bottom: 1.2rem;
    font-family: var(--serif);
    font-size: 3.6rem;
    font-style: italic;
    font-weight: 300;
    line-height: 1;
    background: var(--champagne);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.eth-steps h3 { font-size: 1.9rem; font-style: italic; }
.eth-steps p { margin: 0.7rem 0 0; color: var(--rose); font-size: 0.95rem; }

/* ---------- forms ---------- */
.eth-split {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(2rem, 6vw, 6rem);
    align-items: start;
}
.eth-apply {
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--line);
}
.eth-apply::before {
    content: "";
    position: absolute;
    right: -20%;
    bottom: -40%;
    width: 70vw;
    height: 70vw;
    z-index: -1;
    border-radius: 50%;
    background: radial-gradient(closest-side, rgba(124, 20, 41, 0.35), transparent);
}
.eth-apply h2 { max-width: 44rem; }
.eth-apply .eth-lede { margin-bottom: 2.4rem; }
.eth-form { display: grid; gap: 1.4rem; }
.eth-form--wide { max-width: 44rem; }
.eth-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.eth-form label {
    position: relative;
    display: grid;
    gap: 0.2rem;
    font-size: 0.62rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--mute);
    transition: color 300ms ease;
}
.eth-form label:focus-within { color: var(--gold); }
.eth-form input,
.eth-form textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid var(--line-2);
    border-radius: 0;
    background: transparent;
    color: var(--ivory);
    padding: 0.7rem 0;
    font: inherit;
    font-family: var(--serif);
    font-size: 1.3rem;
    text-transform: none;
    letter-spacing: 0;
    resize: vertical;
    background-image: var(--champagne);
    background-repeat: no-repeat;
    background-position: 0 100%;
    background-size: 0 1px;
    transition: background-size 800ms var(--ease);
}
.eth-form input::placeholder,
.eth-form textarea::placeholder { color: rgba(155, 143, 136, 0.55); font-style: italic; }
.eth-form input:focus,
.eth-form textarea:focus { outline: none; background-size: 100% 1px; }
.eth-form .eth-btn { justify-self: start; margin-top: 0.6rem; }
.eth-form__ok {
    color: var(--gold-hi);
    font-family: var(--serif);
    font-size: 1.3rem;
    font-style: italic;
    animation: eth-rise 900ms var(--ease) both;
}
.eth-form__err {
    margin: 0 0 0.4rem;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(124, 20, 41, 0.7);
    border-radius: 14px;
    background: rgba(124, 20, 41, 0.18);
    color: var(--ivory);
    font-size: 0.92rem;
}

.eth-check {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 0.65rem;
    text-transform: none !important;
    letter-spacing: 0 !important;
    color: var(--rose) !important;
    font-size: 0.9rem !important;
}
.eth-check input { width: auto; accent-color: var(--gold); }

/* ---------- auth / account ---------- */
.eth-auth {
    min-height: calc(100svh - var(--nav-h));
    display: grid;
    place-items: center;
    padding: 6vh var(--gutter) 8vh;
}
.eth-auth__panel { width: min(460px, 100%); }
.eth-auth__panel > * { animation: eth-rise 1100ms var(--ease) both; }
.eth-auth__panel > *:nth-child(2) { animation-delay: 80ms; }
.eth-auth__panel > *:nth-child(3) { animation-delay: 160ms; }
.eth-auth__panel > *:nth-child(n + 4) { animation-delay: 240ms; }
.eth-auth__panel h1 { font-size: clamp(3rem, 8vw, 4.6rem); font-style: italic; font-weight: 300; }
.eth-auth__panel .eth-form { margin-top: 2rem; }
.eth-auth--account { place-items: start center; }
.eth-account { width: min(820px, 100%); }
.eth-account .eth-hero__cta { margin-top: 1.8rem; }
.eth-account__card {
    display: grid;
    grid-template-columns: 188px minmax(0, 1fr);
    gap: 1.8rem;
    margin-top: 2rem;
}
.eth-account__photo {
    margin: 0;
    overflow: hidden;
    border-radius: 999px 999px 18px 18px;
    background: var(--panel);
    aspect-ratio: 3 / 4;
}
.eth-account__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 22%;
}
.eth-account__area {
    margin: 0.4rem 0 0.15rem;
    color: var(--ivory);
    font-family: var(--serif);
    font-size: 1.4rem;
    font-style: italic;
}
.eth-account__email {
    margin: 0 0 1rem;
    color: var(--mute);
    font-size: 0.88rem;
}
.eth-account .eth-facts,
.eth-account .eth-rates { margin-top: 1.2rem; }
.eth-auth__foot {
    margin: 1.6rem 0 0;
    color: var(--mute);
    font-size: 0.9rem;
}
.eth-auth__foot a { color: var(--gold-hi); text-underline-offset: 4px; }
.eth-auth__foot--apply { margin-top: 1.8rem; }

/* ---------- footer ---------- */
.eth-foot {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: end;
    gap: 1.4rem 4rem;
    border-top: 1px solid var(--line);
    color: var(--mute);
    font-size: 0.82rem;
}
.eth-foot .eth-mark { height: 44px; }
.eth-foot p { margin: 0; }
.eth-foot .eth-logo + p { margin-top: 0.7rem; letter-spacing: 0.08em; }
.eth-legal { max-width: 52rem; line-height: 1.7; justify-self: end; font-size: 0.76rem; }

/* ---------- age gate ---------- */
.eth-gate {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: grid;
    place-items: center;
    padding: 1.5rem;
    overflow: hidden;
}
.eth-gate[hidden],
html.eth-age-ok .eth-gate:not(.is-leaving) { display: none !important; }
.eth-gate__curtain {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50.5%;
    background:
        radial-gradient(120% 60% at 50% 110%, rgba(124, 20, 41, 0.55), transparent 60%),
        repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.42) 0 22px, rgba(124, 20, 41, 0.12) 38px, rgba(0, 0, 0, 0.42) 64px),
        linear-gradient(180deg, #16070b, #0a0405);
    transition: transform 1500ms var(--silk);
}
.eth-gate__curtain--l { left: 0; box-shadow: inset -30px 0 60px -30px rgba(0, 0, 0, 0.9); }
.eth-gate__curtain--r { right: 0; box-shadow: inset 30px 0 60px -30px rgba(0, 0, 0, 0.9); }
.eth-gate.is-leaving .eth-gate__curtain--l { transform: translateX(-102%); }
.eth-gate.is-leaving .eth-gate__curtain--r { transform: translateX(102%); }
.eth-gate__panel {
    position: relative;
    z-index: 1;
    width: min(460px, 100%);
    text-align: center;
    animation: eth-rise 1400ms var(--ease) 200ms both;
    transition: opacity 600ms ease, transform 900ms var(--ease), filter 700ms ease;
}
.eth-gate.is-leaving .eth-gate__panel { opacity: 0; transform: scale(0.96); filter: blur(10px); }
.eth-gate__panel .eth-kicker::before { display: none; }
.eth-gate__mark {
    position: relative;
    width: 108px;
    height: 108px;
    margin: 0 auto 1.6rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(220, 176, 122, 0.35);
    background: radial-gradient(circle at 50% 70%, rgba(124, 20, 41, 0.6), rgba(7, 5, 6, 0.6) 70%);
    box-shadow: 0 0 60px -10px rgba(124, 20, 41, 0.8);
}
.eth-gate__mark::after {
    content: "";
    position: absolute;
    inset: -9px;
    border-radius: 50%;
    border: 1px solid rgba(220, 176, 122, 0.12);
    animation: eth-halo 3.2s ease-in-out infinite;
}
@keyframes eth-halo {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.08); opacity: 1; }
}
.eth-gate__mark .eth-mark { height: 54px; }
.eth-gate__mark span {
    position: absolute;
    bottom: -0.55rem;
    padding: 0.1rem 0.55rem;
    border-radius: 999px;
    background: var(--ink);
    border: 1px solid rgba(220, 176, 122, 0.35);
    color: var(--gold);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
}
.eth-gate__panel h2 { font-size: clamp(2.4rem, 7vw, 3.2rem); font-style: italic; font-weight: 300; }
.eth-gate__panel .eth-lede { margin-inline: auto; font-size: 0.95rem; }
.eth-gate__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 2rem;
}
.eth-mark__arm { stroke-dasharray: 140; stroke-dashoffset: 0; }
.eth-gate .eth-mark__arm { animation: eth-draw 1600ms var(--ease) 500ms both; }
@keyframes eth-draw { from { stroke-dashoffset: 140; } }

/* ---------- page transitions ---------- */
@view-transition { navigation: auto; }
::view-transition-old(root) { animation: 420ms var(--silk) both eth-vt-out; }
::view-transition-new(root) { animation: 700ms var(--ease) 120ms both eth-vt-in; }
::view-transition-group(eth-photo),
::view-transition-group(eth-name) { animation-duration: 800ms; animation-timing-function: var(--ease); }
@keyframes eth-vt-out { to { opacity: 0; filter: blur(8px); transform: scale(0.985); } }
@keyframes eth-vt-in { from { opacity: 0; filter: blur(8px); transform: scale(1.01); } }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
    :root { --nav-h: 64px; }
    .eth-nav { gap: 0.8rem; }
    .eth-menu { display: inline-flex; align-items: center; }
    .eth-logo__word { display: none; }
    .eth-nav__links {
        position: fixed;
        inset: var(--nav-h) 0 auto;
        flex-direction: column;
        justify-content: flex-start;
        gap: 0;
        padding: 1rem var(--gutter) 2rem;
        background: rgba(7, 5, 6, 0.96);
        backdrop-filter: blur(18px);
        border-bottom: 1px solid var(--line);
        clip-path: inset(0 0 100% 0);
        transition: clip-path 700ms var(--silk);
    }
    .eth-nav.is-open .eth-nav__links { clip-path: inset(0 0 0 0); }
    .eth-nav__links a {
        padding: 0.9rem 0;
        border-bottom: 1px solid var(--line);
        font-family: var(--serif);
        font-size: 1.9rem;
        font-style: italic;
        letter-spacing: 0;
        text-transform: none;
        color: var(--ivory);
    }
    .eth-nav__links a::after { display: none; }
    .eth-nav__meta { margin-left: 0; }
    .eth-menu { margin-left: auto; }

    .eth-hero {
        grid-template-columns: 1fr;
        align-items: end;
        min-height: calc(100svh - var(--nav-h));
        padding-top: 0;
        padding-bottom: 5.5rem;
    }
    .eth-hero__stage {
        position: absolute;
        inset: 0;
        width: 100%;
        z-index: 0;
    }
    .eth-hero__stage::after,
    .eth-hero__caption { display: none; }
    .eth-hero__frame {
        height: 100%;
        max-height: none;
        aspect-ratio: auto;
        border-radius: 0;
        opacity: 0.6;
        -webkit-mask-image: linear-gradient(180deg, #000 15%, rgba(0, 0, 0, 0.5) 55%, transparent 92%);
        mask-image: linear-gradient(180deg, #000 15%, rgba(0, 0, 0, 0.5) 55%, transparent 92%);
        animation-name: eth-fade;
    }
    .eth-hero__frame--mascot { opacity: 0.78; }
    .eth-hero__slide--mascot { object-position: 50% 28%; }
    @keyframes eth-fade { from { opacity: 0; } to { opacity: 0.6; } }
    .eth-hero .eth-display { font-size: clamp(3.2rem, 15vw, 5rem); }
    .eth-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .eth-stats div { padding: 0.9rem 0.6rem 0 0; margin: 0; }
    .eth-stats div + div { padding-left: 0.8rem; }
    .eth-stats dt { letter-spacing: 0.18em; }
    .eth-stats dd { font-size: 1.02rem; }

    .eth-band { grid-template-columns: 1fr; }
    .eth-split, .eth-grid, .eth-steps, .eth-form__row,
    .eth-profile__grid, .eth-account__card, .eth-foot { grid-template-columns: 1fr; }
    .eth-grid .eth-card:nth-child(3n + 2),
    html.eth-js .eth-grid .eth-card:nth-child(3n + 2)[data-reveal].is-visible { transform: none; }
    html.eth-js .eth-grid .eth-card:nth-child(3n + 2)[data-reveal]:not(.is-visible) { transform: translateY(34px); }
    .eth-grid { padding-bottom: 0; }
    .eth-steps li, .eth-steps li + li { padding: 1.8rem 0; border-left: 0; border-bottom: 1px solid var(--line); }
    .eth-rail { display: none; }
    .eth-featured .eth-card { flex-basis: 76vw; }
    .eth-profile__photo { position: relative; top: 0; }
    .eth-profile__photo img { height: 115vw; max-height: 620px; min-height: 360px; }
    .eth-account__photo { max-width: 220px; }
    .eth-legal { justify-self: start; }
    .eth-glow { display: none; }
}

@media (max-width: 480px) {
    .eth-lang button { padding: 0.35rem 0.5rem; }
    .eth-nav__meta .eth-btn--tiny { padding: 0 0.8rem; letter-spacing: 0.1em; }
    .eth-hero__cta .eth-btn { flex: 1 1 100%; }
    .eth-facts { grid-template-columns: 1fr; }
    .eth-facts div:nth-child(even) { padding-left: 0; border-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 1ms !important;
        animation-delay: 0ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 1ms !important;
        transition-delay: 0ms !important;
    }
    html { scroll-behavior: auto; }
    .eth-grain { animation: none; }
    .eth-marquee__track { animation: none; }
    @view-transition { navigation: none; }
}

.admin-bar .eth-nav { top: 32px; }

.eth-hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.eth-card { position: relative; }
.eth-dot {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--pink);
    box-shadow: 0 0 12px var(--pink);
    animation: eth-pulse 2s ease-in-out infinite;
}
@keyframes eth-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.55; transform: scale(0.85); }
}
.eth-badge--pulse::before { animation: eth-pulse 2s ease-in-out infinite; }
.eth-fav-form { margin: 0; }
.eth-fav-form--card { position: absolute; top: 0.9rem; right: 0.9rem; z-index: 3; }
.eth-fav {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    border: 1px solid rgba(220, 176, 122, 0.35);
    background: rgba(7, 5, 6, 0.55);
    color: var(--champagne);
    font-size: 1rem;
    cursor: pointer;
}
.eth-fav.is-on, .eth-fav:hover { color: var(--wine); background: var(--pink-hi); }
.eth-fav--link { display: inline-flex; align-items: center; justify-content: center; text-decoration: none; }
.eth-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.5rem 0 2rem;
    border-bottom: 1px solid var(--line);
    padding-bottom: 0.75rem;
}
.eth-tabs a {
    padding: 0.4rem 0.75rem;
    color: var(--mute);
    text-decoration: none;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.eth-tabs a.is-on { color: var(--gold-hi); border-bottom: 1px solid var(--gold); }
.eth-tab-panel { margin-bottom: 2.5rem; max-width: 100%; overflow-x: hidden; }
.eth-account-panel { max-width: min(100%, 720px); }
.eth-grid--account { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
.eth-orders { list-style: none; margin: 0; padding: 0; }
.eth-orders li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 0.35rem;
    font-size: 0.85rem;
}
.eth-order-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.eth-seals { list-style: none; margin: 0 0 1rem; padding: 0; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.eth-seals--profile { margin-top: 0.5rem; }
.eth-profile__thumbs {
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem;
    overflow-x: auto;
}
.eth-thumb {
    flex: 0 0 auto;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 8px;
    background: none;
    cursor: pointer;
    opacity: 0.7;
}
.eth-thumb.is-on { border-color: var(--gold); opacity: 1; }
.eth-thumb img { width: 64px; height: 84px; object-fit: cover; border-radius: 6px; display: block; }
#eth-profile-main { transition: opacity 400ms ease; }
#eth-profile-main.is-fading { opacity: 0.2; }
.eth-gallery-admin { display: flex; flex-wrap: wrap; gap: 1rem; }
.eth-gallery-admin figure { max-width: 140px; }
.eth-form--danger { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.eth-form--cta { display: grid; gap: 1rem; }
.eth-inline-form { margin: 1rem 0; }
