:root {
    --bg: #f3ede3;
    --bg-alt: #e5d7c7;
    --surface: rgba(255, 250, 242, 0.82);
    --surface-strong: #fffaf3;
    --surface-soft: rgba(255, 255, 255, 0.66);
    --panel-dark: #171411;
    --panel-dark-2: #221d17;
    --ink: #191512;
    --muted: #6f655d;
    --line: rgba(25, 21, 18, 0.12);
    --line-strong: rgba(25, 21, 18, 0.18);
    --accent: #ef5a29;
    --accent-strong: #d9481c;
    --accent-2: #0f8c93;
    --accent-soft: #ffe1d4;
    --white: #ffffff;
    --radius: 28px;
    --shadow: 0 26px 70px rgba(71, 45, 18, 0.12);
    --shadow-soft: 0 14px 32px rgba(71, 45, 18, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Manrope', sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(239, 90, 41, 0.18), transparent 24%),
        radial-gradient(circle at 90% 14%, rgba(15, 140, 147, 0.15), transparent 22%),
        linear-gradient(180deg, #f6f0e7 0%, #f3ede3 48%, #eadccc 100%);
}

body::before,
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
}

body::before {
    opacity: 0.4;
    background-image:
        linear-gradient(rgba(25, 21, 18, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(25, 21, 18, 0.03) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(circle at center, black 42%, transparent 88%);
}

body::after {
    inset: auto -10% -16% auto;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(239, 90, 41, 0.12), transparent 65%);
    filter: blur(18px);
}

a {
    color: inherit;
    text-decoration: none;
}

img,
video {
    display: block;
    width: 100%;
    border: 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.announcement-bar {
    overflow: hidden;
    background: linear-gradient(90deg, #171411, #241d17);
    color: #fff4eb;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.announcement-track {
    display: flex;
    gap: 3rem;
    width: max-content;
    padding: 0.92rem 0;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    animation: ticker 24s linear infinite;
}

.site-header,
.page-shell,
.site-footer {
    width: min(1240px, calc(100% - 2rem));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0.8rem;
    z-index: 20;
    display: grid;
    grid-template-columns: auto 1fr minmax(280px, 360px);
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    margin-top: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 999px;
    background: rgba(255, 248, 240, 0.72);
    backdrop-filter: blur(22px);
    box-shadow: var(--shadow-soft);
}

.brand-mark,
.search-shell,
.section-card,
.work-card,
.hero-panel,
.detail-shell,
.site-footer,
.empty-state,
.highlight-list article,
.momentum-strip,
.spotlight-card,
.studio-note {
    box-shadow: var(--shadow);
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
}

.brand-mark strong,
.hero-copy h1,
.section-heading h2,
.spotlight-card h3,
.section-card h3,
.work-card h3,
.detail-copy h1,
.site-footer h2,
.studio-note h3 {
    font-family: 'Space Grotesk', sans-serif;
}

.brand-mark strong {
    font-size: 1rem;
}

.brand-mark small {
    display: block;
    color: var(--muted);
}

.brand-mark__dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #ffab60);
    box-shadow: 0 0 0 8px rgba(239, 90, 41, 0.1);
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.main-nav a {
    padding: 0.72rem 0.96rem;
    border-radius: 999px;
    color: var(--muted);
    font-weight: 700;
}

.main-nav a:hover {
    background: rgba(25, 21, 18, 0.06);
    color: var(--ink);
}

.search-shell {
    position: relative;
    padding: 0.85rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.75);
    box-shadow: none;
}

.search-input {
    width: 100%;
    border: 0;
    outline: 0;
    color: var(--ink);
    background: transparent;
    font: inherit;
}

.search-dropdown {
    position: absolute;
    top: calc(100% + 0.8rem);
    left: 0;
    right: 0;
    display: none;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 250, 243, 0.98);
    box-shadow: var(--shadow);
}

.search-dropdown.is-open {
    display: block;
}

.search-result {
    display: flex;
    gap: 0.85rem;
    align-items: center;
    padding: 0.9rem 1rem;
    border-bottom: 1px solid var(--line);
}

.search-result:last-child {
    border-bottom: 0;
}

.search-result img,
.search-result__thumb {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    object-fit: cover;
    background: linear-gradient(135deg, rgba(239, 90, 41, 0.18), rgba(15, 140, 147, 0.16));
}

.search-result strong {
    display: block;
}

.search-result span {
    color: var(--muted);
    font-size: 0.92rem;
}

.page-shell {
    padding: 1.2rem 0 4rem;
}

.hero-panel,
.detail-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 1.5rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 34px;
    background: var(--surface);
    backdrop-filter: blur(18px);
}

.hero-copy {
    display: grid;
    align-content: start;
    gap: 1rem;
    padding: 0.4rem;
}

.hero-copy__stack {
    max-width: 640px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.45rem;
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-copy h1,
.detail-copy h1 {
    margin: 0;
    font-size: clamp(2.8rem, 6vw, 5.4rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.hero-lead {
    margin: 0;
    max-width: 48rem;
    font-size: 1.18rem;
    font-weight: 700;
    color: #463c34;
}

.hero-copy p,
.detail-copy p,
.section-heading p,
.section-card__content p,
.work-card__body p,
.footer-copy p,
.studio-note p {
    margin: 0;
    color: var(--muted);
    line-height: 1.72;
}

.hero-chip-row,
.tag-row,
.footer-links,
.hero-actions,
.detail-actions,
.studio-note__list,
.spotlight-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.hero-chip-row span,
.tag-row span,
.studio-note__list span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0.45rem 0.8rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.58);
    color: #493e36;
    font-size: 0.84rem;
    font-weight: 700;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.85rem 1.25rem;
    border: 1px solid transparent;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), #ff925f);
    color: #fff7f1;
    font-weight: 800;
    box-shadow: 0 12px 26px rgba(239, 90, 41, 0.18);
}

.button--ghost {
    background: transparent;
    border-color: var(--line-strong);
    color: var(--ink);
    box-shadow: none;
}

.metric-row,
.section-grid,
.work-grid,
.detail-meta-grid,
.highlight-list {
    display: grid;
    gap: 1rem;
}

.metric-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 0.35rem;
}

