/* Nevia — editorial light theme (cream / black / yellow) */
:root {
    --cream: #f3efe4;
    --cream-dark: #e8e2d4;
    --black: #0a0a0a;
    --black-soft: #141414;
    --yellow: #f5e642;
    --yellow-hover: #ebe032;
    --yellow-soft: rgba(245, 230, 66, 0.25);

    --bg-page: var(--cream);
    --bg-elevated: #ffffff;
    --bg-muted: var(--cream-dark);
    --bg-deep: var(--black);
    --bg-deep-soft: var(--black-soft);

    --text-primary: var(--black);
    --text-secondary: #4a4a4a;
    --text-muted: #7a7a7a;
    --text-on-dark: #ffffff;
    --text-muted-on-dark: rgba(255, 255, 255, 0.65);

    --accent: var(--yellow);
    --accent-hover: var(--yellow-hover);
    --accent-soft: var(--yellow-soft);

    --border: rgba(10, 10, 10, 0.1);
    --border-strong: rgba(10, 10, 10, 0.18);
    --border-on-dark: rgba(255, 255, 255, 0.12);

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-pill: 999px;

    --font-sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: var(--font-sans);

    --shadow-sm: 0 2px 8px rgba(10, 10, 10, 0.06);
    --shadow-md: 0 12px 40px rgba(10, 10, 10, 0.1);
    --shadow-lg: 0 24px 64px rgba(10, 10, 10, 0.14);

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.75rem;
    --space-lg: 3rem;
    --space-xl: 5rem;
    --space-2xl: 7rem;

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 0.25s var(--ease);

    --ad-bar-height: 2rem;
    --header-pill-height: 3.25rem;
    --site-head-offset: calc(var(--ad-bar-height) + var(--header-pill-height) + 1.5rem);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 1.02rem;
    line-height: 1.65;
    color: var(--text-primary);
    background: var(--bg-page);
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition), background var(--transition), opacity var(--transition);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-sm);
    }
}

/* Site head + floating nav */
.site-head {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    pointer-events: none;
}

.site-head .ad-bar,
.site-head .header {
    pointer-events: auto;
}

.ad-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: var(--ad-bar-height);
    padding: 0.35rem var(--space-sm);
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.ad-bar-text {
    margin: 0;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.ad-bar-label {
    display: inline-block;
    margin-right: 0.5rem;
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    background: var(--black);
    color: var(--yellow);
    font-weight: 800;
}

.header {
    padding: 0.65rem 0 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.header-topline {
    display: none;
}

.header .container,
.header-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header-pill {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.4rem 0.35rem 0.5rem;
    background: var(--black);
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-md);
    max-width: 100%;
}

.nav-link--brand {
    font-weight: 800;
    font-size: 0.9375rem;
    letter-spacing: -0.02em;
    color: var(--text-on-dark) !important;
    padding: 0.5rem 0.85rem !important;
    border-radius: var(--radius-pill);
}

.nav-link--brand:hover {
    background: rgba(255, 255, 255, 0.08) !important;
}

.nav-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
    padding: 0.2rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-pill);
}

.nav-link {
    font-weight: 600;
    font-size: 0.8125rem;
    color: var(--text-muted-on-dark);
    padding: 0.45rem 0.9rem;
    border-radius: var(--radius-pill);
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--text-on-dark);
    background: rgba(255, 255, 255, 0.06);
}

.nav-link.active {
    color: var(--black);
    background: var(--yellow);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    margin-left: 0.15rem;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.75rem;
    background: var(--yellow);
    color: var(--black);
    white-space: nowrap;
    transition: background var(--transition), transform var(--transition);
}

.header-cta:hover {
    background: var(--yellow-hover);
    transform: translateY(-1px);
}

.logo {
    display: none;
}

.mobile-menu-checkbox {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 0.25rem;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background: var(--text-on-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: var(--space-xs);
    width: min(100%, 320px);
    margin-top: var(--space-sm);
    padding: var(--space-sm);
    background: var(--black);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease);
}

.header-wrap:has(.mobile-menu-checkbox:checked) .mobile-nav {
    display: flex;
    max-height: 320px;
}

.header-wrap:has(.mobile-menu-checkbox:checked) .mobile-menu-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header-wrap:has(.mobile-menu-checkbox:checked) .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
}

.header-wrap:has(.mobile-menu-checkbox:checked) .mobile-menu-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav-link {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-muted-on-dark);
    padding: 0.55rem 0.75rem;
    border-radius: var(--radius-sm);
}

.mobile-nav-link.active,
.mobile-nav-link:hover {
    color: var(--text-on-dark);
    background: rgba(255, 255, 255, 0.08);
}

