/* ==========================================================
   NineTwo Creations — Shared Stylesheet
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ---------- Tokens ---------- */
:root {
    --ink: #1f1f1e;
    --ink-soft: #4a4a48;
    --ink-mute: #777571;
    --bg: #ffffff;
    --bg-soft: #f6f4ee;
    --bg-card: #ffffff;
    --line: #e8e5dc;
    --line-soft: #efece4;

    --teal: #00aeb8;
    --pink: #e73857;
    --yellow: #fbbe01;
    --white: #ffffff;

    --font-display: 'Bricolage Grotesque', Georgia, serif;
    --font-body: 'DM Sans', system-ui, -apple-system, Helvetica, Arial, sans-serif;

    --shadow-sm: 0 1px 2px rgba(31, 31, 30, 0.06);
    --shadow-md: 0 6px 18px rgba(31, 31, 30, 0.08);
    --shadow-lg: 0 18px 40px rgba(31, 31, 30, 0.12);

    --radius-sm: 4px;
    --radius-md: 10px;
    --radius-lg: 18px;

    --container: 1180px;
    --container-narrow: 820px;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink);
    background-color: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Subtle ambient background — no image, just CSS */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 92% 8%, rgba(0, 174, 184, 0.06), transparent 38%),
        radial-gradient(circle at 6% 88%, rgba(231, 56, 87, 0.05), transparent 38%),
        radial-gradient(circle at 70% 95%, rgba(251, 190, 1, 0.06), transparent 40%),
        var(--bg);
    pointer-events: none;
}

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

a {
    color: var(--ink);
    text-decoration: none;
    transition: color 0.18s ease;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--ink);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 0.6em 0;
    font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 2.8vw, 2.1rem); }
h3 { font-size: 1.2rem; }

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

p strong { color: var(--ink); font-weight: 600; }

/* ---------- Layout ---------- */
.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1 0 auto;
    width: 100%;
}

.container {
    width: 100%;
    max-width: var(--container);
    padding: 0 1.25rem;
    margin: 0 auto;
}

.container-narrow {
    width: 100%;
    max-width: var(--container-narrow);
    padding: 0 1.25rem;
    margin: 0 auto;
}

/* ---------- Top brand stripe ---------- */
.brand-stripe {
    display: flex;
    height: 4px;
    width: 100%;
}
.brand-stripe span { flex: 1; display: block; }
.brand-stripe .s1 { background: var(--teal); }
.brand-stripe .s2 { background: var(--pink); }
.brand-stripe .s3 { background: var(--yellow); }
.brand-stripe .s4 { background: var(--ink); }

/* ---------- Header ---------- */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 2.2rem 1.25rem 1.8rem;
    text-align: center;
}

.site-header a.logo-link {
    display: inline-block;
    transition: transform 0.2s ease;
}
.site-header a.logo-link:hover { transform: translateY(-1px); }

.site-header img {
    width: 360px;
    max-width: 88%;
    height: auto;
}

/* ---------- Navigation ---------- */
.nav-bar {
    background: var(--ink);
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2px;
}

.nav-item {
    padding: 1rem 1.15rem;
    color: rgba(255, 255, 255, 0.78);
    font-family: var(--font-body);
    font-size: 0.86rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: transparent;
    border: 0;
    cursor: pointer;
    position: relative;
    transition: color 0.18s ease, background 0.18s ease;
    font-family: inherit;
}

.nav-item:hover,
.nav-item:focus {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    outline: none;
}

.nav-item::after {
    content: "";
    position: absolute;
    left: 1.15rem;
    right: 1.15rem;
    bottom: 0.55rem;
    height: 2px;
    background: var(--teal);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.25s ease;
}
.nav-item:hover::after,
.nav-item.active::after { transform: scaleX(1); }

.nav-item.active {
    color: var(--white);
}
.nav-item:nth-child(1).active::after { background: var(--teal); }
.nav-item:nth-child(2).active::after { background: var(--pink); }
.nav-item:nth-child(3).active::after { background: var(--yellow); }
.nav-item:nth-child(4).active::after { background: var(--teal); }
.nav-item:nth-child(5).active::after { background: var(--pink); }
.nav-item:nth-child(6).active::after { background: var(--yellow); }
.nav-item:nth-child(7).active::after { background: var(--teal); }
.nav-item:nth-child(8).active::after { background: var(--pink); }

/* ---------- Section helpers ---------- */
.section {
    padding: 4.5rem 0;
    position: relative;
}

.section-tight { padding: 2.5rem 0 3.5rem; }

.eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--ink);
    padding: 0.35rem 0.75rem 0.3rem;
    background: var(--yellow);
    border-radius: 999px;
    margin-bottom: 1.25rem;
}

.eyebrow.teal { background: var(--teal); color: var(--white); }
.eyebrow.pink { background: var(--pink); color: var(--white); }
.eyebrow.ink  { background: var(--ink);  color: var(--white); }

.section-title {
    margin-bottom: 0.4rem;
}

.section-lede {
    font-size: 1.1rem;
    color: var(--ink-soft);
    max-width: 640px;
    margin-bottom: 2.5rem;
}

/* Decorative geometric accents */
.deco-shape {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}
.deco-tri-teal {
    width: 0; height: 0;
    border-style: solid;
    border-width: 0 0 80px 80px;
    border-color: transparent transparent var(--teal) transparent;
    opacity: 0.9;
}
.deco-sq-pink {
    width: 60px; height: 60px;
    background: var(--pink);
}
.deco-circ-yellow {
    width: 64px; height: 64px;
    background: var(--yellow);
    border-radius: 50%;
}
.deco-ring {
    width: 90px; height: 90px;
    border: 4px solid var(--ink);
    border-radius: 50%;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.6rem;
    background: var(--ink);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 999px;
    border: 2px solid var(--ink);
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.15s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.2s ease;
    line-height: 1;
}
.btn:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn-pink:hover { background: var(--pink); border-color: var(--pink); }
.btn-yellow:hover { background: var(--yellow); border-color: var(--yellow); color: var(--ink); }

.btn-outline {
    background: transparent;
    color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--white); }

.btn-sm {
    padding: 0.6rem 1.1rem;
    font-size: 0.82rem;
}

/* ---------- Cards ---------- */
.card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--ink);
}

/* ---------- Hero (homepage) ---------- */
.hero {
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}
@media (max-width: 880px) {
    .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.hero h1 {
    font-size: clamp(2.6rem, 5.4vw, 4.4rem);
    font-weight: 800;
    margin-bottom: 1.2rem;
}
.hero h1 .accent-teal { color: var(--teal); }
.hero h1 .accent-pink { color: var(--pink); }
.hero h1 .accent-yellow { color: var(--yellow); }

.hero-lede {
    font-size: 1.15rem;
    color: var(--ink-soft);
    max-width: 540px;
    margin-bottom: 1.8rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

/* Featured book card on the homepage */
.featured-book {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    position: relative;
    text-align: center;
    overflow: hidden;
}
.featured-book::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--teal) 0%, var(--teal) 33%, var(--pink) 33%, var(--pink) 66%, var(--yellow) 66%, var(--yellow) 100%);
}
.featured-book .featured-tag {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--pink);
    font-weight: 700;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}
.featured-book img {
    width: 220px;
    max-width: 60%;
    margin: 0 auto 1.25rem;
    border-radius: 6px;
    box-shadow: var(--shadow-md);
}
.featured-book h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}
.featured-book .subtitle {
    color: var(--ink-soft);
    margin-bottom: 1.4rem;
}

/* Division tiles row */
.divisions {
    background: var(--bg-soft);
    padding: 4.5rem 0;
    position: relative;
}
.divisions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
@media (max-width: 820px) {
    .divisions-grid { grid-template-columns: 1fr; }
}
.division-tile {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    text-decoration: none;
    color: var(--ink);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.division-tile::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 4px;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s ease;
}
.division-tile.teal::before { background: var(--teal); }
.division-tile.pink::before { background: var(--pink); }
.division-tile.yellow::before { background: var(--yellow); }
.division-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--ink); }
.division-tile:hover::before { transform: scaleX(1); }
.division-tile h3 { font-size: 1.5rem; margin-bottom: 0.45rem; }
.division-tile p { font-size: 0.95rem; flex: 1; }
.division-tile .arrow {
    align-self: flex-start;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: gap 0.2s ease;
}
.division-tile:hover .arrow { gap: 0.65rem; }

/* ---------- Page hero (sub-pages) ---------- */
.page-hero {
    padding: 4rem 0 2.5rem;
    position: relative;
    overflow: hidden;
}
.page-hero h1 {
    margin-bottom: 0.5rem;
}
.page-hero p {
    font-size: 1.1rem;
    color: var(--ink-soft);
    max-width: 640px;
}
.page-hero .rule {
    width: 64px;
    height: 4px;
    background: var(--ink);
    margin-bottom: 1.5rem;
}
.page-hero .rule.teal { background: var(--teal); }
.page-hero .rule.pink { background: var(--pink); }
.page-hero .rule.yellow { background: var(--yellow); }