.metric-row article,
.detail-meta-grid article {
    padding: 1.05rem 1.1rem;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.5);
}

.metric-row strong,
.detail-meta-grid strong {
    display: block;
    margin-bottom: 0.2rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.7rem;
}

.metric-row span,
.detail-meta-grid span {
    color: var(--muted);
}

.hero-stage {
    position: relative;
    min-height: 100%;
    padding: 1rem;
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(15, 140, 147, 0.22), transparent 28%),
        radial-gradient(circle at bottom left, rgba(239, 90, 41, 0.26), transparent 30%),
        linear-gradient(180deg, var(--panel-dark) 0%, var(--panel-dark-2) 100%);
    overflow: hidden;
}

.hero-stage__frame {
    overflow: hidden;
    border-radius: 24px;
    min-height: 480px;
}

.hero-visual img,
.detail-media img,
.detail-media video {
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    border-radius: 24px;
}

.hero-visual__fallback {
    display: grid;
    place-items: center;
    min-height: 480px;
    border-radius: 24px;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.03), transparent),
        radial-gradient(circle at 18% 22%, rgba(239, 90, 41, 0.42), transparent 22%),
        radial-gradient(circle at 82% 18%, rgba(15, 140, 147, 0.3), transparent 24%),
        linear-gradient(180deg, #191512 0%, #2a231d 100%);
}

.hero-visual__fallback span {
    color: rgba(255, 244, 236, 0.9);
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 6vw, 4rem);
    letter-spacing: -0.04em;
}

