/* Wallthings Considered — site styles */

:root {
    --bg:        #0e0e10;
    --bg-soft:   #16161a;
    --ink:       #f4efe6;
    --ink-soft:  #b9b3a7;
    --accent:    #d9a86c;
    --accent-2:  #c25d3b;
    --rule:      #2a2a2f;
    --maxw:      1280px;
    --radius:    14px;
    --shadow:    0 24px 60px -28px rgba(0,0,0,.7);
    --font-display: "Playfair Display", "Cormorant Garamond", Georgia, serif;
    --font-body:    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent); }

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

.wrap {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -.01em;
    margin: 0 0 .6em;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); line-height: 1.05; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); line-height: 1.15; }
h3 { font-size: 1.18rem; }
h4 { font-size: 1rem; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft); }

p { margin: 0 0 1em; color: var(--ink); }

/* Header --------------------------------------------------------------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(14, 14, 16, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--rule);
}
.site-header .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}
.brand {
    font-family: var(--font-display);
    font-size: 1.18rem;
    letter-spacing: .02em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.brand img { width: 32px; height: 32px; border-radius: 6px; }
.site-header nav {
    display: flex;
    gap: 22px;
    align-items: center;
    font-size: .95rem;
}
.site-header nav a { color: var(--ink-soft); }
.site-header nav a:hover { color: var(--ink); }
.nav-cta {
    background: var(--accent);
    color: var(--bg) !important;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 600;
}
.nav-cta:hover { background: var(--ink); }

@media (max-width: 720px) {
    .site-header nav { gap: 12px; font-size: .85rem; }
    .site-header nav a:not(.nav-cta) { display: none; }
}

/* Hero ----------------------------------------------------------------- */

.hero {
    padding: 96px 0 72px;
    background:
        radial-gradient(60% 80% at 80% 10%, rgba(217,168,108,.18), transparent 60%),
        radial-gradient(50% 70% at 20% 90%, rgba(194,93,59,.12), transparent 60%),
        var(--bg);
    border-bottom: 1px solid var(--rule);
}
.hero-collection { padding: 64px 0 40px; }
.hero h1 { max-width: 18ch; }
.hero .lede {
    font-size: 1.18rem;
    color: var(--ink-soft);
    max-width: 60ch;
    margin-bottom: 28px;
}

.cta {
    display: inline-block;
    background: var(--accent);
    color: var(--bg);
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: .01em;
    transition: transform .15s ease, background .15s ease;
}
.cta:hover { background: var(--ink); color: var(--bg); transform: translateY(-1px); }
.cta-secondary {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
}
.cta-secondary:hover { background: var(--accent); color: var(--bg); }

/* Mood grid ------------------------------------------------------------ */

.collections { padding: 56px 0 16px; }
.mood-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 20px;
}
.mood {
    aspect-ratio: 4 / 3;
    border-radius: var(--radius);
    display: flex;
    align-items: flex-end;
    padding: 18px 20px;
    color: var(--bg);
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}
.mood::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.45));
}
.mood span { position: relative; z-index: 1; color: #fff; }
.mood-dramatic { background: linear-gradient(135deg, #6b1a1a, #c25d3b); }
.mood-lux      { background: linear-gradient(135deg, #2c2110, #d9a86c); }
.mood-serene   { background: linear-gradient(135deg, #2c3a4d, #b9c7d9); }
.mood-earthy   { background: linear-gradient(135deg, #4a3826, #a3784f); }
@media (max-width: 720px) {
    .mood-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Gallery -------------------------------------------------------------- */

.gallery { padding: 64px 0 96px; }
.gallery h2 { margin-bottom: 28px; }

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 22px;
}

.card {
    background: var(--bg-soft);
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .2s ease, border-color .2s ease;
    color: var(--ink);
}
.card:hover {
    transform: translateY(-3px);
    border-color: var(--accent);
}
.card img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}
.card-body {
    padding: 14px 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.card-body h3 {
    margin: 0;
    font-size: 1.08rem;
    font-weight: 600;
}
.tag {
    font-size: .75rem;
    color: var(--ink-soft);
    letter-spacing: .04em;
    text-transform: uppercase;
}

/* Artwork detail ------------------------------------------------------- */

.artwork { padding: 56px 0 96px; }
.art-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 56px;
    align-items: start;
}
.art-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.art-info .eyebrow {
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .78rem;
    color: var(--accent);
    margin-bottom: 8px;
}
.art-info h1 { margin-top: 4px; }
.art-info .price {
    color: var(--ink-soft);
    margin: 4px 0 22px;
    font-size: .98rem;
}
.art-info .price strong { color: var(--ink); font-size: 1.15rem; }
.art-info .cta-primary { margin-bottom: 28px; }
.features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
}
.features li {
    padding: 10px 0;
    color: var(--ink-soft);
    border-top: 1px solid var(--rule);
}
.features li:first-child { border-top: 0; }

.copy-block p {
    color: var(--ink-soft);
    margin-bottom: 1em;
    white-space: pre-line;
}

.tags { margin: 24px 0; display: flex; flex-wrap: wrap; gap: 8px; }
.kw {
    background: var(--bg-soft);
    border: 1px solid var(--rule);
    color: var(--ink-soft);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: .8rem;
}

.pin-it { margin-top: 16px; }
.pin-it img { display: inline-block; }

.related { padding-top: 64px; border-top: 1px solid var(--rule); }
.related h2 { margin-bottom: 24px; }

@media (max-width: 880px) {
    .art-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* Footer --------------------------------------------------------------- */

.site-footer {
    border-top: 1px solid var(--rule);
    padding: 56px 0 36px;
    color: var(--ink-soft);
    font-size: .94rem;
    background: var(--bg-soft);
}
.foot-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 32px;
}
.site-footer h3 {
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin-bottom: 8px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { padding: 4px 0; }

.email-capture {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}
.email-capture input {
    flex: 1;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid var(--rule);
    background: var(--bg);
    color: var(--ink);
    font-size: .95rem;
}
.email-capture button {
    padding: 10px 18px;
    border-radius: 8px;
    border: 0;
    background: var(--accent);
    color: var(--bg);
    font-weight: 600;
    cursor: pointer;
}
.email-capture button:hover { background: var(--ink); }

.copy {
    margin: 0;
    padding-top: 18px;
    border-top: 1px solid var(--rule);
    color: var(--ink-soft);
    font-size: .85rem;
}

@media (max-width: 720px) {
    .foot-grid { grid-template-columns: 1fr; gap: 28px; }
}