/* Title graphic for NTC Media / NTC Records */
.title-graphic {
    width: 380px;
    max-width: 80%;
    height: auto;
    margin: 0 0 1.25rem;
    display: block;
}

.sr-only {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,1px,1px);
    white-space: nowrap; border: 0;
}

/* ---------- Books grid ---------- */
.books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}
@media (min-width: 980px) {
    .books-grid { grid-template-columns: repeat(3, 1fr); }
}

.book-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    text-align: center;
}
.book-card:hover {
    transform: translateY(-5px);
    border-color: var(--ink);
    box-shadow: var(--shadow-lg);
}
.book-card .cover-wrap {
    background: var(--bg-soft);
    padding: 1.5rem 1.5rem 1rem;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: 260px;
}
.book-card .cover-wrap img {
    max-height: 240px;
    width: auto;
    box-shadow: var(--shadow-md);
    border-radius: 3px;
}
.book-card .meta {
    padding: 1.25rem 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.book-card .meta h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    line-height: 1.25;
    color: var(--ink);
}
.book-card .meta p {
    font-size: 0.88rem;
    color: var(--ink-soft);
    margin-bottom: 1.1rem;
    flex: 1;
}
.book-card .meta a.amazon-link {
    align-self: center;
    padding: 0.55rem 1.1rem;
    background: var(--ink);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
}
.book-card .meta a.amazon-link:hover {
    background: var(--teal);
    transform: translateY(-1px);
}

.books-row-center {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 280px));
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

/* Section dividers between book groupings */
.books-cat {
    margin-top: 3rem;
}
.books-cat:first-child { margin-top: 0; }
.books-cat-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.books-cat-label h2 {
    font-size: 1.4rem;
    margin: 0;
}
.books-cat-label .bar {
    flex: 1;
    height: 2px;
    background: var(--line);
}

/* ---------- NTC Media / Records platform & artist cards ---------- */
.platform-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.platform-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.75rem 1.5rem;
    position: relative;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    border-left: 5px solid var(--teal);
}
.platform-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--ink);
    border-left-color: var(--teal);
}
.platform-card.pink { border-left-color: var(--pink); }
.platform-card.yellow { border-left-color: var(--yellow); }
.platform-card.pink:hover { border-left-color: var(--pink); }
.platform-card.yellow:hover { border-left-color: var(--yellow); }

.platform-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
    color: var(--ink);
}
.platform-card h3 a { color: var(--ink); }
.platform-card h3 a:hover { color: var(--teal); }
.platform-card.pink h3 a:hover { color: var(--pink); }
.platform-card.yellow h3 a:hover { color: var(--yellow); }
.platform-card p { margin: 0 0 0.85rem; }

.platform-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}
.platform-links a {
    font-size: 0.82rem;
    padding: 0.4rem 0.85rem;
    background: var(--bg-soft);
    color: var(--ink);
    border-radius: 999px;
    border: 1px solid var(--line);
    text-decoration: none;
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
    font-weight: 500;
}
.platform-links a:hover {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
}

/* ---------- Services grid ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-top: 1rem;
}
.service-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 36px; height: 4px;
    background: var(--teal);
    transition: width 0.28s ease;
}
.service-card:nth-child(3n+2)::before { background: var(--pink); }
.service-card:nth-child(3n+3)::before { background: var(--yellow); }
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--ink); }
.service-card:hover::before { width: 100%; }
.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
    margin-top: 0.4rem;
}
.service-card p {
    font-size: 0.94rem;
    margin: 0;
}

/* ---------- Content blocks (about / privacy / etc) ---------- */
.prose {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2.5rem;
    box-shadow: var(--shadow-sm);
}
@media (max-width: 600px) {
    .prose { padding: 1.75rem 1.5rem; }
}

.prose h2 {
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 0.6rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid var(--line);
}
.prose h2:first-of-type { margin-top: 1rem; }

.prose p { font-size: 1rem; line-height: 1.75; }

.prose a {
    color: var(--ink);
    border-bottom: 2px solid var(--teal);
    transition: color 0.18s ease, background 0.18s ease;
    padding: 0 2px;
}
.prose a:hover {
    color: var(--ink);
    background: var(--yellow);
}

.prose ul { padding-left: 1.25rem; margin: 0 0 1.1em 0; color: var(--ink-soft); }
.prose ul li { margin-bottom: 0.45rem; }