.hero-stage__spotlight {
    position: absolute;
    left: 1.4rem;
    bottom: 1.4rem;
    display: grid;
    gap: 0.15rem;
    max-width: 260px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    background: rgba(255, 248, 240, 0.92);
    color: var(--ink);
}

.hero-stage__spotlight small,
.hero-stage__mini small,
.work-card__footer small {
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 700;
}

.hero-stage__spotlight strong,
.hero-stage__mini strong {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
}

.hero-stage__spotlight em {
    font-style: normal;
    color: var(--accent);
    font-weight: 800;
}

.hero-stage__rail {
    position: absolute;
    top: 1.4rem;
    right: 1.4rem;
    display: grid;
    gap: 0.75rem;
    width: min(240px, calc(100% - 2.8rem));
}

.hero-stage__mini {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 0.75rem;
    align-items: center;
    padding: 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff3ec;
}

.hero-stage__mini-thumb {
    overflow: hidden;
    border-radius: 14px;
    aspect-ratio: 1 / 1;
}

.hero-stage__mini-thumb img {
    height: 100%;
    object-fit: cover;
}

.momentum-strip {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: center;
    margin-top: 1.1rem;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 999px;
    background: rgba(255, 250, 242, 0.76);
    overflow: hidden;
}

.momentum-strip__label {
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    background: var(--panel-dark);
    color: #fff6ef;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.momentum-strip__track {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.momentum-strip__track span {
    padding: 0.52rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.62);
    color: #4f463e;
    font-weight: 700;
}

.content-section {
    margin-top: 1.8rem;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1.25rem;
    margin-bottom: 1.15rem;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    letter-spacing: -0.04em;
}

.section-heading p {
    max-width: 32rem;
}

.spotlight-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.spotlight-card,
.studio-note {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 28px;
    background: var(--surface);
    backdrop-filter: blur(18px);
}

.spotlight-card {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 1rem;
    align-items: stretch;
}

.spotlight-card__media {
    overflow: hidden;
    border-radius: 22px;
    min-height: 320px;
    background: linear-gradient(160deg, rgba(239, 90, 41, 0.18), rgba(15, 140, 147, 0.14));
}

.spotlight-card__media img {
    height: 100%;
    object-fit: cover;
}

.spotlight-card__content {
    display: grid;
    align-content: start;
    gap: 0.75rem;
    padding: 0.35rem 0.25rem;
}

.spotlight-card h3,
.studio-note h3 {
    margin: 0;
    font-size: clamp(1.5rem, 3vw, 2.35rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.spotlight-card__meta span {
    min-height: 38px;
    padding: 0.48rem 0.8rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.58);
    font-size: 0.86rem;
    font-weight: 700;
}

.studio-note {
    display: grid;
    align-content: center;
    gap: 1rem;
    background:
        radial-gradient(circle at top right, rgba(15, 140, 147, 0.14), transparent 28%),
        radial-gradient(circle at bottom left, rgba(239, 90, 41, 0.14), transparent 28%),
        rgba(255, 250, 243, 0.86);
}

.section-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.work-grid {
    grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
}

.section-card,
.work-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: var(--radius);
    background: var(--surface);
    backdrop-filter: blur(16px);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.section-card:hover,
.work-card:hover,
.spotlight-card:hover {
    transform: translateY(-4px);
}

.section-card__media,
.work-card__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1.08 / 0.86;
    background: linear-gradient(160deg, rgba(239, 90, 41, 0.18), rgba(15, 140, 147, 0.14));
}

.section-card__media::after,
.work-card__media::after,
.spotlight-card__media::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 45%;
    background: linear-gradient(180deg, transparent, rgba(23, 20, 17, 0.28));
}

.section-card__media img,
.work-card__media img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.section-card:hover img,
.work-card:hover img {
    transform: scale(1.06);
}

