/* ============================================================
   Pratived Studio — dark gallery, warm gold
   ============================================================ */

:root {
    --bg: #101010;
    --bg-raised: #171614;
    --ink: #ede8df;
    --muted: #9b948a;
    --gold: #c9a45c;
    --gold-bright: #dcb96f;
    --line: #29261f;
    --row-h: clamp(240px, 36vh, 400px);
    --serif: 'Fraunces', Georgia, serif;
    --sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--sans);
    font-weight: 300;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

::-webkit-scrollbar { width: 10px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2e2b25; border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

h1, h2, h3 {
    font-family: var(--serif);
    font-weight: 400;
    line-height: 1.15;
    margin: 0;
}

img { max-width: 100%; }

/* ---------- shared bits ---------- */

.kicker {
    font-size: 0.72rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 1rem;
}

.btn {
    display: inline-block;
    padding: 0.85rem 1.9rem;
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn-solid {
    background: var(--gold);
    color: #171310;
    border: 1px solid var(--gold);
}
.btn-solid:hover { background: var(--gold-bright); border-color: var(--gold-bright); }

.btn-ghost {
    color: var(--ink);
    border: 1px solid rgba(237, 232, 223, 0.35);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); }

/* ---------- reveal on scroll ---------- */

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- header ---------- */

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem clamp(1.2rem, 4vw, 3rem);
    transition: background 0.35s ease, border-color 0.35s ease, padding 0.35s ease;
    border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
    background: rgba(14, 13, 12, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom-color: var(--line);
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
}

.wordmark {
    font-family: var(--serif);
    font-size: 1.35rem;
    letter-spacing: 0.04em;
    color: var(--ink);
    text-decoration: none;
}
.wordmark span {
    font-family: var(--sans);
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-left: 0.6rem;
    vertical-align: 0.18em;
}

.site-header nav {
    display: flex;
    align-items: center;
    gap: clamp(0.9rem, 2.5vw, 2rem);
}
.site-header nav a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.74rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 0.3rem 0;
    border-bottom: 1px solid transparent;
    transition: color 0.25s ease, border-color 0.25s ease;
}
.site-header nav a:hover,
.site-header nav a:focus-visible { color: var(--ink); border-bottom-color: var(--gold); }

.site-header nav .nav-contact { color: var(--gold); }
.site-header nav .nav-contact:hover { color: var(--gold-bright); }

/* ---------- hero ---------- */

.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: 6rem clamp(1.2rem, 6vw, 5rem) 4rem;
    background:
        linear-gradient(105deg, rgba(16,16,16,0.55) 40%, rgba(16,16,16,0.85) 100%),
        linear-gradient(180deg, rgba(16,16,16,0.72) 0%, rgba(16,16,16,0.5) 45%, var(--bg) 98%),
        url('../images/hospitality/hospitality-43.jpg') center / cover no-repeat #101010;
}

.hero-inner { max-width: 780px; }

.hero h1 {
    font-size: clamp(2.6rem, 6.2vw, 4.8rem);
    font-weight: 300;
    letter-spacing: -0.015em;
    margin-bottom: 1.4rem;
}

.lede {
    max-width: 560px;
    color: var(--muted);
    font-size: clamp(1rem, 1.4vw, 1.12rem);
    margin: 0 0 2.4rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 2rem;
    transform: translateX(-50%);
    width: 1px;
    height: 56px;
    overflow: hidden;
}
.scroll-cue span {
    display: block;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--gold));
    animation: cue 2.4s ease-in-out infinite;
}
@keyframes cue {
    0% { transform: translateY(-100%); }
    60%, 100% { transform: translateY(100%); }
}
@media (prefers-reduced-motion: reduce) { .scroll-cue { display: none; } }

/* ---------- intro ---------- */

.intro { padding: clamp(4rem, 9vw, 7rem) clamp(1.2rem, 6vw, 5rem); }

.intro-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(280px, 5fr) minmax(280px, 6fr);
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: start;
}

.intro-copy h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 1.2rem; }
.intro-copy p:not(.kicker) { color: var(--muted); font-size: 1.02rem; margin: 0; }

.steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1.4rem;
}
.steps li {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 1.3rem;
    padding: 1.3rem 0 1.5rem;
    border-top: 1px solid var(--line);
}
.step-num {
    grid-row: 1 / span 2;
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.5rem;
    color: var(--gold);
    line-height: 1;
    padding-top: 0.2rem;
}
.steps h3 { font-size: 1.15rem; margin-bottom: 0.35rem; }
.steps p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* ---------- collections ---------- */

.collection { padding: clamp(2.5rem, 5vw, 4rem) 0; }

.collection-head {
    max-width: 1200px;
    margin: 0 auto 1.6rem;
    padding: 0 clamp(1.2rem, 6vw, 5rem);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
}

.collection-title h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
.collection-note {
    color: var(--muted);
    font-size: 0.95rem;
    max-width: 520px;
    margin: 0.6rem 0 0;
}