.mobile-nav-cta {
    margin-top: var(--space-xs);
    text-align: center;
    background: var(--yellow);
    color: var(--black) !important;
}

@media (max-width: 768px) {
    .header-cta {
        display: none;
    }

    .nav-pill {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-pill {
        padding-right: 0.5rem;
    }
}

/* Hero */
.hero {
    position: relative;
    min-height: min(88vh, 760px);
    display: flex;
    align-items: center;
    padding: calc(var(--site-head-offset) + var(--space-lg)) 0 var(--space-xl);
    background-color: var(--cream);
    background-image: url("../323.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            105deg,
            rgba(243, 239, 228, 0.96) 0%,
            rgba(230, 224, 210, 0.88) 40%,
            rgba(180, 172, 155, 0.55) 68%,
            rgba(45, 42, 38, 0.42) 100%
        ),
        rgba(0, 0, 0, 0.22);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    display: block;
    text-align: left;
}

.hero-text {
    max-width: 52rem;
    margin: 0;
    align-items: flex-start;
}

.hero-eyebrow {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.hero-eyebrow::before {
    display: none;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.04em;
    text-transform: none;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.hero-arrow {
    display: inline-block;
    color: var(--yellow);
    background: var(--black);
    width: 0.85em;
    height: 0.85em;
    line-height: 0.85em;
    text-align: center;
    border-radius: 50%;
    font-size: 0.55em;
    vertical-align: super;
    margin-left: 0.1em;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    max-width: 36em;
    line-height: 1.7;
}

/* Intro band — services + stats + quote */
.intro-band {
    padding: var(--space-lg) 0 var(--space-xl);
    background: var(--cream);
    border-top: 1px solid var(--border);
}

.intro-band-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-lg);
    align-items: start;
}

.intro-services h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-md);
    line-height: 1.1;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-tag {
    display: inline-flex;
    padding: 0.55rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    background: var(--bg-elevated);
    border: 1.5px solid var(--black);
    border-radius: var(--radius-pill);
    color: var(--text-primary);
}

.intro-side {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.stat-card {
    padding: var(--space-md);
    background: var(--black);
    color: var(--text-on-dark);
    border-radius: var(--radius-lg);
}

.stat-card-value {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 0.35rem;
}

.stat-card-value span {
    color: var(--yellow);
}

.stat-card-label {
    font-size: 0.875rem;
    color: var(--text-muted-on-dark);
    line-height: 1.4;
}

.intro-quote {
    grid-column: 1 / -1;
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    padding: var(--space-md);
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-top: var(--space-sm);
}

.intro-quote-icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--yellow);
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 800;
}

.intro-quote p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.65;
}

.intro-quote cite {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 700;
    font-style: normal;
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .intro-band-grid {
        grid-template-columns: 1fr;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.75rem;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.9375rem;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn-primary {
    background: var(--yellow);
    color: var(--black);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--yellow-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-full {
    width: 100%;
}

/* Sections */
section {
    padding: var(--space-xl) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-lg);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    text-transform: none;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
    line-height: 1.15;
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

@media (max-width: 768px) {
    section {
        padding: var(--space-lg) 0;
    }
}

/* Dark sections */
.section-dark {
    background: var(--black);
    color: var(--text-on-dark);
}

.section-dark .section-eyebrow,
.section-dark .section-subtitle {
    color: var(--text-muted-on-dark);
}

.section-dark .section-title,
.section-dark .feature-title,
.section-dark .why-title {
    color: var(--text-on-dark);
}

.section-dark .feature-description,
.section-dark .why-text {
    color: var(--text-muted-on-dark);
}

/* Why us / features */
.features {
    border: none;
}

.features-header {
    text-align: left;
    max-width: 40rem;
    margin: 0 0 var(--space-lg);
}

.features-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.feature-card {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-on-dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition);
}

.feature-card::before {
    display: none;
}

.feature-card-inner {
    padding: var(--space-md);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 230, 66, 0.35);
}

.feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--yellow);
    color: var(--black);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: var(--space-sm);
}

.feature-number {
    display: none;
}

.feature-number--banner {
    display: flex;
}

.feature-card--lead,
.feature-card:nth-child(2),
.feature-card:nth-child(3),
.feature-card.feature-card--banner {
    grid-column: auto;
    grid-row: auto;
    border-left: none;
    background: rgba(255, 255, 255, 0.04);
}

.feature-card--lead .feature-card-inner {
    padding: var(--space-md);
    min-height: auto;
}

