* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: "Red Hat Display", Arial, sans-serif; font-size: 16px; line-height: 1.55; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--gold); color: var(--ink); }

.skip-link { position: fixed; z-index: 999; left: 20px; top: 14px; padding: 12px 18px; background: var(--gold); transform: translateY(-180%); transition: transform .2s; }
.skip-link:focus { transform: translateY(0); }
.section-shell { width: var(--shell); margin-inline: auto; position: relative; }
.section-dark { background: var(--ink); color: var(--white); }

.eyebrow { margin: 0 0 24px; display: flex; align-items: center; gap: 12px; font-size: .73rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow span { width: 36px; height: 1px; background: currentColor; }
.eyebrow--light { color: var(--gold-light); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: .98; letter-spacing: -.055em; }
h1 { margin-bottom: 30px; font-size: clamp(3.75rem, 5.2vw, 5rem); font-weight: 700; }
h2 { margin-bottom: 0; font-size: clamp(3rem, 4.5vw, 4.2rem); font-weight: 600; }
h1 em, h2 em { color: var(--gold); font-style: normal; font-weight: 400; }

.button { display: inline-flex; align-items: center; justify-content: space-between; gap: 30px; min-height: 58px; padding: 0 10px 0 25px; border: 1px solid var(--ink); font-size: .78rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; transition: transform .35s var(--ease), background .35s, color .35s; }
.button i { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; font-size: 15px; transition: transform .35s var(--ease); }
.button:hover { transform: translateY(-3px); }
.button:hover i { transform: translateX(3px); }
.button--dark { background: var(--ink); color: var(--white); }
.button--dark i { background: var(--gold); color: var(--ink); }
.button--gold { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.button--gold i { background: var(--ink); color: var(--white); }
.button--large { min-width: 290px; min-height: 68px; padding-left: 30px; }
.button--large i { width: 48px; height: 48px; font-size: 18px; }

.text-link { display: inline-flex; align-items: center; gap: 28px; padding-bottom: 7px; border-bottom: 1px solid currentColor; font-size: .82rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.text-link span { font-size: 1.2rem; transition: transform .3s var(--ease); }
.text-link:hover span { transform: translate(3px,3px); }
.text-link--light { color: var(--white); }

.site-header { position: sticky; z-index: 100; top: 0; left: 0; width: 100%; padding: 12px 0; background: rgba(245,243,237,.96); transition: padding .3s, background .3s, box-shadow .3s; }
.site-header.is-scrolled { box-shadow: 0 8px 35px rgba(0,0,0,.07); backdrop-filter: blur(14px); }
.site-header--overlay { position: fixed; top: 0; left: 0; width: 100%; background: transparent; }
.site-header--overlay.is-scrolled { background: rgba(245,243,237,.96); }
@media (min-width: 1101px) {
  .site-header--overlay.is-scrolled { padding: 5px 0; }
}
.nav-shell { width: min(1600px, calc(100vw - 48px)); margin: auto; display: grid; grid-template-columns: minmax(320px,.7fr) auto auto auto; gap: clamp(18px,2vw,38px); align-items: center; }
.brand { display: flex; align-items: center; gap: 5rem; width: max-content; }
.brand-mark { width: 92px; height: 92px; display: grid; place-items: center; flex: 0 0 auto; }
.brand img { width: 92px; height: 92px; object-fit: contain; transition: width .3s, height .3s; }
@media (min-width: 1101px) {
  .site-header--overlay.is-scrolled .brand-mark, .site-header--overlay.is-scrolled .brand img { width: 70px; height: 70px; }
}
.brand-copy { display: flex; flex-direction: column; line-height: 1.1; }
.brand-copy strong { font-size: 1.08rem; letter-spacing: .055em; text-transform: uppercase; }
.brand-copy small { margin-top: 7px; font-size: .7rem; letter-spacing: .035em; }
.main-nav { display: flex; align-items: center; gap: clamp(17px,1.8vw,32px); }
.main-nav a { position: relative; padding: 12px 0; font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: 7px; width: 100%; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .3s var(--ease); }
.main-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-booksy { display: none; }
.nav-cta { justify-self: end; min-height: 48px; }
.nav-cta i { width: 32px; height: 32px; font-size: 12px; }
.header-social { display: flex; align-items: center; gap: 8px; }
.header-social > a:not(.social-handle) { width: 31px; height: 31px; border: 1px solid var(--ink); border-radius: 50%; display: grid; place-items: center; transition: background .25s, color .25s; }
.header-social > a:not(.social-handle):hover { background: var(--ink); color: var(--white); }
.header-social i { font-size: 14px; }
.header-social .social-handle { margin-left: 4px; font-size: .62rem; font-weight: 700; letter-spacing: .04em; white-space: nowrap; }
.menu-toggle { display: none; border: 0; background: none; }

.hero { position: relative; min-height: calc(100vh - 116px); padding: 100px max(48px, calc((100vw - 1280px)/2)) 28px; display: grid; grid-template-columns: 49% 51%; align-items: center; overflow: hidden; }
.hero-copy { position: relative; z-index: 3; padding: 55px 0 60px; }
.hero-lead { max-width: 560px; margin: 0 0 36px; font-size: clamp(1rem,1.35vw,1.25rem); line-height: 1.65; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 34px; }
.hero-trust { margin-top: 64px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; gap: 55px; width: min(100%, 530px); }
.hero-trust div { display: flex; align-items: center; gap: 12px; }
.hero-trust strong { font-size: 2rem; line-height: 1; font-weight: 500; }
.hero-trust span { color: #5d5a54; font-size: .66rem; line-height: 1.25; letter-spacing: .08em; text-transform: uppercase; }
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-bg-video { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.4) sepia(.7) saturate(.55) brightness(1.18) contrast(.9); }
.hero-bg-veil { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(245, 243, 237, .92) 0%, rgba(245, 243, 237, .8) 42%, rgba(245, 243, 237, .66) 100%); }
.hero-visual { position: relative; z-index: 2; height: min(720px, calc(100vh - 190px)); min-height: 610px; padding-left: 54px; }
.hero-image-wrap { position: relative; width: 100%; height: 100%; overflow: hidden; background: #ddd9ce; border-radius: 300px 300px 0 0; }
.hero-image-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg,transparent 55%,rgba(0,0,0,.2)); pointer-events: none; }
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center 53%; transform: scale(1.015); }
.image-tag { position: absolute; z-index: 2; left: 25px; bottom: 25px; padding: 14px 22px; background: rgba(245,243,237,.93); backdrop-filter: blur(8px); display: flex; align-items: center; gap: 17px; }
.image-tag span { writing-mode: vertical-rl; transform: rotate(180deg); color: #6c675d; font-size: .54rem; letter-spacing: .18em; text-transform: uppercase; }
.image-tag strong { font-size: .72rem; line-height: 1.3; letter-spacing: .05em; text-transform: uppercase; }
.hero-seal { position: absolute; z-index: 4; right: 40px; top: 1%; width: 144px; height: 144px; border-radius: 50%; background: var(--gold); display: grid; place-items: center; }
.hero-seal svg { position: absolute; inset: 8px; width: calc(100% - 16px); animation: spin 20s linear infinite; }
.hero-seal text { fill: var(--ink); font-size: 12px; font-weight: 800; letter-spacing: 1.5px; }
.hero-seal > span { display: flex; flex-direction: column; align-items: center; line-height: 1; }
.hero-seal > span b { font-size: 1.8rem; font-weight: 900; letter-spacing: -.06em; }
.hero-seal > span small { display: inline-flex; gap: 3px; margin-top: 5px; font-size: .5rem; color: var(--ink); }
.scroll-cue { position: absolute; z-index: 4; right: 24px; bottom: 42px; display: flex; flex-direction: column; align-items: center; gap: 10px; font-size: .6rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; writing-mode: vertical-rl; }
.scroll-cue i { display: block; width: 1px; height: 58px; background: var(--ink); }

.marquee { overflow: hidden; padding: 17px 0 15px; background: var(--gold); }
.marquee-track { display: flex; align-items: center; width: max-content; animation: marquee 34s linear infinite; will-change: transform; }
.marquee-group { display: flex; align-items: center; gap: 28px; padding-right: 28px; }
.marquee-group span { font-size: .69rem; font-weight: 900; letter-spacing: .17em; }
.marquee-group i { flex: 0 0 auto; width: 7px; height: 7px; border: 1px solid var(--ink); border-radius: 50%; }

.about { position: relative; padding: 165px 0 190px; overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 48% 44%; gap: 8%; align-items: center; }
.about-reviews { width: min(100% - 48px, 1080px); margin-top: clamp(70px, 8vw, 110px); }
.about-images { --collage-pull: clamp(80px,10vw,160px); position: relative; width: calc(100% + var(--collage-pull)); height: 790px; margin-left: calc(0px - var(--collage-pull)); isolation: isolate; display: grid; grid-template-columns: .95fr 1.8fr 1fr; grid-template-rows: repeat(11,minmax(0,1fr)); gap: 12px; }
.about-image { position: relative; z-index: 1; inset: auto; width: auto; height: auto; margin: 0; border: 0; overflow: hidden; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-image--main { grid-column: 2; grid-row: 1 / 8; }
.about-image--small { grid-column: 3; grid-row: 1 / 5; }
.about-image--detail { grid-column: 3; grid-row: 5 / 9; }
.about-image--accent { grid-column: 1; grid-row: 5 / 8; }
.about-image--accent img { object-position: 62% center; }
.about-image--team { grid-column: 1 / 3; grid-row: 8 / 12; }
.about-image--team img { object-position: center 42%; }
.about-number { position: relative; z-index: 2; inset: auto; width: auto; height: auto; grid-column: 3; grid-row: 9 / 12; background: var(--gold); color: var(--ink); display: grid; place-items: center; font-size: clamp(2.8rem,3.8vw,4rem); line-height: 1; font-weight: 500; letter-spacing: -.08em; }
.about-collage-orbit { position: absolute; z-index: 0; left: 0; bottom: 20px; width: 430px; height: 430px; border: 1px solid rgba(182,167,127,.5); border-radius: 50%; }
.about-collage-orbit::after { content: ""; position: absolute; right: 36px; top: 22px; width: 12px; height: 12px; border-radius: 50%; background: var(--gold); }
.about-copy h2 { max-width: 720px; margin-bottom: 38px; font-size: clamp(3rem,4.5vw,4.2rem); }
.about-copy > p { color: rgba(255,255,255,.6); max-width: 630px; }
.about-copy .about-intro { color: var(--white); font-size: 1.18rem; }
.about-values { margin: 32px 0 34px; border-top: 1px solid var(--line-light); }
.about-values > div { display: grid; grid-template-columns: 36px 1fr; align-items: center; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line-light); }
.about-values span { width: 30px; height: 30px; border-radius: 50%; background: var(--gold); color: var(--ink); display: grid; place-items: center; font-size: .58rem; font-weight: 900; }
.about-values p { margin: 0; color: rgba(255,255,255,.58); font-size: .87rem; }
.about-values strong { display: block; margin-bottom: 4px; color: var(--white); font-size: .86rem; letter-spacing: .04em; text-transform: uppercase; }
.text-link--light span { color: var(--gold); }

.services { padding: 150px 0 165px; }
.section-heading { margin-bottom: 80px; display: grid; grid-template-columns: 1fr 350px; gap: 70px; align-items: end; }
.section-heading > p { margin-bottom: 8px; color: #625e55; }
.service-grid { display: grid; grid-template-columns: repeat(12,1fr); grid-auto-rows: 455px; gap: 18px; }
.service-card { position: relative; grid-column: span 4; margin: 0; padding: 38px; overflow: hidden; border: 1px solid var(--line); display: flex; flex-direction: column; align-items: flex-start; }
.service-card > span, .service-card-copy > span { display: block; margin-bottom: auto; font-size: .65rem; font-weight: 800; letter-spacing: .14em; }
.service-card h3 { margin-bottom: 20px; font-size: clamp(2.2rem,3.4vw,4rem); font-weight: 500; }
.service-card p { max-width: 370px; color: #5d5951; font-size: .9rem; }
.service-card a { margin-top: 20px; padding-bottom: 5px; border-bottom: 1px solid currentColor; font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.service-card a b { margin-left: 18px; font-size: 1rem; }
.service-card--image { color: var(--white); }
.service-card--image > img { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.service-card--image:hover > img { transform: scale(1.045); }
.service-overlay { position: absolute; z-index: -1; inset: 0; background: linear-gradient(180deg,rgba(0,0,0,.04),rgba(0,0,0,.8)); }
.service-card-copy { flex: 1; align-self: stretch; display: flex; flex-direction: column; align-items: flex-start; }
.service-card-copy p { color: rgba(255,255,255,.75); }
.service-card--gold { background: var(--gold); }
.service-card--gold p { color: rgba(13,13,13,.72); }
.service-card--plain { background: #ece8de; }
.service-card--wide { grid-column: span 7; }
.service-card--wide > img { object-position: center 59%; }
.service-card--dark { grid-column: span 5; background: var(--ink); color: var(--white); }
.service-card--dark p { color: rgba(255,255,255,.62); }

.pricing { position: relative; padding: 150px 0 110px; overflow: hidden; }
.pricing-head { display: grid; grid-template-columns: 1fr 390px; gap: 80px; align-items: end; margin-bottom: 85px; }
.pricing-head h2 { max-width: 800px; font-size: clamp(3rem,4.5vw,4.2rem); }
.pricing-head > p { margin-bottom: 8px; color: rgba(255,255,255,.58); }
.pricing-layout { display: grid; grid-template-columns: 31% 1fr; gap: 8%; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.price-tabs { display: flex; flex-direction: column; padding: 34px 0; border-right: 1px solid var(--line-light); }
.price-tabs button { position: relative; padding: 16px 20px 16px 0; border: 0; background: none; color: rgba(255,255,255,.36); text-align: left; font-size: clamp(1.25rem,1.8vw,1.75rem); cursor: pointer; transition: color .25s, padding .25s; }
.price-tabs button span { display: inline-block; width: 48px; color: var(--gold); font-size: .56rem; vertical-align: middle; }
.price-tabs button i { position: absolute; right: 20px; opacity: 0; transform: translateX(-10px); transition: .25s; }
.price-tabs button[aria-selected="true"] { padding-left: 10px; color: var(--white); }
.price-tabs button[aria-selected="true"] i { opacity: 1; transform: translateX(0); }
.price-panels { position: relative; min-height: 570px; padding: 50px 0 50px; }
.price-panel { animation: panelIn .5s var(--ease); }
.price-panel-title { display: flex; align-items: center; gap: 20px; margin-bottom: 30px; }
.price-panel-title > span { display: grid; place-items: center; width: 45px; height: 45px; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold); font-size: .58rem; }
.price-panel-title h3 { margin: 0; font-size: clamp(2rem,3vw,3.5rem); font-weight: 500; }
.price-panel-title small { margin-left: auto; color: rgba(255,255,255,.45); font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; }
.price-list { margin: 0; padding: 0; list-style: none; }
.price-list li { display: flex; justify-content: space-between; gap: 35px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.price-list li span { color: rgba(255,255,255,.74); }
.price-list strong { flex: 0 0 auto; color: var(--gold-light); font-weight: 500; }
.price-note { margin-top: 25px; color: rgba(255,255,255,.42); font-size: .72rem; }
.price-phone { display: flex; align-items: center; gap: 10px; margin-top: 28px; font-size: .78rem; letter-spacing: .05em; text-transform: uppercase; }
.price-phone strong { color: var(--gold); font-size: 1rem; }
.price-phone span { margin-left: 8px; }
.pricing-footer { display: flex; justify-content: flex-end; align-items: center; gap: 35px; padding-top: 28px; }
.pricing-footer p { margin: 0; color: rgba(255,255,255,.4); font-size: .78rem; }
.pricing-footer a { color: var(--gold); font-size: .77rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.pricing-footer span { margin-left: 12px; }

.gallery { padding: 150px 0; }
.gallery-head { display: flex; align-items: end; justify-content: space-between; gap: 70px; margin-bottom: 68px; }
.gallery-filters { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.gallery-filters button { padding: 10px 16px; border: 1px solid var(--line); border-radius: 30px; background: transparent; font-size: .66rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; transition: .25s; }
.gallery-filters button:hover, .gallery-filters button.is-active { background: var(--ink); border-color: var(--ink); color: var(--white); }
.gallery-grid { columns: 3; column-gap: 16px; }
.gallery > .gallery-grid { columns: 5; }
.gallery-item { position: relative; display: block; width: 100%; margin: 0 0 16px; padding: 0; border: 0; background: #ddd; overflow: hidden; break-inside: avoid; text-align: left; cursor: zoom-in; transition: opacity .35s, transform .5s var(--ease); }
.gallery-item[hidden] { display: none; }
.gallery-item img { display: block; width: 100%; height: auto; transition: transform .7s var(--ease), filter .5s; }
.gallery-item:hover img { transform: scale(1.04); filter: brightness(.76); }
.gallery-item > span { position: absolute; left: 22px; right: 22px; bottom: 20px; display: flex; justify-content: space-between; align-items: end; color: var(--white); opacity: 0; transform: translateY(10px); transition: .35s var(--ease); }
.gallery-item:hover > span { opacity: 1; transform: translateY(0); }
.gallery-item b { font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; }
.gallery-item i { font-size: .76rem; font-style: normal; }

.cta { position: relative; z-index: 2; padding: 130px 0; background: var(--gold); overflow: hidden; }
.cta-inner { z-index: 2; display: flex; flex-direction: column; align-items: center; text-align: center; }
.cta h2 { margin-bottom: 30px; font-size: clamp(5rem,7.2vw,7.2rem); }
.cta h2 em { color: var(--ink); font-weight: 300; }
.cta p:not(.eyebrow) { max-width: 540px; margin-bottom: 40px; }

.footer { position: relative; z-index: 1; padding: 90px 0 28px; background: var(--ink); color: var(--white); }
.footer .section-shell { width: min(1380px, calc(100vw - 96px)); }
.footer-grid { display: grid; grid-template-columns: 0.9fr 1.6fr 1.25fr 1fr 1.25fr auto; gap: clamp(24px,2.6vw,52px); padding-bottom: 75px; align-items: start; }
.footer-brand img { width: 190px; height: 190px; object-fit: contain; filter: drop-shadow(0 8px 18px rgba(182,167,127,.12)); }
.footer-salon { display: flex; flex-direction: column; align-items: flex-start; }
.footer-salon > strong { margin-bottom: 16px; font-size: 1.1rem; line-height: 1.5; letter-spacing: .04em; text-transform: uppercase; }
.footer-salon > a { color: rgba(255,255,255,.6); font-size: .85rem; line-height: 1.6; }
.footer-salon > a span { margin-left: 5px; color: var(--gold); }
.footer-nip { margin: 12px 0 0; color: rgba(255,255,255,.45); font-size: .85rem; letter-spacing: .01em; }
.footer-hours { display: flex; flex-direction: column; }
.footer-hours p:not(.footer-label) { margin: 0; padding: 9px 0; display: flex; justify-content: space-between; gap: 16px; color: rgba(255,255,255,.6); font-size: .85rem; border-bottom: 1px solid rgba(182,167,127,.18); }
.footer-hours b { color: rgba(255,255,255,.78); font-weight: 500; }
.footer-label { margin-bottom: 24px; color: var(--gold); font-size: .7rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.footer-nav { display: flex; flex-direction: column; align-items: flex-start; }
.footer-nav a { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 11px; color: rgba(255,255,255,.7); font-size: .85rem; }
.footer-nav a::before { content: ""; flex: 0 0 auto; width: 14px; height: 1px; background: var(--gold); transition: width .25s var(--ease); }
.footer-nav a:hover { color: var(--gold); }
.footer-nav a:hover::before { width: 24px; }
.footer-contact { display: flex; flex-direction: column; align-items: flex-start; }
.footer-phone { font-size: clamp(1.6rem,2.2vw,2.3rem); line-height: 1; letter-spacing: -.04em; }
.footer-phone--small { margin-top: 20px; font-size: 1.2rem; }
.footer-contact small { margin-top: 8px; color: rgba(255,255,255,.35); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-action { align-self: start; justify-self: end; }
.footer-action > a { position: relative; width: 138px; height: 138px; border: 1px solid var(--gold); border-radius: 50%; background: var(--gold); color: var(--ink); display: grid; place-items: center; transition: background .3s, border-color .3s, color .3s; }
.footer-action > a:hover { background: #77736b; border-color: #77736b; color: var(--white); }
.footer-action span { font-size: .75rem; font-weight: 800; line-height: 1.25; letter-spacing: .08em; text-align: center; text-transform: uppercase; }
.footer-action b { position: absolute; right: 20px; top: 15px; font-weight: 400; }
.footer-bottom { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 25px; color: rgba(255,255,255,.34); font-size: .62rem; letter-spacing: .06em; text-transform: uppercase; }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: var(--white); }
.footer-credit { position: absolute; left: 50%; transform: translateX(-50%); text-align: center; }
.footer-credit a { color: var(--gold); }
.footer-top { flex-shrink: 0; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--gold); color: var(--ink); font-size: .9rem; transition: background .3s, color .3s; }
.footer-top:hover { background: var(--white); }

.lightbox { width: min(90vw, 900px); height: min(90vh, 900px); padding: 0; border: 0; background: transparent; overflow: visible; }
.lightbox::backdrop { background: rgba(0,0,0,.9); backdrop-filter: blur(7px); }
.lightbox img { width: 100%; height: 100%; object-fit: contain; }
.lightbox p { position: absolute; left: 0; bottom: -36px; color: var(--white); font-size: .75rem; letter-spacing: .06em; }
.lightbox-close { position: absolute; z-index: 2; right: -50px; top: -8px; width: 42px; height: 42px; padding: 0 0 4px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: none; color: var(--white); font-size: 2rem; line-height: 1; cursor: pointer; }
.lightbox-nav { position: absolute; z-index: 2; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; padding: 0; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: none; color: var(--white); font-size: 1.1rem; line-height: 1; cursor: pointer; transition: .25s; }
.lightbox-nav:hover { background: rgba(255,255,255,.15); }
.lightbox-prev { left: -60px; }
.lightbox-next { right: -60px; }

.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal--delay { transition-delay: .13s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes panelIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

.team { position: relative; padding: 150px 0; overflow: hidden; }
.team-head { display: grid; grid-template-columns: 1fr 390px; gap: 80px; align-items: end; margin-bottom: 60px; }
.team-head h2 { max-width: 720px; font-size: clamp(3rem,4.5vw,4.2rem); }
.team-intro { display: flex; flex-direction: column; gap: 26px; }
.team-intro p { margin: 0; color: rgba(255,255,255,.58); }
.team-nav { display: flex; gap: 12px; }
.team-nav button { width: 52px; height: 52px; border: 1px solid var(--line-light); border-radius: 50%; background: none; color: var(--white); font-size: 1.1rem; cursor: pointer; transition: background .25s, color .25s, border-color .25s; }
.team-nav button:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.team-swiper { width: var(--shell); margin-inline: auto; overflow: visible; }
.team-swiper .swiper-slide { height: auto; }
.team-card { display: flex; flex-direction: column; background: var(--ink-soft); border: 1px solid var(--line-light); }
.team-photo { position: relative; margin: 0; aspect-ratio: 3/4; overflow: hidden; background: #2a2a2a; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-copy { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 34px 26px 38px; }
.team-role { margin-bottom: 13px; color: var(--gold); font-size: .6rem; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
.team-copy h3 { margin: 0; font-size: 1.62rem; font-weight: 500; letter-spacing: -.03em; }
.team-copy h3::after { content: ""; display: block; width: 76px; height: 1px; margin: 16px auto 0; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.team-copy p { margin: 14px 0 0; max-width: 30ch; color: rgba(255,255,255,.88); font-size: .95rem; line-height: 1.6; }
.team-book { margin-top: 20px; padding-bottom: 5px; border-bottom: 1px solid currentColor; color: var(--gold); font-size: .66rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; transition: color .25s; }
.team-book:hover { color: var(--white); }
.team-book b { margin-left: 12px; font-size: 1rem; }
