/* ============================================================
   SNACKIT — SEO long-form landing pages
   ============================================================ */

.seo-page {
    background: #0a0a0a;
    color: var(--white, #f7f2ea);
}

.seo-hero {
    position: relative;
    min-height: min(72vh, 640px);
    display: flex;
    align-items: flex-end;
    padding: clamp(6rem, 12vw, 8.5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
    overflow: hidden;
}

.seo-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.seo-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.seo-hero__veil {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10, 10, 10, 0.35) 0%, rgba(10, 10, 10, 0.82) 55%, #0a0a0a 100%),
        linear-gradient(90deg, rgba(10, 10, 10, 0.55) 0%, transparent 55%);
}

.seo-hero__content {
    position: relative;
    z-index: 1;
    max-width: 42rem;
}

.seo-hero__crumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.78rem;
    color: rgba(247, 242, 234, 0.55);
}

.seo-hero__crumbs a {
    color: inherit;
    text-decoration: none;
}

.seo-hero__crumbs a:hover {
    color: var(--gold-bright, #f5d67a);
}

.seo-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.85rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-bright, #f5d67a);
}

.seo-hero__title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 5.2vw, 3.6rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: #fff;
}

.seo-hero__title em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--gold-bright, #f5d67a);
}

.seo-hero__sub {
    margin: 1rem 0 0;
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    line-height: 1.55;
    color: rgba(247, 242, 234, 0.78);
    max-width: 38ch;
}

.seo-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.seo-section {
    padding: clamp(2.75rem, 6vw, 4.5rem) 0;
}

.seo-section--alt {
    background:
        radial-gradient(ellipse 60% 50% at 100% 0%, rgba(212, 175, 55, 0.08), transparent 55%),
        rgba(255, 255, 255, 0.015);
    border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.seo-k {
    display: block;
    margin-bottom: 0.65rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-bright, #f5d67a);
}

.seo-title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.2vw, 2.35rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.15;
    color: #fff;
}

.seo-title em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--gold-bright, #f5d67a);
}

.seo-lead {
    margin: 0.85rem 0 0;
    max-width: 62ch;
    font-size: 1.02rem;
    line-height: 1.65;
    color: rgba(247, 242, 234, 0.72);
}

.seo-prose {
    max-width: 68ch;
}

.seo-prose p {
    margin: 0 0 1rem;
    font-size: 1.02rem;
    line-height: 1.7;
    color: rgba(247, 242, 234, 0.78);
}

.seo-prose p:last-child {
    margin-bottom: 0;
}

.seo-prose a {
    color: var(--gold-bright, #f5d67a);
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.seo-prose strong {
    color: #fff;
    font-weight: 600;
}

.seo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.75rem;
}

.seo-card {
    padding: 1.35rem 1.25rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.025);
}

.seo-card h3 {
    margin: 0 0 0.55rem;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
}

.seo-card p {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.55;
    color: rgba(247, 242, 234, 0.68);
}

.seo-list {
    margin: 1.25rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.75rem;
}

.seo-list li {
    position: relative;
    padding: 0.95rem 1.1rem 0.95rem 2.6rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    font-size: 0.98rem;
    line-height: 1.5;
    color: rgba(247, 242, 234, 0.78);
}

.seo-list li::before {
    content: "";
    position: absolute;
    left: 1rem;
    top: 1.2rem;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: var(--gold-bright, #f5d67a);
}

.seo-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1.35rem;
}

.seo-cities span {
    font-size: 0.82rem;
    font-weight: 500;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(247, 242, 234, 0.75);
    background: rgba(255, 255, 255, 0.03);
}

.seo-faq {
    margin-top: 1.75rem;
    display: grid;
    gap: 0.65rem;
}

.seo-faq details {
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.025);
    padding: 0.95rem 1.15rem;
}

.seo-faq summary {
    cursor: pointer;
    font-weight: 600;
    color: #fff;
    list-style: none;
}

.seo-faq summary::-webkit-details-marker {
    display: none;
}

.seo-faq p {
    margin: 0.7rem 0 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(247, 242, 234, 0.72);
}

.seo-cta {
    margin-top: clamp(2rem, 4vw, 3rem);
    padding: clamp(1.75rem, 3vw, 2.25rem);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.22);
    background:
        radial-gradient(ellipse 70% 80% at 0% 50%, rgba(212, 175, 55, 0.12), transparent 55%),
        rgba(255, 255, 255, 0.02);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}

.seo-cta h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    font-weight: 700;
    color: #fff;
}

.seo-cta h2 em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--gold-bright, #f5d67a);
}

.seo-cta p {
    margin: 0.4rem 0 0;
    color: rgba(247, 242, 234, 0.7);
    max-width: 42ch;
}

.seo-related {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.25rem;
}

.seo-related a {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(247, 242, 234, 0.8);
    text-decoration: none;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
}

.seo-related a:hover {
    color: var(--gold-bright, #f5d67a);
    border-color: rgba(212, 175, 55, 0.35);
}

@media (max-width: 900px) {
    .seo-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   Visually hide SEO filler / crawl blocks site-wide.
   Markup stays in the DOM for search engines; users don't see it.
   ============================================================ */
[data-seo-expand],
.seo-explore,
.seo-explore[hidden],
.seo-related,
body > noscript {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    position: absolute !important;
    pointer-events: none !important;
}

/* Homepage crawlable solution strip — keep restyle rules below for DOM integrity */

.seo-explore__k {
    margin: 0 0 0.55rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-bright, #f5d67a);
}

.seo-explore__title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    color: #fff;
}

.seo-explore__title em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--gold-bright, #f5d67a);
}

.seo-explore__lead {
    margin: 0.65rem 0 0;
    color: rgba(247, 242, 234, 0.68);
    max-width: 42ch;
}

.seo-explore__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1.35rem;
}

.seo-explore__grid a {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(247, 242, 234, 0.8);
    text-decoration: none;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
}

.seo-explore__grid a:hover {
    color: var(--gold-bright, #f5d67a);
    border-color: rgba(212, 175, 55, 0.35);
}
