:root {
    --ink: #1B1B1B;
    --ink-soft: #242424;
    --paper: #F3EFE8;
    --paper-soft: #E9E2D9;
    --champagne: #A47D5A;
    --champagne-light: #B8916E;
    --muted: #81776D;
    --muted-dark: #A69B90;
    --line-dark: rgba(27, 27, 27, .14);
    --line-light: rgba(243, 239, 232, .14);
    --serif: "DM Serif Display", Georgia, serif;
    --sans: "Sora", Arial, sans-serif;
    --script: "DM Serif Display", Georgia, serif;
    --header-height: 76px;
    --page-x: clamp(22px, 7vw, 120px);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    background: var(--ink);
    color: var(--muted-dark);
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.6;
    min-width: 320px;
}

body.is-locked {
    overflow: hidden;
}

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

button,
input {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
    text-decoration: none;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
    outline: 2px solid var(--champagne);
    outline-offset: 3px;
}

[hidden] {
    display: none !important;
}

.sr-only {
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.utility-bar {
    display: none;
}

/* Header */
.site-header {
    align-items: center;
    background: rgba(27, 27, 27, .42);
    border-bottom: 1px solid transparent;
    color: var(--paper);
    display: grid;
    gap: 36px;
    grid-template-columns: auto 1fr auto;
    height: var(--header-height);
    left: 0;
    padding: 0 clamp(24px, 6vw, 80px);
    position: fixed;
    top: 0;
    transition: background .35s ease, border-color .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
    width: 100%;
    z-index: 50;
}

.site-header.is-scrolled,
.site-header:has(.main-nav.is-open) {
    backdrop-filter: blur(16px);
    background: rgba(27, 27, 27, .94);
    border-bottom-color: rgba(243,239,232,.08);
    box-shadow: 0 10px 35px rgba(0, 0, 0, .25);
}

.brand {
    align-items: flex-start;
    display: inline-flex;
    flex-direction: column;
    line-height: 1;
}

.brand-word {
    color: var(--paper);
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 600;
    letter-spacing: .22em;
}

.brand-note {
    color: var(--champagne);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: .22em;
    margin-top: 8px;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    gap: clamp(18px, 2.6vw, 42px);
    justify-content: center;
}

.main-nav a,
.header-cta {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
    position: relative;
    text-transform: uppercase;
}

.main-nav a::after {
    background: var(--champagne);
    bottom: -8px;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
    width: 100%;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
    transform: scaleX(1);
}

.header-cta {
    background: var(--champagne);
    color: var(--ink);
    padding: 11px 18px;
    transition: background .25s ease, transform .25s ease;
}

.header-cta:hover {
    background: var(--champagne-light);
    transform: translateY(-1px);
}

.menu-toggle {
    background: transparent;
    border: 0;
    display: none;
}

/* Hero */
.hero {
    align-items: center;
    color: var(--paper);
    display: grid;
    justify-items: center;
    min-height: 100svh;
    overflow: hidden;
    padding: calc(var(--header-height) + 60px) 24px 72px;
    position: relative;
    text-align: center;
}

.hero-media,
.hero-image,
.hero-shade {
    inset: 0;
    position: absolute;
}

.hero-image {
    animation: heroDrift 16s ease-in-out infinite alternate;
    background: url("https://images.unsplash.com/photo-1517841905240-472988babdf9?auto=format&fit=crop&w=1900&q=90") center 28% / cover no-repeat;
    filter: saturate(.62) contrast(1.12);
    transform: scale(1.04);
    will-change: transform;
}

.hero-shade {
    background:
        radial-gradient(circle at center, rgba(0, 0, 0, .24), rgba(0, 0, 0, .78) 86%),
        linear-gradient(0deg, rgba(0, 0, 0, .62), rgba(0, 0, 0, .2));
}

@keyframes heroDrift {
    from { transform: scale(1.04) translate3d(-.5%, 0, 0); }
    to { transform: scale(1.12) translate3d(1.5%, -.8%, 0); }
}

.hero-content,
.hero-scroll {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 1040px;
}

.eyebrow {
    color: var(--champagne);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .22em;
    margin-bottom: 22px;
    text-transform: uppercase;
}

.hero .eyebrow {
    animation: heroScriptIn 1.15s cubic-bezier(.2, .8, .2, 1) .15s both;
    font-family: var(--script);
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 400;
    letter-spacing: 0;
    line-height: .8;
    margin-bottom: 8px;
    text-transform: none;
}

.hero h1 {
    animation: heroTitleIn 1.1s cubic-bezier(.18, .82, .22, 1) .28s both;
    font-family: var(--serif);
    font-size: clamp(44px, 5.2vw, 70px);
    font-weight: 800;
    letter-spacing: .10em;
    line-height: .92;
    margin-left: .1em;
    text-transform: uppercase;
}

.hero h1 em {
    color: var(--paper);
    font-style: normal;
    font-weight: 800;
}

.hero-copy {
    animation: heroCopyIn .9s ease .58s both;
    color: rgba(243,239,232,.74);
    font-size: clamp(14px, 1.4vw, 18px);
    margin: 28px auto 0;
    max-width: 650px;
}

.hero-actions {
    animation: heroCopyIn .9s ease .74s both;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 34px;
}

@keyframes heroScriptIn {
    from { opacity: 0; transform: translateY(24px) scale(.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes heroTitleIn {
    from { opacity: 0; letter-spacing: .17em; transform: translateY(28px); }
    to { opacity: 1; letter-spacing: .10em; transform: translateY(0); }
}

@keyframes heroCopyIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.button {
    align-items: center;
    border: 1px solid transparent;
    cursor: pointer;
    display: inline-flex;
    font-size: 11px;
    font-weight: 700;
    justify-content: center;
    letter-spacing: .10em;
    min-height: 48px;
    overflow: hidden;
    padding: 0 22px;
    position: relative;
    text-transform: uppercase;
    transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
    z-index: 0;
}

.button::after {
    background: rgba(243,239,232,.16);
    content: "";
    inset: 0;
    position: absolute;
    transform: translateX(-105%) skewX(-18deg);
    transition: transform .45s ease;
    z-index: -1;
}

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

.button:hover::after {
    transform: translateX(0) skewX(0);
}

.button-primary {
    background: var(--champagne);
    color: var(--ink);
}

.button-primary:hover {
    background: var(--champagne-light);
}

.button-ghost {
    border-color: rgba(243,239,232,.42);
    color: var(--paper);
}

.button-ghost:hover {
    border-color: var(--paper);
}

.button-full {
    width: 100%;
}

.hero-scroll {
    align-items: center;
    bottom: 62px;
    display: flex;
    font-size: 9px;
    gap: 14px;
    letter-spacing: .18em;
    position: absolute;
    right: clamp(22px, 6vw, 96px);
    text-transform: uppercase;
    transform: rotate(90deg) translateX(100%);
    transform-origin: right bottom;
}

.scroll-line {
    background: var(--champagne);
    display: block;
    height: 1px;
    width: 54px;
}

/* Shared sections */
.section {
    padding: clamp(82px, 10vw, 150px) var(--page-x);
}

.section-heading,
.contact-intro {
    display: grid;
    gap: 16px 28px;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
    margin-bottom: 34px;
}

.section-heading .eyebrow,
.contact-intro .eyebrow {
    grid-column: 1 / -1;
    margin-bottom: 0;
}

.section-heading h2,
.contact-intro h2,
.club-copy h2 {
    color: var(--paper);
    font-family: var(--serif);
    font-size: clamp(30px, 3.2vw, 46px);
    font-weight: 700;
    letter-spacing: .07em;
    line-height: 1;
    text-transform: uppercase;
}

.section-heading > p:last-child,
.contact-intro > p:last-child {
    align-self: end;
    color: #746B62;
    max-width: 460px;
}

/* Services */
.services,
.services.section {
    background: var(--paper);
    color: #242424;
    padding-bottom: 64px;
    padding-top: 70px;
}

.services .section-heading h2 {
    color: #242424;
}

.services .eyebrow {
    color: var(--champagne);
}

.service-explorer {
    border-bottom: 1px solid var(--line-dark);
}

.service-tabs {
    background: var(--paper);
    border-bottom: 1px solid var(--line-dark);
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.service-tab {
    background: transparent;
    border: 0;
    color: #81776D;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-height: 62px;
    padding: 10px 10px 12px;
    position: relative;
    text-align: left;
    transition: background .3s ease, color .3s ease;
}

.service-tab::after {
    background: var(--champagne);
    bottom: -1px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
    width: 100%;
}

.service-tab small {
    color: var(--champagne);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .18em;
}

.service-tab span {
    font-family: var(--serif);
    font-size: clamp(10px, .85vw, 13px);
    font-weight: 600;
    letter-spacing: .06em;
    line-height: 1.25;
    text-transform: uppercase;
}

.service-tab:hover,
.service-tab:focus-visible,
.service-tab.is-active {
    color: #242424;
}

.service-tab.is-active {
    background: #F3EFE8;
}

.service-tab.is-active::after {
    transform: scaleX(1);
}

.service-panel {
    animation: servicePanelIn .55s cubic-bezier(.2, .75, .2, 1) both;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, .8fr) minmax(280px, .9fr);
    height: 410px;
    overflow: hidden;
}

@keyframes servicePanelIn {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

.service-visual {
    height: 410px;
    overflow: hidden;
    position: relative;
}

.service-visual::after {
    background: linear-gradient(0deg, rgba(0, 0, 0, .55), transparent 45%);
    content: "";
    inset: 0;
    position: absolute;
}

.service-visual img {
    height: 100%;
    object-fit: cover;
    transition: transform 7s ease;
    width: 100%;
}

.service-panel.is-active .service-visual img {
    transform: scale(1.06);
}

.service-visual span {
    bottom: 20px;
    color: var(--paper);
    font-size: 9px;
    font-weight: 700;
    left: 22px;
    letter-spacing: .16em;
    position: absolute;
    text-transform: uppercase;
    z-index: 2;
}

.service-panel blockquote {
    align-items: center;
    background:
        linear-gradient(rgba(0, 0, 0, .72), rgba(0, 0, 0, .80)),
        url("https://images.unsplash.com/photo-1515377905703-c4788e51af15?auto=format&fit=crop&w=800&q=70") center / cover;
    color: var(--paper);
    display: flex;
    font-family: var(--serif);
    font-size: clamp(20px, 1.8vw, 28px);
    font-style: normal;
    font-weight: 600;
    height: 410px;
    justify-content: center;
    line-height: 1.2;
    padding: clamp(30px, 4vw, 58px);
    text-align: center;
}

.service-detail {
    align-items: flex-start;
    background: var(--paper-soft);
    display: flex;
    flex-direction: column;
    height: 410px;
    justify-content: center;
    padding: clamp(30px, 4vw, 58px);
}

.service-detail .eyebrow {
    margin-bottom: 15px;
}

.service-detail h3 {
    color: #242424;
    font-family: var(--serif);
    font-size: clamp(25px, 2.1vw, 34px);
    font-weight: 600;
    letter-spacing: -.03em;
    line-height: 1.05;
}

.service-detail > p:not(.eyebrow) {
    color: #746B62;
    font-size: 14px;
    margin: 18px 0 26px;
}

/* Staff */
.talent-catalog,
.talent-catalog.section {
    background: var(--paper);
    color: #242424;
    padding-bottom: 72px;
    padding-top: 72px;
}

.talent-catalog .section-heading h2 {
    color: #242424;
}

.talent-catalog .section-heading > p:last-child {
    color: #746B62;
}

.talent-card-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.talent-card {
    background: #E9E2D9;
    border: 0;
    color: #242424;
    cursor: pointer;
    overflow: hidden;
    padding: 0;
    text-align: left;
}

.talent-card > img {
    aspect-ratio: 4 / 5;
    filter: saturate(.82);
    object-fit: cover;
    transition: filter .45s ease, transform .75s cubic-bezier(.2, .7, .2, 1);
    width: 100%;
}

.talent-card:hover > img,
.talent-card:focus-visible > img {
    filter: saturate(1);
    transform: scale(1.045);
}

.talent-card > span {
    align-items: center;
    display: flex;
    justify-content: space-between;
    min-height: 68px;
    padding: 15px 18px;
}

.talent-card strong {
    font-family: var(--serif);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.talent-card small {
    color: #81776D;
    font-size: 9px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

/* Club */
.club {
    background: #1B1B1B;
}

.club-card {
    background: linear-gradient(110deg, rgba(0, 0, 0, .94), rgba(18, 18, 18, .9));
    border: 1px solid rgba(164,125,90,.32);
    color: var(--paper);
    display: grid;
    gap: clamp(50px, 8vw, 130px);
    grid-template-columns: 1fr minmax(300px, .72fr);
    overflow: hidden;
    padding: clamp(40px, 7vw, 100px);
    position: relative;
}

.club-card::before {
    border: 1px solid rgba(164,125,90,.22);
    border-radius: 50%;
    content: "";
    height: 540px;
    left: -230px;
    position: absolute;
    top: -220px;
    width: 540px;
}

.club-copy,
.club-form {
    position: relative;
}

.club-copy h2 em {
    color: var(--champagne-light);
    font-style: normal;
}

.club-copy > p:not(.eyebrow) {
    color: rgba(243,239,232,.62);
    margin-top: 24px;
    max-width: 570px;
}

.club-benefits {
    border-top: 1px solid var(--line-light);
    list-style: none;
    margin-top: 42px;
}

.club-benefits li {
    border-bottom: 1px solid var(--line-light);
    padding: 16px 0;
}

.club-benefits span {
    color: var(--champagne);
    display: inline-block;
    font-size: 9px;
    letter-spacing: .12em;
    width: 42px;
}

.club-form {
    align-self: center;
    background: rgba(243,239,232,.04);
    border: 1px solid rgba(164,125,90,.28);
    color: var(--paper);
    padding: clamp(28px, 4vw, 50px);
}

.club-form > p:first-child {
    font-family: var(--serif);
    font-size: 27px;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 26px;
}

.club-form label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .1em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.club-form input {
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(243,239,232,.24);
    border-radius: 0;
    color: var(--paper);
    display: block;
    font-size: 16px;
    margin-top: 8px;
    outline: none;
    padding: 10px 0;
    width: 100%;
}

.club-form input::placeholder {
    color: rgba(243,239,232,.35);
}

.club-form input:focus {
    border-color: var(--champagne);
}

.club-form small {
    color: #91867B;
    display: block;
    font-size: 10px;
    margin-top: 16px;
}

.form-message {
    font-size: 13px;
    margin-top: 14px;
    min-height: 21px;
}

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

.contact-intro {
    margin-bottom: clamp(52px, 7vw, 90px);
}

.contact-options {
    border-top: 1px solid rgba(164,125,90,.65);
}

.contact-link {
    align-items: center;
    border-bottom: 1px solid var(--line-light);
    display: grid;
    gap: 24px;
    grid-template-columns: 44px 1fr auto;
    padding: 27px 0;
    transition: background .3s ease, color .3s ease, padding .3s ease;
}

.contact-link:hover {
    background: rgba(164,125,90,.08);
    color: var(--paper);
    padding-left: 24px;
    padding-right: 24px;
}

.contact-index {
    color: var(--champagne);
    font-size: 10px;
    letter-spacing: .15em;
}

.contact-link strong {
    color: var(--paper);
    display: block;
    font-family: var(--serif);
    font-size: clamp(22px, 2.4vw, 32px);
    font-weight: 600;
    line-height: 1;
}

.contact-link small {
    color: #81776D;
    display: block;
    font-size: 11px;
    margin-top: 6px;
}

.contact-arrow {
    color: var(--champagne);
    font-size: 24px;
}

/* Footer */
.site-footer {
    align-items: end;
    background: var(--ink);
    border-top: 1px solid var(--line-light);
    color: rgba(243,239,232,.50);
    display: grid;
    font-size: 10px;
    gap: 30px;
    grid-template-columns: 1fr auto auto;
    letter-spacing: .1em;
    padding: 54px var(--page-x) 82px;
    text-transform: uppercase;
}

.brand-footer {
    color: var(--paper);
}

.mobile-contact-bar {
    display: none;
}

/* Profile dialog */
dialog {
    margin: auto;
}

dialog::backdrop {
    backdrop-filter: blur(8px);
    background: rgba(0, 0, 0, .92);
}

.profile-dialog {
    background: #1B1B1B;
    border: 0;
    color: var(--paper);
    height: 100svh;
    margin: 0;
    max-height: 100svh;
    max-width: 100vw;
    overflow: hidden;
    padding: 0;
    width: 100vw;
}

.dialog-close,
.video-close {
    align-items: center;
    background: rgba(0, 0, 0, .58);
    border: 1px solid rgba(243,239,232,.28);
    border-radius: 50%;
    color: var(--paper);
    cursor: pointer;
    display: flex;
    font-size: 25px;
    height: 44px;
    justify-content: center;
    line-height: 1;
    position: fixed;
    right: 22px;
    top: 18px;
    width: 44px;
    z-index: 10;
}

.gallery-lightbox {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) 72px;
    height: calc(100svh - 126px);
}

.gallery-stage {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    min-height: 0;
}

.gallery-stage > img {
    height: 100%;
    max-height: calc(100svh - 200px);
    object-fit: contain;
    width: 100%;
}

.gallery-stage > img.is-changing {
    animation: galleryPhotoIn .38s ease both;
}

@keyframes galleryPhotoIn {
    from { opacity: .25; transform: scale(.985); }
    to { opacity: 1; transform: scale(1); }
}

.gallery-stage figcaption {
    align-items: center;
    display: flex;
    justify-content: space-between;
    min-height: 74px;
    padding: 12px 6px;
}

.gallery-stage h2 {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.gallery-stage .dialog-traits {
    color: #A69B90;
    font-size: 11px;
    letter-spacing: .08em;
    margin-top: 3px;
    text-transform: uppercase;
}

#galleryCounter {
    color: var(--champagne);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .15em;
}

.gallery-arrow {
    align-self: center;
    background: transparent;
    border: 0;
    color: rgba(243,239,232,.72);
    cursor: pointer;
    font-size: 34px;
    height: 80px;
    transition: color .25s ease, transform .25s ease;
}

.gallery-arrow:hover,
.gallery-arrow:focus-visible {
    color: var(--champagne);
    transform: scale(1.12);
}

.gallery-toolbar {
    align-items: center;
    border-top: 1px solid var(--line-light);
    display: grid;
    gap: 22px;
    grid-template-columns: minmax(0, 1fr) auto;
    height: 126px;
    padding: 14px 28px;
}

.gallery-thumbnails {
    display: flex;
    gap: 8px;
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: thin;
}

.gallery-thumbnails button {
    background: transparent;
    border: 2px solid transparent;
    cursor: pointer;
    flex: 0 0 62px;
    height: 86px;
    opacity: .5;
    padding: 0;
    transition: border-color .25s ease, opacity .25s ease;
}

.gallery-thumbnails button.is-active {
    border-color: var(--champagne);
    opacity: 1;
}

.gallery-thumbnails img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.gallery-actions {
    display: flex;
    gap: 10px;
}

/* Video dialog */
.video-dialog {
    background: transparent;
    border: 0;
    color: var(--paper);
    height: 94svh;
    max-height: 94svh;
    max-width: 720px;
    overflow: visible;
    width: min(92vw, 720px);
}

.video-stage {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

.video-stage p {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.video-stage video {
    aspect-ratio: 9 / 16;
    background: #1B1B1B;
    height: calc(94svh - 70px);
    max-width: 100%;
    object-fit: contain;
}

/* Scroll reveal */
.js-animations .reveal-item {
    opacity: 0;
    transform: translate3d(0, 36px, 0);
    transition:
        opacity .75s ease var(--reveal-delay, 0ms),
        transform .85s cubic-bezier(.2, .75, .2, 1) var(--reveal-delay, 0ms);
}

.js-animations .reveal-item.is-revealed {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* Tablet */
@media (max-width: 1000px) {
    .service-panel {
        grid-template-columns: 1.15fr .85fr;
        height: 380px;
    }

    .service-panel blockquote {
        display: none;
    }

    .service-visual,
    .service-detail {
        height: 380px;
    }
}

@media (max-width: 900px) {
    :root {
        --header-height: 68px;
        --page-x: 20px;
    }

    .site-header {
        background: rgba(27, 27, 27, .96);
        grid-template-columns: 1fr auto;
        padding: 0 20px;
    }

    .menu-toggle {
        cursor: pointer;
        display: flex;
        flex-direction: column;
        gap: 7px;
        height: 40px;
        justify-content: center;
        width: 40px;
    }

    .menu-toggle span:not(.sr-only) {
        background: var(--paper);
        display: block;
        height: 1px;
        margin-left: auto;
        transition: transform .25s ease, width .25s ease;
        width: 25px;
    }

    .menu-toggle span:nth-child(2) {
        width: 17px;
    }

    .menu-toggle[aria-expanded="true"] span:first-child {
        transform: translateY(4px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(2) {
        transform: translateY(-4px) rotate(-45deg);
        width: 25px;
    }

    .main-nav {
        background: rgba(5, 5, 5, .97);
        display: flex;
        flex-direction: column;
        gap: 0;
        left: 0;
        opacity: 0;
        padding: 28px 20px 38px;
        pointer-events: none;
        position: absolute;
        top: var(--header-height);
        transform: translateY(-8px);
        transition: opacity .25s ease, transform .25s ease;
        width: 100%;
    }

    .main-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .main-nav a {
        border-bottom: 1px solid var(--line-light);
        font-family: var(--serif);
        font-size: 24px;
        letter-spacing: .04em;
        padding: 16px 0;
        text-transform: uppercase;
    }

    .header-cta {
        display: none;
    }

    .section-heading,
    .contact-intro {
        grid-template-columns: 1fr;
    }

    .section-heading .eyebrow,
    .contact-intro .eyebrow {
        grid-column: auto;
    }

    .service-tabs {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: thin;
    }

    .service-tab {
        flex: 0 0 155px;
        scroll-snap-align: start;
    }

    .talent-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .club-card {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 640px) {
    body {
        padding-bottom: 58px;
    }

    .brand-word {
        font-size: 23px;
    }

    .brand-note {
        font-size: 7px;
        margin-top: 6px;
    }

    .hero {
        min-height: 92svh;
        padding: calc(var(--header-height) + 44px) 20px 50px;
    }

    .hero .eyebrow {
        font-size: 31px;
    }

    .hero h1 {
        font-size: clamp(38px, 11vw, 48px);
        letter-spacing: .07em;
        margin-left: .07em;
    }

    .hero-copy {
        font-size: 14px;
        margin-top: 20px;
        max-width: 92%;
    }

    .hero-actions {
        margin-top: 26px;
        width: 100%;
    }

    .hero-actions .button {
        flex: 1 1 160px;
        min-height: 46px;
        padding: 0 14px;
    }

    .hero-scroll {
        display: none;
    }

    .section {
        padding: 64px 20px;
    }

    .section-heading h2,
    .contact-intro h2,
    .club-copy h2 {
        font-size: 32px;
    }

    .services,
    .services.section {
        padding: 38px 20px 0;
    }

    .services .section-heading {
        gap: 8px;
        margin-bottom: 18px;
    }

    .service-explorer {
        margin-left: -20px;
        margin-right: -20px;
    }

    .service-tabs {
        border-top: 1px solid rgba(0, 0, 0, .12);
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        overflow: visible;
    }

    .service-tab {
        border-bottom: 1px solid rgba(0, 0, 0, .10);
        flex: none;
        min-height: 52px;
        min-width: 0;
        padding: 7px 10px 8px;
        width: 100%;
    }

    .service-tab span {
        font-size: 10px;
    }

    .service-panel {
        display: block;
        height: auto;
        overflow: visible;
    }

    .service-visual,
    .service-visual img {
        height: 235px;
    }

    .service-detail {
        height: auto;
        min-height: 255px;
        padding: 20px;
    }

    .service-detail .eyebrow {
        margin-bottom: 10px;
    }

    .service-detail h3 {
        font-size: 25px;
    }

    .service-detail > p:not(.eyebrow) {
        font-size: 13px;
        margin: 9px 0 16px;
    }

    .talent-catalog,
    .talent-catalog.section {
        padding: 42px 20px 54px;
    }

    .talent-card-grid {
        gap: 10px;
    }

    .talent-card > span {
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
        min-height: 62px;
        padding: 11px 12px;
    }

    .talent-card strong {
        font-size: 13px;
    }

    .club {
        padding: 0;
    }

    .club-card {
        border-left: 0;
        border-right: 0;
        gap: 40px;
        padding: 48px 20px;
    }

    .club-form {
        padding: 26px 20px;
    }

    .contact-link {
        gap: 12px;
        grid-template-columns: 30px 1fr auto;
        padding: 22px 0;
    }

    .contact-link:hover {
        padding-left: 10px;
        padding-right: 10px;
    }

    .site-footer {
        align-items: start;
        gap: 18px;
        grid-template-columns: 1fr;
        padding: 42px 20px 38px;
    }

    .mobile-contact-bar {
        background: rgba(27, 27, 27, .96);
        border-top: 1px solid var(--line-light);
        bottom: 0;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        height: 58px;
        left: 0;
        position: fixed;
        width: 100%;
        z-index: 45;
    }

    .mobile-contact-bar a {
        align-items: center;
        border-right: 1px solid var(--line-light);
        color: var(--paper);
        display: flex;
        font-size: 10px;
        font-weight: 700;
        justify-content: center;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

    .mobile-contact-bar a:first-child {
        background: var(--champagne);
        color: var(--ink);
    }

    .dialog-close,
    .video-close {
        height: 38px;
        right: 12px;
        top: 10px;
        width: 38px;
    }

    .gallery-lightbox {
        grid-template-columns: 42px minmax(0, 1fr) 42px;
        height: calc(100svh - 146px);
    }

    .gallery-stage > img {
        max-height: calc(100svh - 230px);
    }

    .gallery-stage figcaption {
        min-height: 78px;
    }

    .gallery-stage h2 {
        font-size: 17px;
    }

    .gallery-arrow {
        font-size: 25px;
    }

    .gallery-toolbar {
        display: block;
        height: 146px;
        padding: 8px 12px 10px;
    }

    .gallery-thumbnails {
        padding-right: 44px;
    }

    .gallery-thumbnails button {
        flex-basis: 42px;
        height: 56px;
    }

    .gallery-actions {
        gap: 6px;
        margin-top: 8px;
    }

    .gallery-actions .button {
        min-height: 40px;
        padding: 0 11px;
    }

    .video-stage p {
        font-size: 18px;
    }
}

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

    .hero-image,
    .reveal-item {
        transform: none !important;
    }

    .reveal-item {
        opacity: 1 !important;
    }
}


/* =========================================================
   NANNA — RESTAURACIÓN DE LA BASE ESTABLE
   Conserva los cambios aprobados y elimina el experimento
   de parallax del bloque Servicios.
   ========================================================= */

/* Servicios: vuelve al bloque blanco estable */
.services,
.services.section {
    background: #F3EFE8;
    color: #242424;
    isolation: auto;
    overflow: visible;
    padding-bottom: 64px;
    padding-top: 70px;
    position: relative;
}

.services .section-heading {
    gap: 16px 28px;
    margin-bottom: 34px;
}

.services .section-heading h2 { color: #242424; text-shadow: none; }
.services .section-heading > p:last-child { color: #746B62; }
.services .eyebrow { color: var(--champagne); }
.services .service-explorer { background: transparent; box-shadow: none; }

/* Header: CTA + redes */
.header-actions {
    align-items: center;
    display: flex;
    gap: 15px;
}

.header-socials,
.footer-socials {
    align-items: center;
    display: flex;
    gap: 10px;
}

.header-socials a,
.footer-socials a {
    align-items: center;
    color: rgba(243,239,232,.78);
    display: inline-flex;
    justify-content: center;
    transition: color .25s ease, border-color .25s ease, transform .25s ease;
}

.header-socials a {
    height: 28px;
    width: 28px;
}

.header-socials svg,
.footer-socials svg {
    fill: currentColor;
    height: 14px;
    width: 14px;
}

.header-socials a:hover,
.footer-socials a:hover {
    color: var(--champagne-light);
    transform: translateY(-1px);
}

/* Staff editorial */
.staff-heading .eyebrow { margin-bottom: 0; }

.talent-card {
    background: #F3EFE8;
    border-bottom: 1px solid rgba(0,0,0,.12);
}

.talent-card-caption,
.talent-card > span.talent-card-caption {
    align-items: center;
    background: #F3EFE8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 112px;
    padding: 19px 14px 22px;
    position: relative;
    text-align: center;
}

.talent-card-caption::before {
    background: var(--champagne);
    content: "";
    height: 2px;
    left: 50%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    width: 34px;
}

.talent-card .talent-role {
    color: var(--champagne);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .20em;
    margin-bottom: 7px;
    text-transform: uppercase;
}

.talent-card-caption strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(24px, 2vw, 31px);
    font-weight: 400;
    letter-spacing: -.02em;
    line-height: 1;
    text-transform: none;
}

.talent-card .talent-meta {
    color: #9B9085;
    font-size: 8px;
    letter-spacing: .11em;
    margin-top: 10px;
    text-transform: uppercase;
}

/* Galería: anterior / actual / siguiente */
.profile-dialog { background: #1B1B1B; }

.gallery-lightbox {
    display: grid;
    grid-template-columns: minmax(180px, .72fr) minmax(420px, 1.15fr) minmax(180px, .72fr);
    height: calc(100svh - 126px);
    overflow: hidden;
}

.gallery-side {
    align-self: stretch;
    background: #1B1B1B;
    border: 0;
    color: #F3EFE8;
    cursor: pointer;
    height: auto;
    overflow: hidden;
    position: relative;
    width: auto;
}

.gallery-side > img {
    filter: saturate(.72);
    height: 100%;
    object-fit: cover;
    opacity: .43;
    transition: opacity .35s ease, transform .7s cubic-bezier(.2,.7,.2,1), filter .35s ease;
    width: 100%;
}

.gallery-side:hover > img {
    filter: saturate(.9);
    opacity: .62;
    transform: scale(1.025);
}

.gallery-side-shade {
    background: rgba(0,0,0,.30);
    inset: 0;
    position: absolute;
}

.gallery-side-arrow {
    color: rgba(243,239,232,.9);
    font-size: 34px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 2;
}

.gallery-stage { background: #1B1B1B; }
.gallery-stage > img { background: #1B1B1B; }
.gallery-stage .dialog-traits { color: #CEC4B9; }
#galleryCounter { color: var(--champagne-light); }

/* Botones de los dos videos */
.gallery-actions {
    align-items: center;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.profile-video-button {
    background: #242424;
    border-color: rgba(164,125,90,.75);
    color: #F3EFE8;
}

.profile-video-button:hover {
    background: var(--champagne);
    border-color: var(--champagne);
    color: #1B1B1B;
}

/* Video y volver a fotos: lateral derecho */
.video-dialog {
    background: rgba(10,10,10,.98);
    border: 0;
    color: #F3EFE8;
    height: 100svh;
    margin: 0;
    max-height: 100svh;
    max-width: 100vw;
    overflow: hidden;
    padding: 0;
    width: 100vw;
}

.video-stage {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    padding: 24px 250px 24px 70px;
}

.video-stage p {
    color: #F3EFE8;
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.video-stage video {
    aspect-ratio: 9 / 16;
    background: #242424;
    height: min(82svh, 820px);
    max-width: min(48vw, 520px);
    object-fit: contain;
}

.video-back {
    background: #1B1B1B;
    border: 1px solid rgba(164,125,90,.72);
    color: #F3EFE8;
    cursor: pointer;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .11em;
    min-height: 46px;
    padding: 0 20px;
    position: fixed;
    right: clamp(70px, 8vw, 150px);
    text-transform: uppercase;
    top: 50%;
    transform: translateY(-50%);
    transition: background .25s ease, color .25s ease, transform .25s ease;
    z-index: 12;
}

.video-back:hover {
    background: var(--champagne);
    color: #1B1B1B;
    transform: translateY(-50%) translateX(-2px);
}

/* Club NANNA: compacto, tarjeta clara y un solo código */
.club,
.club.section {
    background: #1B1B1B;
    padding-bottom: clamp(54px, 6vw, 84px);
    padding-top: clamp(54px, 6vw, 84px);
}

.club-card {
    background: #1B1B1B;
    border: 1px solid rgba(164,125,90,.30);
    gap: clamp(46px, 6vw, 95px);
    grid-template-columns: minmax(0,1fr) minmax(300px, 430px);
    margin: 0 auto;
    max-width: 1420px;
    padding: clamp(38px, 5vw, 68px);
}

.club-card::before {
    height: 380px;
    left: -190px;
    top: -180px;
    width: 380px;
}

.club-copy h2 { font-size: clamp(30px, 3.2vw, 48px); }
.club-copy > p:not(.eyebrow) { margin-top: 18px; max-width: 530px; }
.club-benefits { margin-top: 28px; }
.club-benefits li { padding: 12px 0; }

.club-form {
    background: #E9E2D9;
    border: 1px solid rgba(229,178,109,.8);
    box-shadow: 0 26px 65px rgba(0,0,0,.30);
    color: #242424;
    padding: 30px 32px 32px;
}

.club-form::before {
    background: var(--champagne);
    content: "";
    display: block;
    height: 2px;
    margin: -30px -32px 26px;
}

.club-form-heading small {
    color: #8F6848;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .18em;
    margin: 0 0 7px;
    text-transform: uppercase;
}

.club-form-heading p {
    color: #242424;
    font-family: var(--serif);
    font-size: 25px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 26px;
}

.club-form label { color: #303030; margin-bottom: 22px; }
.club-form input {
    border-bottom-color: rgba(0,0,0,.28);
    color: #242424;
}
.club-form input::placeholder { color: rgba(0,0,0,.36); }
.club-form .button-primary { background: #242424; color: #F3EFE8; }
.club-form .button-primary:hover { background: var(--champagne); color: #242424; }
.club-form .club-demo { color: #81776D; margin-top: 13px; }

/* Contacto compacto */
.contact,
.contact.section {
    background: #070707;
    padding-bottom: clamp(42px, 5vw, 68px);
    padding-top: clamp(42px, 5vw, 68px);
}

.contact-compact {
    align-items: center;
    display: grid;
    gap: clamp(35px, 6vw, 90px);
    grid-template-columns: minmax(260px,.72fr) minmax(0,1.28fr);
}

.contact-compact .contact-intro {
    display: block;
    margin: 0;
}
.contact-compact .contact-intro .eyebrow { margin-bottom: 10px; }
.contact-compact .contact-intro h2 { font-size: clamp(30px, 3.2vw, 46px); }
.contact-compact .contact-intro > p:last-child { color: #81776D; margin-top: 12px; }

.contact-compact .contact-options {
    border: 0;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, minmax(0,1fr));
}

.contact-compact .contact-link {
    align-items: center;
    border: 1px solid rgba(243,239,232,.12);
    display: grid;
    gap: 12px;
    grid-template-columns: 42px 1fr auto;
    min-height: 86px;
    padding: 15px 16px;
}

.contact-compact .contact-link:hover {
    background: rgba(164,125,90,.08);
    border-color: rgba(164,125,90,.48);
    padding: 15px 16px;
}

.contact-icon {
    align-items: center;
    border: 1px solid rgba(164,125,90,.60);
    border-radius: 50%;
    color: var(--champagne-light);
    display: flex;
    height: 38px;
    justify-content: center;
    width: 38px;
}
.contact-icon svg { fill: currentColor; height: 17px; width: 17px; }
.contact-copy strong { font-size: 16px; }
.contact-copy small { font-size: 9px; margin-top: 3px; }
.contact-compact .contact-arrow { font-size: 17px; }

/* Footer con redes centradas */
.site-footer {
    align-items: center;
    grid-template-columns: 1fr auto 1fr;
    padding-bottom: 48px;
    padding-top: 42px;
}
.footer-socials { justify-self: center; }
.footer-socials a {
    border: 1px solid rgba(243,239,232,.18);
    border-radius: 50%;
    height: 34px;
    width: 34px;
}
.footer-socials a:hover { border-color: var(--champagne); }
.footer-copy { justify-self: end; }

/* Barra inferior móvil con icono + texto */
.mobile-contact-bar a {
    align-items: center;
    display: flex;
    flex-direction: column;
    font-size: 9px;
    font-weight: 700;
    gap: 3px;
    justify-content: center;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.mobile-contact-bar a:first-child { background: var(--champagne); color: #1B1B1B; }
.mobile-contact-bar svg { fill: currentColor; height: 16px; width: 16px; }

@media (max-width: 1100px) {
    .contact-compact { grid-template-columns: 1fr; }
    .contact-compact .contact-options { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 900px) {
    .header-actions { display: none; }
    .gallery-lightbox { grid-template-columns: minmax(110px,.55fr) minmax(340px,1.35fr) minmax(110px,.55fr); }
    .club-card { grid-template-columns: 1fr; max-width: 760px; }
    .club-form { max-width: 460px; width: 100%; }
}

@media (max-width: 640px) {
    .services,
    .services.section {
        padding: 38px 20px 0;
    }

    .talent-card-caption,
    .talent-card > span.talent-card-caption {
        min-height: 103px;
        padding: 16px 8px 18px;
    }
    .talent-card-caption strong { font-size: 24px; }
    .talent-card .talent-meta { font-size: 7px; }

    .gallery-lightbox {
        display: grid;
        grid-template-columns: 42px minmax(0,1fr) 42px;
        height: calc(100svh - 150px);
    }
    .gallery-side { background: #1B1B1B; }
    .gallery-side > img,
    .gallery-side-shade { display: none; }
    .gallery-side-arrow { font-size: 24px; }

    .gallery-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }
    .gallery-actions #dialogWhatsapp { grid-column: 1 / -1; }
    .profile-video-button { padding-left: 8px; padding-right: 8px; }

    .video-stage { padding: 58px 16px 100px; }
    .video-stage p { font-size: 17px; }
    .video-stage video { height: min(72svh, 680px); max-width: 92vw; }
    .video-back {
        bottom: 28px;
        left: 50%;
        right: auto;
        top: auto;
        transform: translateX(-50%);
        white-space: nowrap;
    }
    .video-back:hover { transform: translateX(-50%) translateY(-2px); }

    .club,
    .club.section { padding: 42px 20px 50px; }
    .club-card { gap: 30px; padding: 30px 22px; }
    .club-form { padding: 25px 22px 27px; }
    .club-form::before { margin: -25px -22px 22px; }

    .contact,
    .contact.section { padding: 40px 20px 46px; }
    .contact-compact { gap: 28px; }
    .contact-compact .contact-options { grid-template-columns: 1fr; }
    .contact-compact .contact-link { min-height: 72px; }

    .site-footer {
        align-items: center;
        gap: 24px;
        grid-template-columns: 1fr;
        justify-items: center;
        padding: 36px 20px 84px;
        text-align: center;
    }
    .footer-socials,
    .footer-copy { justify-self: center; }
}


/* =========================================================
   CLUB NANNA — TARJETA DE PUNTOS + PREGUNTAS FRECUENTES
   ========================================================= */
.club-faq {
    margin: clamp(34px, 4vw, 58px) auto 0;
    max-width: 1420px;
}

.club-faq-heading {
    align-items: end;
    border-bottom: 1px solid rgba(243,239,232,.12);
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr minmax(240px,.55fr);
    padding-bottom: 24px;
}

.club-faq-heading .eyebrow {
    margin-bottom: 10px;
}

.club-faq-heading h3 {
    color: var(--paper);
    font-family: var(--serif);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 600;
    letter-spacing: -.02em;
    line-height: 1;
}

.club-faq-heading > p {
    color: #81776D;
    font-size: 13px;
    max-width: 390px;
}

.club-faq-list {
    border-bottom: 1px solid rgba(243,239,232,.12);
}

.club-faq-item {
    border-top: 1px solid rgba(243,239,232,.12);
}

.club-faq-item:first-child {
    border-top: 0;
}

.club-faq-item summary {
    align-items: center;
    cursor: pointer;
    display: grid;
    gap: 24px;
    grid-template-columns: 54px minmax(0,1fr) 32px;
    list-style: none;
    min-height: 82px;
    padding: 0 4px;
    transition: background .25s ease, padding .25s ease;
}

.club-faq-item summary::-webkit-details-marker {
    display: none;
}

.club-faq-item summary:hover {
    background: rgba(164,125,90,.045);
    padding-left: 14px;
    padding-right: 14px;
}

.club-faq-number {
    color: var(--champagne);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .13em;
}

.club-faq-question {
    color: #e8e8e8;
    font-family: var(--serif);
    font-size: clamp(17px, 1.6vw, 23px);
    font-weight: 500;
    line-height: 1.2;
}

.club-faq-toggle {
    height: 18px;
    position: relative;
    width: 18px;
}

.club-faq-toggle::before,
.club-faq-toggle::after {
    background: var(--champagne);
    content: "";
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: transform .25s ease, opacity .25s ease;
}

.club-faq-toggle::before {
    height: 2px;
    width: 14px;
}

.club-faq-toggle::after {
    height: 14px;
    width: 2px;
}

.club-faq-item[open] {
    border-color: rgba(164,125,90,.45);
}

.club-faq-item[open] summary {
    background: rgba(164,125,90,.055);
}

.club-faq-item[open] .club-faq-question {
    color: var(--champagne-light);
}

.club-faq-item[open] .club-faq-toggle::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}

.club-faq-answer {
    animation: clubFaqOpen .28s ease both;
    padding: 0 54px 28px 82px;
}

.club-faq-answer p {
    color: #969696;
    font-size: 14px;
    line-height: 1.75;
    max-width: 820px;
}

@keyframes clubFaqOpen {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 760px) {
    .club-faq {
        margin-top: 32px;
    }

    .club-faq-heading {
        align-items: start;
        grid-template-columns: 1fr;
        gap: 10px;
        padding-bottom: 20px;
    }

    .club-faq-heading h3 {
        font-size: 28px;
    }

    .club-faq-item summary {
        gap: 12px;
        grid-template-columns: 34px minmax(0,1fr) 24px;
        min-height: 72px;
        padding: 0;
    }

    .club-faq-item summary:hover {
        padding-left: 0;
        padding-right: 0;
    }

    .club-faq-question {
        font-size: 15px;
    }

    .club-faq-answer {
        padding: 0 24px 22px 46px;
    }

    .club-faq-answer p {
        font-size: 13px;
    }
}


/* =========================================================
   NANNA · PALETA DE IDENTIDAD 2026
   Overrides finales para impedir que colores antiguos
   sobrescriban la nueva identidad.
   ========================================================= */
.button-primary,
.header-cta {
    background: #A47D5A;
    color: #1B1B1B;
}

.button-primary:hover,
.header-cta:hover {
    background: #B8916E;
}

.button-ghost {
    border-color: rgba(243,239,232,.46);
    color: #F3EFE8;
}

.button-ghost:hover {
    border-color: #F3EFE8;
}

.site-header.is-scrolled,
.site-header:has(.main-nav.is-open) {
    background: rgba(27,27,27,.94);
}

body,
.profile-dialog,
.video-dialog {
    background-color: #1B1B1B;
}

.service-tab.is-active,
.service-tab:hover {
    border-color: #A47D5A;
}



/* =========================================================
   NANNA · IDENTIDAD TIPOGRÁFICA
   Principal: IBM Plex Sans
   Editorial: Italiana
   ========================================================= */

/* Marca */
.brand-word {
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: .18em;
}

/* Navegación, botones y textos funcionales */
.main-nav a,
.header-cta,
.button,
.service-tab small,
.eyebrow,
.brand-note {
    font-family: var(--sans);
}

/* El antiguo texto script del hero pasa a lenguaje funcional limpio */
.hero .eyebrow {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .24em;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Hero principal: Italiana necesita menos peso y menos tracking que Montserrat */
.hero h1 {
    font-family: var(--serif);
    font-size: clamp(52px, 7vw, 94px);
    font-weight: 400;
    letter-spacing: -.025em;
    line-height: .92;
    margin-left: 0;
    text-transform: none;
}

.hero h1 em {
    font-family: inherit;
    font-style: normal;
    font-weight: 400;
}

/* Encabezados editoriales */
.club-copy h2,
.service-tab span,
.service-panel blockquote,
.service-detail h3,
.talent-card strong,
.club-form > p:first-child,
.contact-link strong,
.gallery-stage h2,
.video-stage p,
.club-form-heading p,
.club-faq-heading h3,
.club-faq-question {
    font-family: var(--serif);
    font-weight: 400;
}

/* Nombres de servicios: un poco más de aire con Italiana */
.service-tab span {
    letter-spacing: .01em;
}

/* Títulos de detalle y nombres */
.service-detail h3,
.gallery-stage h2,
.club-faq-heading h3 {
    letter-spacing: -.02em;
}

/* Cuerpo general */
body {
    font-family: var(--sans);
    font-weight: 300;
}

/* Botones: IBM Plex Sans funciona mejor con peso 600 que 700/800 */
.button,
.header-cta,
.main-nav a {
    font-weight: 600;
}

/* En móvil conservamos legibilidad y proporción del hero */
@media (max-width: 600px) {
    .hero .eyebrow {
        font-size: 9px;
        letter-spacing: .20em;
    }

    .hero h1 {
        font-size: clamp(44px, 13vw, 66px);
        line-height: .92;
    }

    .brand-word {
        letter-spacing: .16em;
    }
}


/* =========================================================
   NANNA · IDENTIDAD TIPOGRÁFICA
   Principal: Sora
   Editorial: DM Serif Display
   ========================================================= */

body {
    font-family: "Sora", Arial, sans-serif;
}

.brand-word,
.hero h1,
.service-detail h3,
.service-tab span,
.gallery-stage h2,
.club-copy h2,
.club-faq-heading h3,
.club-faq-question,
.video-stage p {
    font-family: "DM Serif Display", Georgia, serif;
    font-weight: 400;
}

.main-nav a,
.header-cta,
.button,
.eyebrow,
.brand-note,
.service-tab small,
.hero-copy {
    font-family: "Sora", Arial, sans-serif;
}

/* Sora se ve mejor ligeramente más compacta en navegación y botones */
.main-nav a,
.header-cta,
.button {
    font-weight: 500;
    letter-spacing: .08em;
}

/* Hero ajustado para DM Serif Display */
.hero h1 {
    font-size: clamp(50px, 6.5vw, 88px);
    line-height: .94;
    letter-spacing: -.02em;
    text-transform: none;
}

/* "Déjate cuidar" limpio y contemporáneo */
.hero .eyebrow {
    font-family: "Sora", Arial, sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
}

/* Marca NANNA */
.brand-word {
    letter-spacing: .16em;
}

/* Títulos editoriales */
.service-detail h3,
.gallery-stage h2,
.club-copy h2,
.club-faq-heading h3 {
    letter-spacing: -.015em;
}

/* Móvil */
@media (max-width: 600px) {
    .hero h1 {
        font-size: clamp(42px, 12vw, 62px);
        line-height: .95;
    }

    .hero .eyebrow {
        font-size: 9px;
        letter-spacing: .18em;
    }

    .brand-word {
        letter-spacing: .14em;
    }
}
