:root {
    --bg: #0f0d0c;
    --bg-soft: #161311;
    --panel: #1a1615;
    --line: #2f2a26;
    --ink: #f6f1e9;
    --muted: #a89f92;
    --gold: #c9a24a;
    --gold-hover: #ddb968;
    --gold-soft: rgba(201, 162, 74, 0.12);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --font-display: "Bebas Neue", sans-serif;
    --font-body: "Inter", sans-serif;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: 88px;
}

body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
}

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

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

/* ---------- Reveal on scroll ---------- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.site-header--scrolled {
    background: rgba(15, 13, 12, 0.97);
    border-bottom: 1px solid var(--line);
}

.site-header__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    transition: padding 0.3s ease;
}

.site-header--scrolled .site-header__inner {
    padding: 14px 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    letter-spacing: 1px;
}

.brand__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 15px;
    font-family: var(--font-display);
}

.brand__name {
    font-size: 18px;
    letter-spacing: 2px;
    white-space: nowrap;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 0 auto;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    white-space: nowrap;
}

.main-nav a {
    padding-bottom: 4px;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
    color: var(--gold);
    border-color: var(--gold);
}

.btn-book {
    background: var(--gold);
    color: #17130a;
    border-radius: var(--radius-sm);
    padding: 11px 24px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.15s ease;
}

.btn-book:hover {
    background: var(--gold-hover);
    transform: translateY(-1px);
}

.btn-book--mobile {
    display: none;
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    margin-left: auto;
}

.nav-burger span {
    width: 26px;
    height: 2px;
    background: var(--ink);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    max-width: none;
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 40px 24px;
    background-image:
        linear-gradient(100deg, rgba(10, 8, 7, 0.92) 0%, rgba(10, 8, 7, 0.68) 40%, rgba(10, 8, 7, 0.48) 68%, rgba(10, 8, 7, 0.38) 100%),
        linear-gradient(180deg, rgba(10, 8, 7, 0.05) 0%, rgba(10, 8, 7, 0.55) 78%, var(--bg) 100%),
        url("/images/hero-photo.jpg"),
        url("/images/hero-bg.svg");
    background-size: cover, cover, cover, cover;
    background-position: center, center, center 12%, center;
    background-repeat: no-repeat;
}

.hero__content {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

.hero__eyebrow {
    letter-spacing: 7px;
    color: var(--gold);
    text-transform: uppercase;
    margin: 0 0 18px;
    font-size: 14px;
    font-weight: 600;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(60px, 12vw, 148px);
    letter-spacing: 1px;
    line-height: 0.88;
    margin: 0 0 24px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero__specialties {
    font-size: clamp(15px, 2vw, 19px);
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #d8cfc2;
    margin: 0 0 40px;
}

.hero__sub {
    display: flex;
    align-items: stretch;
    gap: 20px;
}

.hero__bar {
    width: 3px;
    background: var(--gold);
}

.hero__location {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.6vw, 28px);
    letter-spacing: 1px;
    margin: 0 0 14px;
}

.hero__cta {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--gold);
    color: #17130a;
    padding: 15px 32px;
    border-radius: var(--radius-sm);
    transition: background 0.2s ease, transform 0.15s ease;
}

.hero__cta:hover {
    background: var(--gold-hover);
    transform: translateY(-1px);
}

.hero__scroll {
    position: absolute;
    left: 50%;
    bottom: 36px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted);
    transition: color 0.2s ease;
}

.hero__scroll:hover {
    color: var(--gold);
}

.hero__scroll-arrow {
    font-size: 14px;
    animation: hero-scroll-bounce 2.2s ease-in-out infinite;
}

@keyframes hero-scroll-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

@media (prefers-reduced-motion: reduce) {
    .hero__scroll-arrow {
        animation: none;
    }
}

/* ---------- Sections ---------- */
section {
    padding: 120px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-kicker {
    text-align: center;
    letter-spacing: 5px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    margin: 0 0 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    letter-spacing: 1.5px;
    text-align: center;
    margin: 0 0 64px;
}

/* ---------- Info / Estudio ---------- */
.info__editorial {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 0;
    border-top: 1px solid var(--line);
}

.info__col {
    padding: 40px 40px 0;
    border-left: 1px solid var(--line);
}

.info__col:first-child {
    border-left: none;
    padding-left: 0;
}

.info__num {
    display: block;
    font-family: var(--font-display);
    font-size: 15px;
    letter-spacing: 1px;
    color: var(--gold);
    margin-bottom: 18px;
}

.info__place {
    font-family: var(--font-display);
    font-size: clamp(30px, 3.4vw, 42px);
    letter-spacing: 1px;
    line-height: 1.05;
    margin: 0 0 16px;
}

.info__note {
    color: var(--muted);
    margin: 0;
    max-width: 30ch;
}

.info__label {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}

.info__value {
    font-family: var(--font-display);
    font-size: clamp(22px, 2.4vw, 28px);
    letter-spacing: 0.5px;
    line-height: 1.3;
    margin: 0;
}

.info__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

.info__links a {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.2vw, 24px);
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}

