/* Daily Jigsaw — marketing site (offline, mobile-first) */
:root {
    color-scheme: light;
    --bg-top: #fff9eb;
    --bg-bottom: #ffe8c4;
    --bg: linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bottom) 55%, #fff4dc 100%);
    --text: #5a3b1a;
    --text-soft: #7d5c35;
    --muted: #9a7650;
    --accent: #ff8c2a;
    --accent-dark: #e86f10;
    --green: #6fbf63;
    --card: rgba(255, 255, 255, 0.88);
    --card-border: rgba(255, 200, 120, 0.55);
    --line: rgba(210, 150, 80, 0.22);
    --radius: 18px;
    --radius-lg: 22px;
    --radius-pill: 999px;
    --shadow-soft: 0 8px 24px rgba(180, 110, 40, 0.12);
    --shadow-btn: 0 5px 0 #d96a12, 0 10px 20px rgba(230, 120, 30, 0.3);
    --font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --page-x: max(16px, env(safe-area-inset-left, 0px));
    --page-x-end: max(16px, env(safe-area-inset-right, 0px));
    --header-h: 56px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--font);
    line-height: 1.55;
    background: var(--bg-top);
    background-image: var(--bg);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
}

@media (min-width: 768px) {
    body {
        background-attachment: fixed;
    }
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 220, 140, 0.45) 0%, transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(255, 200, 160, 0.35) 0%, transparent 24%),
        radial-gradient(circle at 70% 85%, rgba(180, 230, 150, 0.2) 0%, transparent 30%);
    z-index: 0;
}

a {
    color: var(--accent-dark);
    -webkit-tap-highlight-color: transparent;
}

a:hover {
    color: var(--accent);
}

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

/* —— Header —— */
.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 8px var(--page-x-end) 8px var(--page-x);
    padding-top: max(8px, env(safe-area-inset-top, 0px));
    background: rgba(255, 248, 235, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(255, 210, 150, 0.5);
    box-shadow: 0 4px 16px rgba(200, 140, 60, 0.08);
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    text-decoration: none;
    color: var(--text);
    font-weight: 900;
    font-size: clamp(0.95rem, 3.5vw, 1.1rem);
    letter-spacing: -0.02em;
}

.site-brand span {
    color: #ff8c2a;
    text-shadow: 0 1px 0 #fff, 0 2px 4px rgba(255, 180, 80, 0.35);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.site-brand img.site-app-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 22%;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(180, 100, 30, 0.25);
    border: 2px solid #fff;
}

.site-menu {
    position: relative;
    margin: 0 0 0 auto;
    flex-shrink: 0;
}

.site-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    min-width: 44px;
    padding: 8px 14px;
    list-style: none;
    cursor: pointer;
    font-family: var(--font);
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--text);
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--card-border);
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-soft);
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.site-menu-btn::-webkit-details-marker {
    display: none;
}

.site-menu[open] .site-menu-btn {
    background: #fff;
    border-color: var(--accent);
    color: var(--accent-dark);
}

.site-menu-bars {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 20px;
    height: 14px;
    flex-shrink: 0;
}

.site-menu-bars span {
    display: block;
    height: 2.5px;
    border-radius: 2px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-menu[open] .site-menu-bars span:nth-child(1) {
    transform: translateY(5.75px) rotate(45deg);
}

.site-menu[open] .site-menu-bars span:nth-child(2) {
    opacity: 0;
}

.site-menu[open] .site-menu-bars span:nth-child(3) {
    transform: translateY(-5.75px) rotate(-45deg);
}

.site-menu-text {
    line-height: 1;
}

.site-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 40;
    min-width: min(280px, calc(100vw - var(--page-x) - var(--page-x-end)));
    max-width: 320px;
    margin: 0;
    padding: 12px;
    background: var(--card);
    border: 2px solid var(--card-border);
    border-radius: var(--radius);
    box-shadow: 0 16px 40px rgba(120, 80, 30, 0.18);
}

.site-menu[open] .site-nav {
    display: flex;
}

.site-nav a:not(.btn) {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 14px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-soft);
    border-radius: 12px;
}

.site-nav a:not(.btn):hover,
.site-nav a:not(.btn):active {
    color: var(--text);
    background: rgba(255, 230, 180, 0.45);
}

.site-nav .btn {
    width: 100%;
    margin-top: 6px;
}