.row-controls { display: flex; gap: 0.6rem; flex: 0 0 auto; }
.row-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--muted);
    font-size: 1.05rem;
    cursor: pointer;
    transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.row-btn:hover, .row-btn:focus-visible {
    color: #171310;
    background: var(--gold);
    border-color: var(--gold);
}

.scroll-row {
    display: flex;
    gap: clamp(0.9rem, 1.6vw, 1.4rem);
    overflow-x: auto;
    padding: 0.4rem clamp(1.2rem, 6vw, 5rem) 1.4rem;
    scroll-snap-type: x proximity;
    scroll-padding-left: clamp(1.2rem, 6vw, 5rem);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
}
.scroll-row::-webkit-scrollbar { display: none; }
.scroll-row.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.scroll-row:focus-visible { outline: 1px solid var(--gold); outline-offset: -1px; }

.card {
    flex: 0 0 auto;
    scroll-snap-align: start;
    border: none;
    padding: 0;
    background: var(--bg-raised);
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card img {
    display: block;
    height: var(--row-h);
    width: auto;
    max-width: none;
}
.card::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 0 1px rgba(237, 232, 223, 0.07);
    border-radius: 3px;
    pointer-events: none;
    transition: box-shadow 0.3s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5); }
.card:hover::after { box-shadow: inset 0 0 0 1px rgba(201, 164, 92, 0.55); }
.card:focus-visible { outline: none; }
.card:focus-visible::after { box-shadow: inset 0 0 0 2px var(--gold); }

.fidelity-note {
    text-align: center;
    color: var(--muted);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 1rem 1.5rem 0;
    margin: 1rem 0 0;
}

/* ---------- contact ---------- */

.contact {
    padding: clamp(5rem, 11vw, 9rem) clamp(1.2rem, 6vw, 5rem);
    text-align: center;
}

.contact-inner {
    max-width: 640px;
    margin: 0 auto;
    padding-top: clamp(3rem, 6vw, 5rem);
    border-top: 1px solid var(--line);
}

.contact h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); margin-bottom: 1.2rem; }
.contact p:not(.kicker):not(.contact-note) { color: var(--muted); margin: 0 auto 2.2rem; max-width: 480px; }

.contact-email {
    display: inline-block;
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(201, 164, 92, 0.4);
    padding-bottom: 0.2rem;
    transition: color 0.25s ease, border-color 0.25s ease;
}
.contact-email:hover { color: var(--gold-bright); border-bottom-color: var(--gold-bright); }

.contact-note { color: var(--muted); font-size: 0.85rem; margin: 1.6rem 0 0; }

/* ---------- footer ---------- */

footer {
    border-top: 1px solid var(--line);
    text-align: center;
    padding: 3rem 1.5rem 3.4rem;
}
.footer-brand {
    font-family: var(--serif);
    font-size: 1.15rem;
    margin: 0 0 0.3rem;
}
.footer-line {
    color: var(--gold);
    font-size: 0.68rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    margin: 0 0 1.4rem;
}
.footer-meta { color: var(--muted); font-size: 0.82rem; margin: 0; }
.footer-meta a { color: var(--muted); text-decoration: none; border-bottom: 1px solid var(--line); }
.footer-meta a:hover { color: var(--ink); border-bottom-color: var(--gold); }

/* ---------- lightbox ---------- */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: clamp(1rem, 3vw, 2.5rem);
    background: rgba(10, 9, 8, 0.94);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.lightbox.is-open { display: flex; }

.lb-shell {
    margin: 0;
    max-width: min(92vw, 1100px);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: lb-in 0.28s ease;
}
@keyframes lb-in {
    from { opacity: 0; transform: scale(0.965); }
    to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) { .lb-shell { animation: none; } }

.lb-shell img {
    max-width: 100%;
    max-height: 78vh;
    width: auto;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
}

.lb-caption {
    display: flex;
    align-items: baseline;
    gap: 1.4rem;
    margin-top: 1.1rem;
    color: var(--muted);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
}
#lb-title { font-family: var(--serif); font-style: italic; font-size: 1rem; color: var(--ink); }
#lb-counter { color: var(--gold); letter-spacing: 0.2em; }

.lb-close {
    position: absolute;
    top: 1.2rem;
    right: 1.4rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: rgba(16, 16, 16, 0.6);
    color: var(--ink);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
}
.lb-close:hover { background: var(--gold); color: #171310; }

.lb-arrow {
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: rgba(16, 16, 16, 0.6);
    color: var(--ink);
    font-size: 1.15rem;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.lb-arrow:hover, .lb-arrow:focus-visible {
    background: var(--gold);
    border-color: var(--gold);
    color: #171310;
}

/* ---------- provenance line ---------- */

.provenance {
    margin-top: 1.4rem !important;
    padding-top: 1.2rem;
    border-top: 1px solid var(--line);
    font-size: 0.88rem !important;
    font-style: italic;
    color: var(--muted);
}

/* ---------- looks ---------- */

.looks { padding: clamp(3.5rem, 7vw, 6rem) clamp(1.2rem, 6vw, 5rem); }

.looks-head { max-width: 1200px; margin: 0 auto 2.2rem; }
.looks-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.looks-note { color: var(--muted); max-width: 560px; margin: 0.6rem 0 0; }

.looks-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(1rem, 2vw, 1.6rem);
}

.look-card {
    display: block;
    text-decoration: none;
    color: var(--ink);
    background: var(--bg-raised);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--line);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.look-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 164, 92, 0.5);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}