.info__links a:hover {
    color: var(--gold);
}

.info__phone {
    color: var(--muted);
    margin: 0;
}

.info__phone a {
    color: var(--ink);
    border-bottom: 1px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.info__phone a:hover {
    color: var(--gold);
    border-color: var(--gold);
}

/* ---------- Artist / Sobre mí ---------- */
.artist__layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 64px;
    align-items: center;
}

.artist__photo {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.artist__photo::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 2px rgba(201, 162, 74, 0.35);
    pointer-events: none;
}

.artist__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
}

.artist__name {
    font-family: var(--font-display);
    letter-spacing: 2px;
    font-size: clamp(48px, 6.5vw, 76px);
    line-height: 0.95;
    margin: 0 0 10px;
}

.artist__alias {
    color: var(--gold);
    margin: 0 0 36px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}

.artist__story {
    position: relative;
    margin: 0 0 40px;
    max-width: 46em;
}

.artist__quote-mark {
    position: absolute;
    top: -38px;
    left: -6px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 100px;
    line-height: 1;
    color: var(--gold);
    opacity: 0.22;
    pointer-events: none;
    user-select: none;
}

.artist__story p {
    position: relative;
    margin: 0 0 18px;
    color: #d8cfc2;
    font-size: 17px;
    line-height: 1.75;
}

.artist__story p:last-child {
    margin-bottom: 0;
}

.artist__stats {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 32px 0;
    margin: 0 0 40px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.artist__stat--primary {
    display: flex;
    align-items: center;
    gap: 16px;
}

.artist__stat-num {
    font-family: var(--font-display);
    font-size: clamp(52px, 6vw, 72px);
    color: var(--gold);
    line-height: 1;
}

.artist__stat--primary .artist__stat-label {
    font-size: 12px;
    letter-spacing: 1px;
    line-height: 1.5;
    color: var(--muted);
    text-transform: uppercase;
}

.artist__stat-divider {
    align-self: stretch;
    width: 1px;
    background: var(--line);
}

.artist__stat--secondary {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.artist__stat-caption {
    font-size: 12px;
    letter-spacing: 1.5px;
    color: var(--muted);
    text-transform: uppercase;
}

.artist__stat-value {
    font-family: var(--font-display);
    font-size: 20px;
    letter-spacing: 1px;
    color: var(--ink);
}

.artist__cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--gold);
    color: var(--gold);
    background: transparent;
    padding: 15px 30px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.artist__cta-arrow {
    transition: transform 0.25s ease;
}

.artist__cta:hover {
    background: var(--gold);
    color: #17130a;
}

.artist__cta:hover .artist__cta-arrow {
    transform: translateX(4px);
}

/* ---------- Specialties ---------- */
.specialties__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.specialties__item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 44px 28px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: background 0.25s ease;
}

.specialties__item:hover {
    background: var(--gold-soft);
}

.specialties__num {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--gold);
}

.specialties__name {
    font-family: var(--font-display);
    font-size: clamp(24px, 2.6vw, 30px);
    letter-spacing: 1px;
}

/* ---------- Gallery / Portfolio ---------- */
.gallery__intro {
    text-align: center;
    max-width: 46ch;
    margin: 0 auto 56px;
    color: var(--muted);
    font-size: 18px;
    font-style: italic;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: 8px;
}

.gallery__item {
    overflow: hidden;
    border-radius: var(--radius-sm);
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    cursor: pointer;
    font: inherit;
}