.feature-card.feature-card--banner {
    grid-column: 1 / -1;
    background: rgba(245, 230, 66, 0.08);
    border-color: rgba(245, 230, 66, 0.25);
    flex-direction: row;
    align-items: center;
    padding: var(--space-md);
    gap: var(--space-md);
}

.feature-title {
    font-size: 1rem;
    font-weight: 700;
    text-transform: none;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.feature-description {
    font-size: 0.875rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .features-bento {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .features-bento {
        grid-template-columns: 1fr;
    }

    .feature-card.feature-card--banner {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* About band */
.about-band {
    background: var(--cream);
    padding: var(--space-xl) 0;
}

.about-band-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.about-media {
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: var(--shadow-lg);
}

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

.about-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
}

.about-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: var(--space-md);
}

.about-text {
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: var(--space-md);
}

.stats-mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
}

.stat-pill {
    text-align: center;
    padding: var(--space-sm);
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.stat-pill strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.2rem;
}

.stat-pill span {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.35;
}

@media (max-width: 992px) {
    .about-band-inner {
        grid-template-columns: 1fr;
    }

    .stats-mini {
        grid-template-columns: 1fr;
    }
}

/* Foods */
.foods {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.foods-header {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto var(--space-lg);
}

.foods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.food-card {
    display: flex;
    flex-direction: column;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.food-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.food-card--featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    flex-direction: row;
    background: var(--bg-elevated);
    border-color: var(--border-strong);
}

.food-card--featured .food-card-media {
    min-height: 280px;
}

.food-card--featured .food-card-body {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 4px solid var(--yellow);
}

.food-card--featured .food-title {
    font-size: 1.35rem;
    margin-bottom: var(--space-sm);
}

.food-card-media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--cream-dark);
}

.food-card--featured .food-card-media {
    aspect-ratio: auto;
    min-height: 100%;
}

.food-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.food-card-body {
    padding: var(--space-md);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.food-title {
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.food-description {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.65;
    margin-bottom: 0.5rem;
}

.food-card:not(.food-card--featured) .food-description {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.food-details {
    list-style: none;
    display: grid;
    gap: 0.45rem;
    margin-top: var(--space-sm);
    padding-top: var(--space-sm);
    border-top: 1px solid var(--border);
}

.food-details li {
    position: relative;
    padding-left: 1rem;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.45;
}

.food-details li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--yellow);
    border: 1px solid var(--black);
}

@media (max-width: 992px) {
    .foods-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .food-card--featured {
        grid-template-columns: 1fr;
    }

    .food-card--featured .food-card-body {
        border-left: none;
        border-top: 4px solid var(--yellow);
    }

    .food-card--featured .food-card-media {
        min-height: 220px;
        aspect-ratio: 16 / 10;
    }
}

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

/* Stats legacy — hidden when about-band used */
.stats {
    display: none;
}

.stats-img,
.product-img,
.product-img-small,
.contact-img {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.contact-img {
    aspect-ratio: 1;
    width: 160px;
    height: 160px;
    border-radius: 50%;
}

/* Info split */
.info-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 320px;
}

.info-block {
    padding: var(--space-xl) var(--space-lg);
    display: flex;
    align-items: center;
}

.info-block-dark {
    background: var(--black);
    color: var(--text-on-dark);
}

.info-block-dark .info-text {
    color: var(--text-muted-on-dark);
}

.info-block-image {
    background: var(--black-soft);
    position: relative;
    overflow: hidden;
}

.info-block-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?w=1200&h=800&fit=crop");
    background-size: cover;
    background-position: center;
    opacity: 0.45;
}

.info-block-image .info-content {
    position: relative;
    z-index: 1;
}

.info-block-image .info-title { color: #fff; }
.info-block-image .info-text { color: rgba(255, 255, 255, 0.88); }

.info-title {
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
    line-height: 1.25;
}

.info-text {
    color: var(--text-secondary);
    line-height: 1.75;
}

@media (max-width: 992px) {
    .info-split { grid-template-columns: 1fr; }
}

/* Product */
.product {
    background: var(--cream);
    padding: var(--space-xl) 0;
}

.product-card {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 0;
    background: var(--black);
    color: var(--text-on-dark);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.product-card-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--black);
}

.product-card-badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--yellow);
    color: var(--black);
    border-radius: var(--radius-pill);
}

.product-card-frame {
    width: 100%;
    max-width: 280px;
    padding: var(--space-md);
    background: var(--bg-elevated);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.product-card-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border: none;
    border-radius: var(--radius-md);
    box-shadow: none;
}

.product-card-body {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-card-body .section-eyebrow {
    color: var(--yellow);
    margin-bottom: var(--space-sm);
}

.product-card-title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: var(--space-md);
    color: var(--text-on-dark);
}