@media (min-width: 768px) {
    .site-header {
        flex-wrap: nowrap;
        padding-top: max(10px, env(safe-area-inset-top, 0px));
        padding-bottom: 10px;
    }

    .site-menu {
        display: flex;
        align-items: center;
        flex: 1;
        justify-content: flex-end;
        min-width: 0;
    }

    /* PC：导航默认横排展开，无需再点 Menu */
    .site-menu-btn {
        display: none;
    }

    .site-menu .site-nav,
    .site-menu[open] .site-nav {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-end;
        gap: 2px 4px;
        position: static;
        min-width: 0;
        max-width: none;
        margin: 0;
        padding: 0;
        background: transparent;
        border: none;
        border-radius: 0;
        box-shadow: none;
    }

    .site-nav a:not(.btn) {
        min-height: auto;
        padding: 8px 11px;
        font-size: 0.86rem;
        white-space: nowrap;
        border-radius: var(--radius-pill);
    }

    .site-nav .btn {
        width: auto;
        margin-top: 0;
        margin-left: 6px;
        min-height: 44px;
        padding: 10px 18px;
        font-size: 0.92rem;
    }
}

/* —— Buttons —— */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 22px;
    border: none;
    border-radius: var(--radius-pill);
    font-family: var(--font);
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}

.btn-primary:active,
.btn-ghost:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #d96a12, 0 6px 14px rgba(230, 120, 30, 0.28);
}

.btn-primary {
    background: linear-gradient(180deg, #ffb84d 0%, #ff9228 45%, #ff7a18 100%);
    color: #fff;
    text-shadow: 0 1px 2px rgba(160, 60, 0, 0.35);
    box-shadow: var(--shadow-btn);
    border: 2px solid rgba(255, 255, 255, 0.45);
}

.btn-primary:hover {
    filter: brightness(1.05);
    color: #fff;
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.85);
    color: var(--text);
    border: 2px solid var(--card-border);
    box-shadow: var(--shadow-soft);
}

.btn-ghost:hover {
    background: #fff;
    color: var(--text);
}

/* Google Play — same pill size as .btn-primary */
.btn-store {
    background: linear-gradient(180deg, #4a4a4a 0%, #1a1a1a 55%, #0d0d0d 100%);
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
    border: 2px solid rgba(255, 255, 255, 0.28);
    box-shadow: 0 5px 0 #000, 0 10px 20px rgba(0, 0, 0, 0.22);
    padding: 10px 20px;
    gap: 10px;
}

.btn-store:hover {
    filter: brightness(1.08);
    color: #fff;
}

.btn-store:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #000, 0 6px 12px rgba(0, 0, 0, 0.2);
}

.site-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.btn-store-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: block;
}

.btn-store-icon use {
    pointer-events: none;
}

.btn-store-lines {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.12;
    text-align: center;
}

.btn-store-small {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0.92;
}

.btn-store-large {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* Paired primary + store buttons (equal width / height) */
.btn-row-duo {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
}

.btn-row-duo .btn {
    width: 100%;
    min-height: 50px;
}

.cta-actions.btn-row-duo {
    max-width: 520px;
    margin: 0 auto;
}

@media (min-width: 520px) {
    .btn-row-duo {
        flex-direction: row;
        align-items: stretch;
    }

    .btn-row-duo .btn {
        flex: 1 1 0;
        min-width: 0;
        max-width: none;
    }

    .btn-row-duo .btn-primary {
        min-width: 180px;
    }

    .btn-row-duo .btn-store {
        min-width: 200px;
    }
}

/* —— Hero —— */
.hero {
    position: relative;
    z-index: 1;
    padding: 20px var(--page-x-end) 36px var(--page-x);
    max-width: 1080px;
    margin: 0 auto;
}

.hero-layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-banner-wrap {
    order: -1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 12px 32px rgba(200, 130, 50, 0.2),
        0 0 0 3px rgba(255, 255, 255, 0.7);
}

.hero-banner {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: middle;
}

.hero-content {
    text-align: center;
}

.hero-eyebrow {
    display: inline-block;
    margin: 0 0 10px;
    padding: 5px 12px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--green);
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(140, 200, 120, 0.45);
    border-radius: var(--radius-pill);
}