/* ---------- Newsletter form ---------- */
.newsletter-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}
.newsletter-card::after {
    content: "";
    position: absolute;
    top: -40px; right: -40px;
    width: 140px; height: 140px;
    border-radius: 50%;
    background: var(--yellow);
    opacity: 0.18;
}
.newsletter-card::before {
    content: "";
    position: absolute;
    bottom: -50px; left: -50px;
    width: 140px; height: 140px;
    border-radius: 50%;
    background: var(--teal);
    opacity: 0.15;
}
.newsletter-card h1, .newsletter-card p, .newsletter-card form {
    position: relative;
    z-index: 1;
}
.newsletter-card p { max-width: 480px; margin-left: auto; margin-right: auto; }

#newsletterForm {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    margin-top: 1.5rem;
}
#newsletterForm input[type="email"] {
    flex: 1;
    min-width: 260px;
    max-width: 360px;
    padding: 0.85rem 1.1rem;
    border: 1.5px solid var(--line);
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--ink);
    background: var(--white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
#newsletterForm input[type="email"]:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(0, 174, 184, 0.15);
}
#newsletterForm button[type="submit"] {
    padding: 0.85rem 1.6rem;
    background: var(--ink);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.92rem;
    border: 2px solid var(--ink);
    border-radius: 999px;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.18s ease, border-color 0.18s ease;
    letter-spacing: 0.02em;
}
#newsletterForm button[type="submit"]:hover {
    background: var(--pink);
    border-color: var(--pink);
    transform: translateY(-2px);
}

#confirmationPopup {
    display: none;
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    padding: 2rem 2.25rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    text-align: center;
    max-width: 90%;
}
#confirmationPopup::before {
    content: "";
    display: block;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--teal) 0%, var(--teal) 33%, var(--pink) 33%, var(--pink) 66%, var(--yellow) 66%, var(--yellow) 100%);
    position: absolute;
    top: 0; left: 0;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
#confirmationPopup p { margin-top: 0.3rem; }
#confirmationPopup button {
    padding: 0.55rem 1.25rem;
    background: var(--ink);
    color: var(--white);
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    margin-top: 0.5rem;
}
#confirmationPopup button:hover { background: var(--teal); }

#overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(31, 31, 30, 0.55);
    z-index: 999;
    backdrop-filter: blur(2px);
}

/* ---------- Merch CTA ---------- */
.merch-cta {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 3.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.merch-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(0, 174, 184, 0.10), transparent 35%),
        radial-gradient(circle at 85% 80%, rgba(231, 56, 87, 0.10), transparent 35%);
    pointer-events: none;
}
.merch-cta > * { position: relative; z-index: 1; }
.merch-cta h1 { margin-bottom: 0.75rem; }
.merch-cta p { max-width: 520px; margin-left: auto; margin-right: auto; margin-bottom: 1.75rem; font-size: 1.1rem; }

/* ---------- About / social links ---------- */
.social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    margin-top: 1.5rem;
}
.social-row a {
    padding: 0.55rem 1.1rem;
    background: var(--ink);
    color: var(--white);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.18s ease, transform 0.15s ease;
}
.social-row a:hover { background: var(--teal); transform: translateY(-2px); }
.social-row a.pink:hover { background: var(--pink); }
.social-row a.yellow:hover { background: var(--yellow); color: var(--ink); }

/* ---------- Footer ---------- */
.site-footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.72);
    padding: 2.5rem 1rem 2rem;
    margin-top: 4rem;
    flex-shrink: 0;
}
.footer-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}
.site-footer a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    transition: color 0.2s ease;
}
.site-footer a:hover { color: var(--yellow); }
.footer-divider {
    color: rgba(255, 255, 255, 0.3);
    padding: 0 0.45rem;
}
.footer-links {
    font-size: 0.88rem;
}
.footer-copy {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ---------- Small screens nav refinement ---------- */
@media (max-width: 720px) {
    .nav-item {
        padding: 0.85rem 0.75rem;
        font-size: 0.78rem;
        letter-spacing: 0.03em;
    }
    .nav-item::after {
        left: 0.75rem; right: 0.75rem;
        bottom: 0.45rem;
    }
    .site-header { padding: 1.6rem 1rem 1.3rem; }
    .site-header img { width: 280px; }
    .section { padding: 3rem 0; }
    .hero { padding: 3rem 0 2rem; }
    .prose { padding: 1.75rem 1.3rem; }
    .newsletter-card { padding: 2rem 1.25rem; }
}