.gallery__item:nth-child(3n+1) {
    grid-row: span 2;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery__item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(201, 162, 74, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery__item:hover img {
    transform: scale(1.06);
}

.gallery__item:hover::after {
    opacity: 1;
}

.gallery__item--placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: linear-gradient(160deg, var(--panel), var(--bg-soft));
    border: 1px solid var(--line);
    transition: border-color 0.3s ease;
}

.gallery__item--placeholder:hover {
    border-color: var(--gold);
}

.gallery__item--placeholder::after {
    display: none;
}

.gallery__placeholder-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid var(--line);
    color: var(--muted);
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 1px;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.gallery__item--placeholder:hover .gallery__placeholder-mark {
    border-color: var(--gold);
    color: var(--gold);
}

.gallery__placeholder-text {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
}

/* ---------- Lightbox ---------- */
body.lightbox-open {
    overflow: hidden;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 32px;
    background: rgba(8, 6, 5, 0.92);
    backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.lightbox.is-open {
    display: flex;
    opacity: 1;
}

.lightbox__stage {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    max-width: min(90vw, 1100px);
    max-height: 88vh;
}

.lightbox__image {
    max-width: min(90vw, 1100px);
    max-height: 78vh;
    width: auto;
    height: auto;
    border-radius: var(--radius-sm);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.lightbox__counter {
    margin: 0;
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--muted);
}

.lightbox__close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--ink);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.lightbox__close:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 13, 12, 0.6);
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--ink);
    font-size: 20px;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.lightbox__nav--prev {
    left: 12px;
}

.lightbox__nav--next {
    right: 12px;
}

.lightbox__nav:hover {
    border-color: var(--gold);
    color: var(--gold);
}

@media (max-width: 700px) {
    .lightbox {
        padding: 16px;
        gap: 10px;
    }

    .lightbox__close {
        top: 12px;
        right: 12px;
        width: 38px;
        height: 38px;
        font-size: 20px;
    }

    .lightbox__nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* ---------- Process ---------- */
.process__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
}

.process__step {
    padding: 40px 32px 0;
    border-left: 1px solid var(--line);
}

.process__step:first-child {
    border-left: none;
    padding-left: 0;
}

.process__num {
    display: block;
    font-family: var(--font-display);
    font-size: 34px;
    color: var(--gold);
    margin-bottom: 20px;
}

.process__title {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 12px;
}

.process__desc {
    color: var(--muted);
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

/* ---------- Policies ---------- */
.policies__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    margin-bottom: 48px;
}

.policies__block {
    background: var(--bg);
    padding: 36px 40px;
}

.policies__num {
    display: block;
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 14px;
}

.policies__block h3 {
    font-family: var(--font-display);
    letter-spacing: 1px;
    font-size: 20px;
    text-transform: uppercase;
    margin: 0 0 12px;
}

.policies__block p {
    margin: 0;
    color: #d8cfc2;
    line-height: 1.65;
}

.policies__cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    max-width: 320px;
    margin: 0 auto;
    background: var(--gold);
    color: #17130a;
    padding: 16px 30px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: background 0.2s ease, transform 0.15s ease;
}

.policies__cta:hover {
    background: var(--gold-hover);
    transform: translateY(-1px);
}

/* ---------- FAQ ---------- */
.faq__list {
    max-width: 800px;
    margin: 0 auto;
    border-top: 1px solid var(--line);
}

.faq__item {
    border-bottom: 1px solid var(--line);
}

.faq__question {
    width: 100%;
    background: none;
    border: none;
    color: var(--ink);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    padding: 24px 4px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s ease;
}

.faq__question:hover {
    color: var(--gold);
}

.faq__num {
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--gold);
    flex-shrink: 0;
}

.faq__question-text {
    flex: 1;
}

.faq__icon {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--gold);
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.faq__item.is-open .faq__icon {
    transform: rotate(45deg);
}

.faq__answer-wrap {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
}

.faq__item.is-open .faq__answer-wrap {
    grid-template-rows: 1fr;
}

.faq__answer {
    overflow: hidden;
    color: var(--muted);
}

.faq__answer p {
    margin: 0 4px 24px 44px;
}

/* ---------- Contact ---------- */
.contact__headline {
    text-align: center;
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 32px);
    letter-spacing: 0.5px;
    margin: 0 0 12px;
}

.contact__intro {
    text-align: center;
    color: var(--muted);
    margin: 0 0 56px;
}

.contact__success {
    text-align: center;
    color: #8fd98a;
    margin-bottom: 24px;
}

.contact__error {
    text-align: center;
    color: #ff8a6b;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.contact__field-note {
    margin: -8px 0 0;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}

.contact__layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact__field label {
    font-size: 13px;
    letter-spacing: 1px;
    color: var(--muted);
    text-transform: uppercase;
}