.look-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    filter: saturate(0.92);
}
.look-meta { padding: 1.2rem 1.4rem 1.5rem; }
.look-meta h3 { font-size: 1.3rem; margin-bottom: 0.4rem; }
.look-meta p { color: var(--muted); font-size: 0.92rem; margin: 0 0 0.9rem; }
.look-cta {
    font-size: 0.72rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold);
}

/* ---------- trust / pricing ---------- */

.trust { padding: clamp(3.5rem, 7vw, 6rem) clamp(1.2rem, 6vw, 5rem); }
.trust-inner { max-width: 1200px; margin: 0 auto; }
.trust-head { margin-bottom: 2.2rem; }
.trust-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }

.trust-grid {
    display: grid;
    grid-template-columns: minmax(300px, 7fr) minmax(240px, 5fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.price-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.98rem;
}
.price-table th {
    text-align: left;
    font-weight: 500;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 0 0 0.8rem;
    border-bottom: 1px solid var(--line);
}
.price-table td {
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
}
.price-table td:not(:first-child) { color: var(--muted); }
.price-note { color: var(--muted); font-size: 0.85rem; margin-top: 1.1rem; }

.promises { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.5rem; }
.promises h3 { font-size: 1.12rem; margin-bottom: 0.35rem; }
.promises p { margin: 0; color: var(--muted); font-size: 0.93rem; }
.promises li { padding-left: 1.2rem; border-left: 2px solid var(--gold); }

/* ---------- enquiry form ---------- */

.enquiry-form {
    max-width: 640px;
    margin: 2.4rem auto 0;
    text-align: left;
    display: grid;
    gap: 1.1rem;
}
.hp-field { position: absolute; left: -9999px; height: 0; overflow: hidden; margin: 0; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.enquiry-form label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
}
.enquiry-form input,
.enquiry-form textarea {
    display: block;
    width: 100%;
    margin-top: 0.45rem;
    padding: 0.8rem 0.9rem;
    background: var(--bg-raised);
    border: 1px solid var(--line);
    border-radius: 3px;
    color: var(--ink);
    font-family: var(--sans);
    font-size: 0.98rem;
    letter-spacing: normal;
    text-transform: none;
    transition: border-color 0.25s ease;
}
.enquiry-form input:focus,
.enquiry-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}
.enquiry-form textarea { resize: vertical; }
.enquiry-form button { justify-self: start; cursor: pointer; font-family: var(--sans); }

.contact-email-inline {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(201, 164, 92, 0.4);
}
.contact-email-inline:hover { color: var(--gold-bright); }

/* ---------- lightbox: mode toggle + wall view ---------- */

.lb-mode {
    display: flex;
    gap: 0;
    margin-bottom: 0.9rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    overflow: hidden;
    align-self: center;
}
.lb-mode button {
    padding: 0.45rem 1.3rem;
    background: transparent;
    border: none;
    color: var(--muted);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
}
.lb-mode button.is-active { background: var(--gold); color: #171310; }

.wall-view { width: min(88vw, 900px); }
.wall-stage {
    position: relative;
    width: 100%;
    aspect-ratio: 400 / 280;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
}
.wall-scene-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
#wall-art {
    position: absolute;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55), 0 0 0 4px #0c0b0a;
}

.wall-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}
.wall-sizes { display: flex; gap: 0.5rem; }
.wall-sizes button {
    padding: 0.4rem 0.9rem;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.25s ease;
}
.wall-sizes button.is-active,
.wall-sizes button:hover { background: var(--gold); border-color: var(--gold); color: #171310; }
.wall-caption { color: var(--muted); font-size: 0.8rem; letter-spacing: 0.08em; margin: 0; }

/* ---------- small screens ---------- */

@media (max-width: 720px) {
    .site-header { padding: 0.9rem 1.1rem; }
    .site-header nav a:not(.nav-contact) { display: none; }
    .site-header {
        background: rgba(14, 13, 12, 0.88);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom-color: var(--line);
    }

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

    .collection-head { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .row-controls { display: none; }

    :root { --row-h: clamp(200px, 30vh, 280px); }

    .lightbox { gap: 0.4rem; padding: 0.8rem; }
    .lb-arrow { position: fixed; bottom: 1.2rem; z-index: 210; }
    .lb-prev { left: calc(50% - 64px); }
    .lb-next { right: calc(50% - 64px); }
    .lb-shell img { max-height: 66vh; }

    .form-row { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr; }
    .look-card img { height: 180px; }
    .wall-view { width: 92vw; }
    .wall-controls { justify-content: center; }
    .wall-caption { text-align: center; width: 100%; }
}
