:root {
    --paper: #fbf4e8;
    --paper-deep: #f3e6d1;
    --paper-rose: #f4ddd2;
    --surface: rgba(255, 251, 244, 0.82);
    --surface-strong: #fffaf2;
    --line: rgba(115, 82, 53, 0.16);
    --line-strong: rgba(190, 132, 84, 0.34);
    --text: #2f2117;
    --muted: #755d4b;
    --muted-strong: #5a4334;
    --amber: #cf954a;
    --terracotta: #bc7159;
    --rose: #d1947e;
    --sage: #8c9a70;
    --cream: #fffdf9;
    --shadow: 0 28px 64px rgba(97, 64, 35, 0.12);
    --shadow-soft: 0 16px 36px rgba(97, 64, 35, 0.09);
    --radius-xl: 36px;
    --radius-lg: 28px;
    --radius-md: 20px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Nunito Sans", "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(207, 149, 74, 0.18), transparent 30%),
        radial-gradient(circle at top right, rgba(188, 113, 89, 0.12), transparent 30%),
        radial-gradient(circle at 30% 100%, rgba(140, 154, 112, 0.12), transparent 34%),
        linear-gradient(180deg, #fdf8f0 0%, #f8efe2 42%, #fdf9f3 100%);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background-image:
        linear-gradient(rgba(92, 68, 49, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(92, 68, 49, 0.03) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.22), transparent 92%);
}

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

a {
    color: inherit;
}

h1,
h2,
h3,
h4 {
    font-family: "Cormorant Garamond", Georgia, serif;
    line-height: 0.95;
    letter-spacing: -0.03em;
}

p {
    color: var(--muted);
}

.shell {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.surface-card {
    background: linear-gradient(180deg, rgba(255, 251, 245, 0.9), rgba(255, 248, 239, 0.82));
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.eyebrow,
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(115, 82, 53, 0.12);
    background: rgba(255, 251, 245, 0.62);
    color: var(--muted-strong);
    font-size: 0.79rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow {
    gap: 8px;
    font-size: 0.84rem;
    letter-spacing: 0.02em;
    text-transform: none;
}

.eyebrow::before {
    content: none;
}

.eyebrow-stars {
    color: #d4a017;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    line-height: 1;
}

.section-label::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--amber), var(--terracotta));
    box-shadow: 0 0 16px rgba(188, 113, 89, 0.28);
}

.section-label {
    margin: 0 auto 14px;
}

.section-label-left {
    margin: 0 0 14px;
}

.section-title {
    text-align: center;
    font-size: clamp(2.3rem, 4vw, 4rem);
    margin-bottom: 16px;
}

.section-title-left {
    text-align: left;
}

.section-subtitle,
.section-copy {
    font-size: 1.05rem;
    max-width: 720px;
}

.section-subtitle {
    margin: 0 auto 50px;
    text-align: center;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px;
}

.section-pill {
    flex-shrink: 0;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(207, 149, 74, 0.12);
    border: 1px solid rgba(207, 149, 74, 0.18);
    color: var(--muted-strong);
    font-size: 0.92rem;
    font-weight: 800;
}

nav {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(115, 82, 53, 0.08);
    background: rgba(253, 248, 241, 0.84);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.nav-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo img {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    box-shadow: var(--shadow-soft);
}

.nav-logo-text span {
    display: block;
}

.nav-logo-text .brand {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.5rem;
    color: var(--text);
}

.nav-logo-text .sub {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--muted-strong);
    font-size: 0.94rem;
    font-weight: 800;
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-cta {
    padding: 12px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #d6a057, #bf7b5f);
    color: #fff7ef !important;
    box-shadow: 0 18px 34px rgba(188, 113, 89, 0.24);
}

.nav-mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(115, 82, 53, 0.12);
    border-radius: 14px;
    background: rgba(255, 251, 245, 0.72);
    cursor: pointer;
}

.nav-mobile-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--text);
    border-radius: 999px;
}

.hero {
    position: relative;
    padding: 60px 0 92px;
    overflow: clip;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 16% 18%, rgba(207, 149, 74, 0.14), transparent 26%),
        radial-gradient(circle at 90% 12%, rgba(209, 148, 126, 0.18), transparent 32%),
        radial-gradient(circle at 50% 100%, rgba(140, 154, 112, 0.1), transparent 36%);
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    gap: 48px;
    align-items: center;
}