.hero h1 {
    margin: 0 0 12px;
    font-size: clamp(1.5rem, 6vw, 2.35rem);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-lead {
    margin: 0 auto 20px;
    max-width: 34em;
    font-size: clamp(0.95rem, 3.8vw, 1.08rem);
    font-weight: 600;
    color: var(--muted);
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    max-width: 520px;
    margin: 0 auto;
}

.hero-actions .btn-ghost {
    width: 100%;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.hero-badge {
    padding: 5px 10px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-soft);
    background: rgba(255, 255, 255, 0.75);
    border-radius: var(--radius-pill);
    border: 1px solid var(--line);
}

@media (min-width: 900px) {
    .hero {
        padding: 32px var(--page-x-end) 48px var(--page-x);
    }

    .hero-layout {
        display: grid;
        grid-template-columns: 1fr 1.12fr;
        gap: 32px;
        align-items: center;
    }

    .hero-banner-wrap {
        order: 2;
        border-radius: 28px;
    }

    .hero-content {
        order: 1;
        text-align: left;
    }

    .hero-actions {
        margin: 0;
        max-width: 100%;
    }

    .hero-actions .btn-row-duo {
        justify-content: flex-start;
    }

    .hero-actions .btn-ghost {
        width: auto;
        align-self: flex-start;
    }

    .hero-badges {
        justify-content: flex-start;
    }
}

/* —— Sections —— */
.section {
    position: relative;
    z-index: 1;
    padding: 36px var(--page-x-end) 40px var(--page-x);
    max-width: 1080px;
    margin: 0 auto;
}

.section + .section {
    padding-top: 8px;
}

.section-anchor {
    scroll-margin-top: calc(var(--header-h) + 12px);
}

.section h2 {
    margin: 0 0 8px;
    font-size: clamp(1.35rem, 5vw, 1.9rem);
    font-weight: 900;
    text-align: center;
}

.section-intro {
    margin: 0 auto 24px;
    max-width: 34em;
    text-align: center;
    font-size: clamp(0.9rem, 3.5vw, 1rem);
    color: var(--muted);
    font-weight: 600;
}

@media (min-width: 768px) {
    .section {
        padding: 48px var(--page-x-end) 52px var(--page-x);
    }

    .section-intro {
        margin-bottom: 32px;
    }
}

/* —— Game info —— */
.info-overview {
    max-width: 42em;
    margin: 0 auto 20px;
    padding: 18px 20px;
    background: var(--card);
    border: 2px solid var(--card-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-soft);
    line-height: 1.6;
}

.info-overview p {
    margin: 0;
}

.info-overview strong {
    color: var(--text);
}

.info-columns {
    display: grid;
    gap: 16px;
    margin-bottom: 28px;
}

@media (min-width: 768px) {
    .info-columns {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

.info-panel {
    margin: 0;
    padding: 16px 18px;
    background: var(--card);
    border: 2px solid var(--card-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

@media (min-width: 520px) {
    .info-panel {
        padding: 20px 22px;
    }
}

.info-block-title {
    margin: 0 0 14px;
    font-size: 1.05rem;
    font-weight: 900;
    color: var(--text);
}

.info-panel-steps {
    height: 100%;
}

.info-steps {
    margin: 0;
    padding-left: 1.2em;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-soft);
    line-height: 1.55;
}

.info-steps li {
    margin-bottom: 10px;
}

.info-steps li:last-child {
    margin-bottom: 0;
}

.info-steps strong {
    color: var(--text);
}

.info-subtitle {
    margin: 0 0 8px;
    font-size: 1.15rem;
    font-weight: 900;
    text-align: center;
    color: var(--text);
}

.features-lead {
    margin: 0 auto 20px;
    max-width: 36em;
    text-align: center;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--muted);
    line-height: 1.5;
}

.info-meta {
    margin: 0;
}

.info-meta-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px 0;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
}

.info-meta-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-meta-row:first-child {
    padding-top: 0;
}

.info-meta dt {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--muted);
}

.info-meta dd {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    word-break: break-word;
}

@media (min-width: 400px) {
    .info-meta-row {
        grid-template-columns: 6.5rem 1fr;
        gap: 8px 14px;
        align-items: baseline;
    }

    .info-meta dt {
        font-size: inherit;
        text-transform: none;
        letter-spacing: 0;
        color: var(--text-soft);
    }
}

.features {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr;
}

@media (min-width: 520px) {
    .features {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

@media (min-width: 960px) {
    .features {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 16px 18px;
    background: var(--card);
    border: 2px solid var(--card-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(180, 110, 40, 0.16);
}

.feature-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 14px;
    border-radius: 16px;
    background: linear-gradient(165deg, #fffdf8 0%, #ffeccc 100%);
    border: 2px solid rgba(255, 200, 120, 0.5);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.feature-icon {
    display: block;
    width: 36px;
    height: 36px;
}

.feature-card h3 {
    margin: 0 0 8px;
    font-size: 1.02rem;
    font-weight: 900;
    color: var(--text);
    line-height: 1.25;
}

.feature-card p {
    margin: 0;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--muted);
    line-height: 1.5;
    max-width: 22em;
}

/* —— Screenshots —— */
.screenshot-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px var(--page-x) 16px;
    margin: 0 calc(-1 * var(--page-x));
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--page-x);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.screenshot-grid::-webkit-scrollbar {
    display: none;
}

.screenshot-card {
    flex: 0 0 min(78vw, 280px);
    scroll-snap-align: center;
    margin: 0;
    padding: 10px;
    background: var(--card);
    border: 2px solid var(--card-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.screenshot-card img {
    display: block;
    width: 100%;
    height: auto;
    max-height: min(62vh, 480px);
    margin: 0 auto;
    border-radius: 12px;
    object-fit: contain;
    object-position: center;
    background: linear-gradient(180deg, #fff9f0 0%, #ffeccc 100%);
}

.screenshot-card figcaption {
    margin-top: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--muted);
    line-height: 1.3;
}

.screenshot-hint {
    margin: 0 auto 12px;
    max-width: 20em;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--muted);
    opacity: 0.85;
}

@media (min-width: 768px) {
    .screenshot-hint {
        display: none;
    }

    .screenshot-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
        overflow: visible;
        padding: 0;
        margin: 0;
        scroll-snap-type: none;
    }

    .screenshot-card {
        flex: none;
        max-width: none;
    }

    .screenshot-card img {
        max-height: 420px;
    }
}

/* —— About & contact —— */
.about-brand-card {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 28em;
    margin: 0 auto 20px;
    padding: 18px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 236, 200, 0.95) 100%);
    border: 2px solid var(--card-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.about-brand-logo {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 22%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 6px 16px rgba(180, 100, 30, 0.2);
}

.about-brand-name {
    margin: 0 0 4px;
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--text);
}

.about-brand-tagline {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--muted);
}

.about-columns {
    display: grid;
    gap: 16px;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .about-columns {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }

    .about-brand-card {
        max-width: none;
        margin-bottom: 24px;
    }
}

.about-panel {
    margin: 0;
    padding: 18px 20px;
    background: var(--card);
    border: 2px solid var(--card-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    font-size: 0.94rem;
    font-weight: 600;
    color: var(--text-soft);
    line-height: 1.6;
}

@media (min-width: 520px) {
    .about-panel {
        padding: 22px 24px;
    }
}

.about-panel p {
    margin: 0 0 14px;
}

.about-panel p:last-child {
    margin-bottom: 0;
}

.about-panel strong {
    color: var(--text);
}

.about-values {
    list-style: none;
    margin: 0;
    padding: 0;
}

.about-values li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    line-height: 1.5;
}

.about-values li:last-child {
    margin-bottom: 0;
}

.about-value-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(165deg, #fffdf8 0%, #ffeccc 100%);
    border: 1px solid rgba(255, 200, 120, 0.45);
}

.about-value-icon svg {
    display: block;
    width: 28px;
    height: 28px;
}

.about-values strong {
    color: var(--text);
}

.about-footer-card {
    display: grid;
    gap: 16px;
    padding: 20px 22px;
    background: var(--card);
    border: 2px solid var(--card-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

@media (min-width: 640px) {
    .about-footer-card {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

.about-footer-block {
    min-width: 0;
}

.about-address {
    margin: 0;
    font-weight: 700;
    color: var(--text-soft);
    line-height: 1.55;
}

.about-links {
    margin: 0 0 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--muted);
}

.about-link-row {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 10px;
    font-weight: 800;
    font-size: 0.9rem;
}

.about-link-sep {
    color: var(--muted);
    font-weight: 600;
}

.contact-panel {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr;
    max-width: 720px;
    margin: 0 auto;
}

@media (min-width: 520px) {
    .contact-panel {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 800px) {
    .contact-panel {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

.contact-card {
    padding: 18px 16px;
    background: var(--card);
    border: 2px solid var(--card-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.contact-card h3 {
    margin: 0 0 6px;
    font-size: 0.82rem;
    font-weight: 900;
    color: var(--accent-dark);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.contact-card p {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.45;
    word-break: break-word;
}

.contact-card a {
    word-break: break-all;
}

/* —— CTA & footer —— */
.cta-band {
    position: relative;
    z-index: 1;
    margin: 0 var(--page-x) 36px;
    margin-left: max(var(--page-x), env(safe-area-inset-left, 0px));
    margin-right: max(var(--page-x-end), env(safe-area-inset-right, 0px));
    padding: 28px 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 235, 200, 0.96) 100%);
    border: 2px solid var(--card-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

@media (min-width: 768px) {
    .cta-band {
        max-width: 1044px;
        margin-left: auto;
        margin-right: auto;
        padding: 36px 28px;
        margin-bottom: 48px;
    }
}

.cta-band h2 {
    margin: 0 0 8px;
    font-size: clamp(1.25rem, 4.5vw, 1.6rem);
    font-weight: 900;
}

.cta-band p {
    margin: 0 auto 18px;
    max-width: 28em;
    font-size: 0.92rem;
    color: var(--muted);
    font-weight: 600;
}


.site-footer {
    position: relative;
    z-index: 1;
    padding: 24px var(--page-x-end) max(28px, env(safe-area-inset-bottom, 0px)) var(--page-x);
    border-top: 2px solid rgba(255, 210, 150, 0.45);
    text-align: center;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--muted);
    background: rgba(255, 245, 225, 0.75);
}

.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 12px;
    margin-bottom: 12px;
}

.site-footer a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 4px 8px;
    font-weight: 800;
    font-size: 0.85rem;
}

.site-footer .copy {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.45;
    padding: 0 8px;
}