.section-card__placeholder,
.work-card__placeholder {
    display: grid;
    place-items: center;
    height: 100%;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.7rem;
    color: rgba(255, 255, 255, 0.9);
    background:
        radial-gradient(circle at 28% 18%, rgba(239, 90, 41, 0.56), transparent 22%),
        radial-gradient(circle at 80% 22%, rgba(15, 140, 147, 0.42), transparent 24%),
        linear-gradient(180deg, #2c241e 0%, #171411 100%);
}

.section-card__content,
.work-card__body {
    display: grid;
    gap: 0.72rem;
    padding: 1.15rem;
}

.section-card__content span,
.work-card__meta span,
.back-link {
    color: var(--accent);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.section-card h3,
.work-card h3 {
    margin: 0;
    letter-spacing: -0.03em;
}

.work-card__meta,
.work-card__footer {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

.work-card__footer {
    padding-top: 0.1rem;
}

.work-card__footer span {
    color: var(--ink);
    font-weight: 800;
}

.work-badge,
.price-pill {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0.38rem 0.72rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 250, 243, 0.94);
    color: var(--ink);
    font-size: 0.78rem;
    font-weight: 800;
}

.work-badge--secondary {
    top: 3.75rem;
    background: linear-gradient(135deg, var(--accent), #ff9553);
    color: #fff8f1;
}

.price-pill {
    position: static;
    border-color: transparent;
    background: linear-gradient(135deg, var(--accent), #ff9553);
    color: #fff7f1;
}

.detail-copy {
    display: grid;
    align-content: start;
    gap: 1rem;
}

.detail-meta-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.detail-actions {
    align-items: center;
}

.metric-row--compact {
    margin-top: 0;
}

.highlight-list {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.highlight-list article,
.empty-state {
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 24px;
    background: var(--surface);
    backdrop-filter: blur(16px);
}

.empty-state {
    text-align: center;
}

.site-footer {
    display: grid;
    gap: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(239, 90, 41, 0.18), transparent 24%),
        linear-gradient(180deg, #171411 0%, #231d17 100%);
    color: #fff3ea;
}

.footer-copy p,
.footer-meta {
    color: rgba(255, 243, 234, 0.72);
}

.footer-links a {
    padding: 0.6rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
}

.lightbox {
    position: fixed;
    inset: 0;
    display: none;
    place-items: center;
    padding: 2rem;
    background: rgba(8, 7, 6, 0.84);
    z-index: 30;
}

.lightbox.is-open {
    display: grid;
}

.lightbox img {
    width: min(1020px, 100%);
    max-height: 88vh;
    object-fit: contain;
}

.lightbox__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.85rem 1rem;
    border: 0;
    border-radius: 999px;
    background: var(--surface-strong);
    color: var(--ink);
    font: inherit;
    font-weight: 800;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-33.33%);
    }
}

@media (max-width: 1120px) {
    .site-header,
    .hero-panel,
    .detail-shell,
    .section-heading,
    .spotlight-layout,
    .spotlight-card {
        grid-template-columns: 1fr;
    }

    .site-header {
        position: static;
        border-radius: 28px;
    }

    .main-nav {
        justify-content: start;
    }

    .hero-stage__rail,
    .hero-stage__spotlight {
        position: static;
        width: 100%;
        margin-top: 1rem;
    }

    .hero-stage__frame {
        min-height: 360px;
    }
}

@media (max-width: 760px) {
    .site-header,
    .page-shell,
    .site-footer {
        width: min(100% - 1rem, 1240px);
    }

    .hero-panel,
    .detail-shell,
    .spotlight-card,
    .spotlight-card__content,
    .studio-note,
    .site-footer {
        padding: 1.1rem;
    }

    .metric-row {
        grid-template-columns: 1fr;
    }

    .momentum-strip {
        border-radius: 28px;
    }

    .hero-copy h1,
    .detail-copy h1 {
        font-size: clamp(2.2rem, 12vw, 3.6rem);
    }
}