.hero-copy h1 {
    font-size: clamp(3.3rem, 7vw, 6rem);
    margin: 24px 0 18px;
    max-width: 12.8ch;
    text-wrap: balance;
}

.hero-copy h1 em {
    font-style: italic;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: -0.01em;
}

.hero-copy p {
    font-size: 1.1rem;
    max-width: 58ch;
    margin-bottom: 28px;
}

.hero-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.meta-pill {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 251, 245, 0.78);
    border: 1px solid rgba(115, 82, 53, 0.1);
    color: var(--muted-strong);
    font-size: 0.88rem;
    font-weight: 800;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-buttons-center {
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 22px;
    border-radius: 18px;
    text-decoration: none;
    font-weight: 800;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.btn-secondary {
    border: 1px solid rgba(115, 82, 53, 0.14);
    background: rgba(255, 251, 245, 0.78);
    color: var(--text);
}

.btn-appstore {
    min-height: 0;
    padding: 0;
    border-radius: 14px;
}

.btn-appstore img {
    display: block;
    width: auto;
    height: 58px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 30px;
}

.hero-stat {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 251, 245, 0.72);
    border: 1px solid rgba(115, 82, 53, 0.1);
    box-shadow: var(--shadow-soft);
}

.hero-stat strong {
    display: block;
    margin-bottom: 6px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.7rem;
    color: var(--text);
}

.hero-stat span {
    display: block;
    font-size: 0.92rem;
    color: var(--muted);
}

.hero-visual {
    position: relative;
    width: 100%;
    max-width: 360px;
    justify-self: end;
}

.studio-board {
    position: relative;
    border-radius: var(--radius-xl);
    padding: 15px;
    background:
        linear-gradient(180deg, rgba(255, 252, 246, 0.96), rgba(242, 227, 204, 0.94));
    border: 1px solid rgba(115, 82, 53, 0.12);
    box-shadow: 0 34px 80px rgba(91, 59, 34, 0.16);
}

.studio-board::before {
    content: "";
    position: absolute;
    inset: 9px;
    border-radius: calc(var(--radius-xl) - 8px);
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.86), transparent 34%),
        radial-gradient(circle at bottom right, rgba(209, 148, 126, 0.18), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 244, 230, 0.44));
    pointer-events: none;
    z-index: 0;
}

.studio-gallery {
    position: relative;
    z-index: 1;
}

.hero-video-frame {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    padding: 8px;
    background: linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(248, 239, 226, 0.94));
    border: 1px solid rgba(115, 82, 53, 0.12);
    box-shadow: 0 26px 52px rgba(91, 59, 34, 0.14);
}

.hero-video-frame::after {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    pointer-events: none;
}

.hero-video {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 22px;
    background: #d8ccb8;
}

section {
    padding: 86px 0;
}

.collection-cards {
    display: grid;
    gap: 22px;
}

.collection-summary h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.painting-details {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.painting-details span {
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(115, 82, 53, 0.08);
    color: var(--muted-strong);
    font-size: 0.82rem;
    font-weight: 700;
}

.collections-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
    gap: 24px;
    margin-bottom: 24px;
}

.collection-mosaic,
.collection-summary,
.painting-card {
    border-radius: var(--radius-xl);
}

.collection-mosaic {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 14px;
}

.collection-mosaic figure {
    border-radius: 22px;
    overflow: hidden;
    min-height: 220px;
}

.collection-mosaic .mosaic-wide {
    grid-column: 1 / -1;
    min-height: 320px;
}

.collection-mosaic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collection-summary {
    padding: 28px;
    display: flex;
    flex-direction: column;
}

.collection-chip-list {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.collection-chip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.52);
    border: 1px solid rgba(115, 82, 53, 0.08);
}

.collection-chip span {
    color: var(--muted-strong);
    font-size: 0.94rem;
    font-weight: 700;
}

.collection-chip strong {
    color: var(--terracotta);
    font-size: 1rem;
    text-align: right;
}

.artist-archive {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(115, 82, 53, 0.08);
}