.product-lead {
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 1.6;
    color: var(--text-on-dark);
    margin-bottom: var(--space-sm);
}

.product-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-muted-on-dark);
    margin-bottom: var(--space-md);
}

.product-points {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: var(--space-lg);
}

.product-points li {
    padding: 0.45rem 0.85rem;
    font-size: 0.8125rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-on-dark);
    border-radius: var(--radius-pill);
    color: var(--text-on-dark);
}

.product-card-body .btn-primary {
    align-self: flex-start;
}

@media (max-width: 992px) {
    .product-card {
        grid-template-columns: 1fr;
    }

    .product-card-visual {
        padding: var(--space-md);
    }

    .product-card-body {
        padding: var(--space-md);
    }
}

/* FAQ */
.faq { background: var(--cream); }

.faq-title {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    text-align: center;
    margin-bottom: var(--space-lg);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    max-width: 760px;
    margin: 0 auto;
}

.faq-checkbox { display: none; }

.faq-item {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    padding: var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-sm);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
}

.faq-question:hover { background: var(--cream-dark); }

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    background: var(--yellow);
    color: var(--black);
    border-radius: var(--radius-sm);
    transition: transform 0.3s var(--ease);
}

.faq-checkbox:checked + .faq-question .faq-icon { transform: rotate(45deg); }

.faq-answer {
    padding: 0 var(--space-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease), padding 0.35s var(--ease);
}

.faq-checkbox:checked ~ .faq-answer {
    max-height: 500px;
    padding: 0 var(--space-md) var(--space-md);
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.75;
    font-size: 0.9375rem;
}

/* CTA */
.cta-banner {
    background: var(--black);
    color: var(--text-on-dark);
    text-align: center;
}

.cta-title {
    font-size: clamp(1.6rem, 3vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-md);
    color: var(--text-on-dark);
}

.cta-text {
    font-size: 1.05rem;
    color: var(--text-muted-on-dark);
    max-width: 52rem;
    margin: 0 auto;
    line-height: 1.75;
}

/* Contact */
.contact-form {
    background: var(--cream-dark);
    border-top: 1px solid var(--border);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.45fr;
    gap: var(--space-lg);
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-title {
    font-size: clamp(1.4rem, 2.2vw, 1.85rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.contact-text { color: var(--text-secondary); line-height: 1.75; }

.contact-email {
    font-weight: 700;
    color: var(--text-primary);
}

.form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.form-label {
    font-weight: 600;
    font-size: 0.875rem;
}

.form-input,
.form-textarea {
    padding: 0.9rem 1.1rem;
    background: var(--bg-elevated);
    border: 1.5px solid var(--border-strong);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--black);
    box-shadow: 0 0 0 3px var(--yellow-soft);
}

.form-textarea {
    resize: vertical;
    min-height: 130px;
}

@media (max-width: 992px) {
    .contact-content,
    .form-row { grid-template-columns: 1fr; }
}

/* Inner pages */
.page-hero {
    padding-top: calc(var(--site-head-offset) + var(--space-lg));
    padding-bottom: var(--space-md);
    background: var(--cream);
}

.page-hero .section-header {
    text-align: left;
    margin: 0;
    max-width: 760px;
}

.legal-page { padding-top: var(--space-sm); }

.legal-content { display: grid; gap: var(--space-md); }

.legal-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    box-shadow: var(--shadow-sm);
}

.legal-card h2 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.legal-card p,
.legal-card li { color: var(--text-secondary); }

.legal-card ul {
    margin-left: 1.25rem;
    display: grid;
    gap: 0.45rem;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

@media (max-width: 768px) {
    .contact-page-grid { grid-template-columns: 1fr; }
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--text-muted-on-dark);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
}

.footer-disclaimer {
    font-size: 0.8125rem;
    line-height: 1.65;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    max-width: 42rem;
    margin: 0 auto;
}

.footer-link {
    display: block;
    color: var(--yellow);
    font-size: 0.875rem;
    line-height: 1.5;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-align: center;
}

.footer-link:hover {
    color: var(--yellow-hover);
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer-nav-link {
    font-size: 0.875rem;
    color: var(--text-on-dark);
    padding: 0.4rem 0.85rem;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-on-dark);
}

.footer-nav-link:hover {
    background: rgba(255, 255, 255, 0.08);
}

.footer-copyright {
    font-size: 0.8125rem;
    opacity: 0.5;
}

/* Toast */
.toast {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    background: var(--black);
    color: var(--yellow);
    padding: 0.9rem 1.5rem;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.9375rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease), visibility 0.35s;
    z-index: 9999;
    max-width: 90%;
}

.toast.toast-visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}