.contact__field input,
.contact__field textarea {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    color: var(--ink);
    padding: 14px;
    font-family: var(--font-body);
    font-size: 16px;
    width: 100%;
    max-width: 100%;
}

.contact__field input[type="file"] {
    padding: 10px;
    font-size: 14px;
}

.contact__field input:focus,
.contact__field textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.field-error {
    color: #ff8a6b;
    font-size: 13px;
}

.btn-book--form {
    align-self: flex-start;
    border: none;
    cursor: pointer;
}

.contact__aside {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 4px;
}

.contact__aside-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
}

.contact__aside-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid var(--line);
    font-family: var(--font-display);
    font-size: clamp(20px, 2.2vw, 24px);
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}

.contact__aside-link:last-child {
    border-bottom: 1px solid var(--line);
}

.contact__aside-arrow {
    color: var(--gold);
    transition: transform 0.2s ease;
}

.contact__aside-link:hover {
    color: var(--gold);
}

.contact__aside-link:hover .contact__aside-arrow {
    transform: translateX(4px);
}

/* ---------- Final CTA ---------- */
.final-cta {
    max-width: none;
    padding: 0 24px;
}

.final-cta__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 24px;
    text-align: center;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
}

.final-cta__title {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 68px);
    letter-spacing: 1px;
    line-height: 1.05;
    margin: 0 0 20px;
}

.final-cta__tags {
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    font-size: 14px;
    margin: 0 0 40px;
}

.final-cta__button {
    display: inline-block;
    background: var(--gold);
    color: #17130a;
    padding: 17px 40px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: background 0.2s ease, transform 0.15s ease;
}

.final-cta__button:hover {
    background: var(--gold-hover);
    transform: translateY(-1px);
}

/* ---------- Footer ---------- */
.site-footer {
    border-top: 1px solid var(--line);
    padding: 72px 24px 0;
}

.site-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 56px;
}

.site-footer__brand .brand {
    margin-bottom: 14px;
}

.site-footer__location {
    color: var(--muted);
    margin: 0;
}

.site-footer__col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.site-footer__heading {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}

.site-footer__col a {
    color: var(--muted);
    transition: color 0.2s ease;
}

.site-footer__col a:hover {
    color: var(--gold);
}

.site-footer__bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 24px 0;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 13px;
}

.site-footer__bottom a:hover {
    color: var(--gold);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .info__editorial {
        grid-template-columns: 1fr;
        border-top: none;
    }

    .info__col {
        border-left: none;
        border-top: 1px solid var(--line);
        padding: 32px 0 0;
    }

    .info__col:first-child {
        border-top: none;
    }

    .specialties__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process__grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 40px;
    }

    .process__step:nth-child(3) {
        border-left: none;
        padding-left: 0;
    }

    .policies__grid {
        grid-template-columns: 1fr;
    }

    .contact__layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 860px) {
    section {
        padding: 72px 24px;
    }

    .section-title {
        margin-bottom: 44px;
    }

    .hero {
        min-height: 92vh;
        padding: 60px 24px;
    }

    .hero__scroll {
        bottom: 20px;
    }

    .artist__layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .artist__photo {
        max-width: 340px;
        margin: 0 auto;
    }

    .artist__quote-mark {
        font-size: 72px;
        top: -26px;
    }

    .artist__stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .artist__stat-divider {
        display: none;
    }

    .specialties__grid {
        grid-template-columns: 1fr;
    }

    .specialties__item {
        border-right: none;
    }

    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 170px;
    }

    .gallery__item:nth-child(3n+1) {
        grid-row: span 1;
    }

    .gallery__item:nth-child(odd) {
        grid-row: span 2;
    }

    .process__grid {
        grid-template-columns: 1fr;
        row-gap: 0;
    }

    .process__step {
        border-left: none;
        border-top: 1px solid var(--line);
        padding: 32px 0 0;
    }

    .process__step:first-child {
        border-top: none;
    }

    .final-cta__inner {
        padding: 64px 24px;
    }

    .main-nav {
        position: fixed;
        top: 65px;
        right: 0;
        bottom: 0;
        left: 0;
        background: var(--bg);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        font-size: 20px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.2s ease;
    }

    .nav-toggle:checked ~ .main-nav {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-burger {
        display: flex;
    }

    .btn-book--desktop {
        display: none;
    }

    .btn-book--mobile {
        display: inline-flex;
        margin-top: 12px;
    }

    .contact__row {
        grid-template-columns: 1fr;
    }

    .site-footer__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