.artist-archive-copy {
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.artist-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
}

.artist-list span {
    display: block;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.44);
    border: 1px solid rgba(115, 82, 53, 0.07);
    color: var(--muted-strong);
    font-size: 0.84rem;
    font-weight: 700;
}

.artist-archive-footer {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(115, 82, 53, 0.08);
    font-size: 0.92rem;
    color: var(--muted);
}

.collection-cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.collection-card {
    padding: 18px;
    border-radius: var(--radius-lg);
}

.collection-card-media {
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 16px;
    min-height: 210px;
}

.collection-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collection-kicker {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--terracotta);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.collection-card h3,
.painting-card-copy h3 {
    font-size: 1.7rem;
    margin-bottom: 10px;
}

.story-grid {
    display: grid;
    gap: 24px;
}

.story-grid {
    grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
}

.painting-card {
    display: grid;
    grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
    overflow: hidden;
}

.painting-card-reverse .painting-card-copy {
    order: 1;
}

.painting-card-reverse .painting-card-media {
    order: 2;
}

.painting-card-media img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
}

.painting-card-copy {
    padding: 30px;
}

.painting-meta {
    margin-bottom: 16px;
    color: var(--terracotta);
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.faq-list {
    max-width: 840px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(115, 82, 53, 0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 0;
    color: var(--text);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    cursor: pointer;
}

.faq-question::after {
    content: "+";
    font-family: "Nunito Sans", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--terracotta);
    transition: transform 0.24s ease;
}

.faq-item.open .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease, padding-bottom 0.28s ease;
}

.faq-item.open .faq-answer {
    max-height: 220px;
    padding-bottom: 22px;
}

.faq-answer p {
    max-width: 700px;
    font-size: 1rem;
}

.cta {
    padding-top: 46px;
}

.cta-box {
    position: relative;
    overflow: hidden;
    padding: 48px 32px;
    border-radius: var(--radius-xl);
    text-align: center;
    background:
        linear-gradient(180deg, rgba(255, 250, 242, 0.94), rgba(242, 227, 204, 0.94)),
        linear-gradient(135deg, rgba(207, 149, 74, 0.08), rgba(188, 113, 89, 0.12));
    border: 1px solid rgba(115, 82, 53, 0.1);
    box-shadow: var(--shadow);
}

.cta-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(207, 149, 74, 0.14), transparent 28%),
        radial-gradient(circle at bottom right, rgba(188, 113, 89, 0.18), transparent 30%);
    opacity: 0.85;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
}

.cta h2 {
    font-size: clamp(2.3rem, 4vw, 4rem);
    margin-bottom: 12px;
}

.cta p {
    margin-bottom: 24px;
    font-size: 1rem;
}

footer {
    padding: 28px 0 48px;
}

.footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(115, 82, 53, 0.08);
    padding-top: 26px;
}

.footer-copy,
.footer-links a {
    color: var(--muted);
    font-size: 0.9rem;
    text-decoration: none;
}

.footer-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    list-style: none;
}

@media (max-width: 1180px) {
    .hero-inner {
        grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
        gap: 32px;
    }

    .hero-visual {
        max-width: 315px;
    }

    .studio-board {
        padding: 14px;
    }
}

@media (max-width: 1100px) {
    .collections-layout,
    .story-grid,
    .painting-card {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 980px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        max-width: 420px;
        justify-self: center;
    }
}

@media (max-width: 760px) {
    .shell,
    .nav-inner,
    .footer-inner {
        padding-left: 18px;
        padding-right: 18px;
    }

    .nav-mobile-toggle {
        display: inline-block;
    }

    .nav-links {
        display: none;
    }

    nav.open .nav-links {
        display: flex;
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        padding: 22px 18px 26px;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        background: rgba(253, 248, 241, 0.98);
        border-bottom: 1px solid rgba(115, 82, 53, 0.08);
    }

    .hero {
        padding-top: 42px;
    }

    .hero-copy h1 {
        max-width: none;
    }

    .hero-stats,
    .collection-cards,
    .artist-list {
        grid-template-columns: 1fr;
    }

    .section-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .studio-board {
        padding: 18px;
    }

    .faq-question {
        font-size: 1.28rem;
    }
}
