/* Bamnova — wellness brand stylesheet */

:root {
    --leaf-50: #f3f8f2;
    --leaf-100: #e3efe1;
    --leaf-200: #c4ddbf;
    --leaf-400: #6ba668;
    --leaf-500: #4f8a4d;
    --leaf-600: #3d6e3b;
    --leaf-700: #2c5230;
    --leaf-800: #1f3a23;
    --sand: #faf7f1;
    --cream: #fdfbf6;
    --ink: #1d2620;
    --muted: #5a665b;
    --line: #e0e6dd;
    --accent: #b8d49a;
    --shadow-sm: 0 1px 2px rgba(31, 58, 35, 0.04), 0 2px 6px rgba(31, 58, 35, 0.05);
    --shadow-md: 0 4px 18px rgba(31, 58, 35, 0.08);
    --shadow-lg: 0 18px 48px -16px rgba(31, 58, 35, 0.18);
    --radius-sm: 6px;
    --radius: 14px;
    --radius-lg: 22px;
    --transition: 240ms cubic-bezier(.4, .14, .3, 1);
    --font-display: "Fraunces", Georgia, "Times New Roman", serif;
    --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

a {
    color: var(--leaf-600);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--leaf-800);
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.18;
    color: var(--leaf-800);
}

h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.65rem, 3vw, 2.3rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }

p {
    margin-bottom: 1rem;
    color: #364237;
}

.wrap {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 22px;
}

/* ===== NAVIGATION ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(253, 251, 246, 0.92);
    backdrop-filter: saturate(180%) blur(10px);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid rgba(224, 230, 221, 0.6);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--leaf-800);
    font-weight: 600;
    letter-spacing: -0.015em;
}

.brand-mark {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--leaf-400), var(--leaf-700));
    position: relative;
    flex-shrink: 0;
}

.brand-mark::after {
    content: "";
    position: absolute;
    inset: 7px;
    border-radius: 50%;
    background: var(--cream);
}

.brand-mark::before {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 50%;
    background: var(--leaf-500);
    z-index: 2;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: var(--ink);
    font-size: 0.94rem;
    font-weight: 500;
    position: relative;
    padding: 4px 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--leaf-700);
}

.nav-links a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    height: 2px;
    background: var(--leaf-500);
    border-radius: 2px;
}

.nav-toggle {
    display: none;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 8px;
    width: 42px;
    height: 42px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--leaf-800);
    margin: 5px auto;
    transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 26px;
    font-family: var(--font-body);
    font-size: 0.96rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    line-height: 1.2;
}

.btn-primary {
    background: var(--leaf-700);
    color: #fff;
}

.btn-primary:hover {
    background: var(--leaf-800);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-ghost {
    background: transparent;
    color: var(--leaf-800);
    border-color: var(--leaf-200);
}

.btn-ghost:hover {
    background: var(--leaf-100);
    color: var(--leaf-800);
}

/* ===== HERO ===== */
.hero {
    padding: 70px 0 90px;
    background: linear-gradient(180deg, var(--sand) 0%, var(--cream) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 212, 154, 0.25), transparent 70%);
    top: -100px;
    right: -120px;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 60px;
    position: relative;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--leaf-600);
    margin-bottom: 18px;
    font-weight: 500;
}

.hero h1 {
    margin-bottom: 22px;
}

.hero-lede {
    font-size: 1.13rem;
    color: #3b4a3d;
    max-width: 520px;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero-meta {
    display: flex;
    gap: 32px;
    padding-top: 26px;
    border-top: 1px solid var(--line);
    flex-wrap: wrap;
}

.hero-meta-item {
    display: flex;
    flex-direction: column;
}

.hero-meta-num {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--leaf-700);
    font-weight: 500;
}

.hero-meta-lbl {
    font-size: 0.84rem;
    color: var(--muted);
}

.hero-visual {
    position: relative;
}

.hero-visual img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/5;
    object-fit: cover;
}

.hero-badge {
    position: absolute;
    bottom: 24px;
    left: -22px;
    background: #fff;
    padding: 14px 18px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 230px;
}

.hero-badge-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background: var(--leaf-100);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--leaf-700);
}

.hero-badge-text {
    font-size: 0.86rem;
    line-height: 1.4;
    color: var(--ink);
}

/* ===== SECTION HEADINGS ===== */
.section {
    padding: 80px 0;
}

.section-tight {
    padding: 56px 0;
}

.section-alt {
    background: var(--sand);
}

.section-head {
    max-width: 640px;
    margin-bottom: 50px;
}

.section-head.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.kicker {
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--leaf-600);
    font-weight: 600;
    margin-bottom: 14px;
    display: inline-block;
}

/* ===== INTRO / PHILOSOPHY ===== */
.intro {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 70px;
    align-items: center;
}

.intro-figure {
    position: relative;
}

.intro-figure img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    aspect-ratio: 5/6;
    object-fit: cover;
}

.intro-figure::before {
    content: "";
    position: absolute;
    inset: 22px -22px -22px 22px;
    border: 2px solid var(--leaf-200);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.intro-body p + p {
    margin-top: 1.1rem;
}

.intro-quote {
    margin-top: 26px;
    padding-left: 22px;
    border-left: 3px solid var(--leaf-400);
    font-family: var(--font-display);
    font-size: 1.18rem;
    color: var(--leaf-800);
    font-style: italic;
    line-height: 1.4;
}

/* ===== INGREDIENTS / INFO STRIP ===== */
.info-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 40px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}

.info-cell {
    padding: 32px 28px;
    border-right: 1px solid var(--line);
}

.info-cell:last-child {
    border-right: 0;
}

.info-cell h3 {
    color: var(--leaf-700);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.info-cell p {
    font-size: 0.94rem;
    color: var(--muted);
    margin: 0;
}

/* ===== INGREDIENTS LIST ===== */
.ingredients {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: start;
}

.ing-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.ing-list li {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 18px;
    padding-bottom: 22px;
    border-bottom: 1px dashed var(--line);
    align-items: start;
}

.ing-list li:last-child {
    border-bottom: 0;
}

.ing-num {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--leaf-500);
    font-weight: 500;
    line-height: 1;
    padding-top: 4px;
}

.ing-list h4 {
    margin-bottom: 6px;
    color: var(--leaf-800);
}

.ing-list p {
    margin: 0;
    font-size: 0.94rem;
    color: var(--muted);
}

.product-card {
    background: linear-gradient(160deg, var(--leaf-100) 0%, var(--sand) 100%);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    position: sticky;
    top: 100px;
}

.product-card img {
    max-width: 240px;
    margin: 0 auto 20px;
}

.product-card h3 {
    margin-bottom: 8px;
}

.product-card .product-sub {
    color: var(--muted);
    font-size: 0.92rem;
    margin-bottom: 22px;
}

.product-features {
    list-style: none;
    text-align: left;
    margin-bottom: 24px;
    border-top: 1px solid rgba(63, 110, 59, 0.2);
    padding-top: 20px;
}

.product-features li {
    padding: 10px 0 10px 26px;
    position: relative;
    font-size: 0.92rem;
}

.product-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 16px;
    width: 14px;
    height: 8px;
    border-left: 2px solid var(--leaf-600);
    border-bottom: 2px solid var(--leaf-600);
    transform: rotate(-45deg);
}

/* ===== LIFESTYLE BLOCK ===== */
.lifestyle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--leaf-100);
}

.lifestyle-text {
    padding: 56px 50px;
    align-self: center;
}

.lifestyle-text h2 {
    margin-bottom: 18px;
}

.lifestyle-image {
    min-height: 380px;
}

.lifestyle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 380px;
}

.lifestyle-points {
    list-style: none;
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lifestyle-points li {
    padding-left: 22px;
    position: relative;
    color: #2c3a2e;
}

.lifestyle-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--leaf-500);
}

/* ===== FAQ ===== */
.faq {
    max-width: 780px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--line);
    padding: 4px 0;
}

.faq-q {
    width: 100%;
    background: none;
    border: 0;
    text-align: left;
    padding: 22px 40px 22px 0;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--leaf-800);
    cursor: pointer;
    position: relative;
    line-height: 1.4;
    font-weight: 500;
}

.faq-q::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    color: var(--leaf-600);
    transition: transform var(--transition);
    line-height: 1;
}

.faq-item.open .faq-q::after {
    content: "−";
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
}

.faq-a-inner {
    padding: 0 0 22px 0;
    color: var(--muted);
    font-size: 0.96rem;
}

/* ===== CTA STRIP ===== */
.cta-strip {
    background: var(--leaf-700);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 56px 50px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: center;
    margin: 30px 0;
}

.cta-strip h2 {
    color: #fff;
    margin-bottom: 12px;
}

.cta-strip p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.cta-strip .btn {
    justify-self: end;
}

.cta-strip .btn-primary {
    background: var(--cream);
    color: var(--leaf-800);
}

.cta-strip .btn-primary:hover {
    background: #fff;
    color: var(--leaf-800);
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--leaf-800);
    color: #cdd6cd;
    padding: 70px 0 28px;
    margin-top: 80px;
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.foot-grid h4 {
    color: #fff;
    margin-bottom: 16px;
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.foot-grid ul {
    list-style: none;
}

.foot-grid li {
    margin-bottom: 9px;
    font-size: 0.92rem;
}

.foot-grid a {
    color: #b8c4b8;
}

.foot-grid a:hover {
    color: #fff;
}

.foot-brand p {
    color: #a4b0a4;
    font-size: 0.92rem;
    max-width: 280px;
    margin-top: 12px;
}

.foot-contact li {
    display: flex;
    gap: 8px;
    color: #b8c4b8;
    align-items: flex-start;
}

.foot-contact .lbl {
    color: #8a958a;
    flex-shrink: 0;
    min-width: 56px;
}

.foot-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 0.85rem;
    color: #8a958a;
}

/* ===== COOKIE BANNER ===== */
.cookie-bar {
    position: fixed;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 200;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 20px 24px;
    display: none;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: center;
    max-width: 880px;
    margin: 0 auto;
}

.cookie-bar.show {
    display: grid;
    animation: slideUp 360ms ease-out;
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-bar p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--muted);
}

.cookie-bar a {
    color: var(--leaf-700);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-actions .btn {
    padding: 10px 18px;
    font-size: 0.88rem;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 36px;
}

.form-row {
    margin-bottom: 18px;
}

.form-row label {
    display: block;
    font-size: 0.88rem;
    margin-bottom: 7px;
    color: var(--leaf-800);
    font-weight: 500;
}

.form-row input,
.form-row textarea,
.form-row select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.96rem;
    background: var(--cream);
    color: var(--ink);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
    outline: none;
    border-color: var(--leaf-500);
    box-shadow: 0 0 0 3px rgba(79, 138, 77, 0.12);
}

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

.form-row.error input,
.form-row.error textarea {
    border-color: #c44a4a;
}

.form-err {
    color: #c44a4a;
    font-size: 0.82rem;
    margin-top: 5px;
    display: none;
}

.form-row.error .form-err {
    display: block;
}

.form-consent {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 22px;
    font-size: 0.86rem;
    color: var(--muted);
}

.form-consent input {
    width: auto;
    margin-top: 4px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-block {
    padding: 24px;
    background: var(--sand);
    border-radius: var(--radius);
}

.contact-block h3 {
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.contact-block p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.55;
}

.contact-block a {
    color: var(--leaf-700);
}

.map-placeholder {
    background: var(--leaf-100);
    border-radius: var(--radius);
    height: 240px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
}

.map-placeholder::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(63, 110, 59, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(63, 110, 59, 0.07) 1px, transparent 1px);
    background-size: 40px 40px;
}

.map-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    width: 38px;
    height: 38px;
    background: var(--leaf-700);
    border-radius: 50% 50% 50% 0;
    transform: translate(-50%, -100%) rotate(-45deg);
    box-shadow: var(--shadow-md);
}

.map-pin::after {
    content: "";
    position: absolute;
    inset: 11px;
    background: #fff;
    border-radius: 50%;
}

.map-caption {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    background: #fff;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    color: var(--ink);
    box-shadow: var(--shadow-sm);
}

/* ===== ABOUT PAGE ===== */
.page-hero {
    padding: 70px 0 50px;
    background: var(--sand);
}

.page-hero .kicker { margin-bottom: 12px; }

.page-hero h1 { max-width: 760px; }

.page-hero p {
    max-width: 620px;
    margin-top: 16px;
    color: #3b4a3d;
    font-size: 1.08rem;
}

.story {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: start;
}

.story-image img {
    border-radius: var(--radius-lg);
    aspect-ratio: 4/5;
    object-fit: cover;
    box-shadow: var(--shadow-md);
}

.values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.value-card {
    padding: 30px 28px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.value-card h3 {
    color: var(--leaf-700);
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.value-card p {
    margin: 0;
    font-size: 0.96rem;
    color: var(--muted);
}

.value-card .v-num {
    font-family: var(--font-display);
    color: var(--leaf-400);
    font-size: 0.95rem;
    margin-bottom: 12px;
    letter-spacing: 0.06em;
}

/* ===== SUCCESS PAGE ===== */
.success-page {
    min-height: 70vh;
    display: grid;
    place-items: center;
    padding: 70px 22px;
    text-align: center;
    background: var(--sand);
}

.success-card {
    max-width: 520px;
}

.success-icon {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: var(--leaf-100);
    display: grid;
    place-items: center;
    margin: 0 auto 28px;
}

.success-icon svg {
    width: 44px;
    height: 44px;
    color: var(--leaf-600);
}

.success-card h1 {
    margin-bottom: 14px;
}

.success-card p {
    margin-bottom: 28px;
    color: var(--muted);
    font-size: 1.05rem;
}

/* ===== LEGAL PAGES ===== */
.legal {
    max-width: 820px;
    margin: 0 auto;
    padding: 50px 0 30px;
}

.legal h2 {
    margin-top: 38px;
    margin-bottom: 14px;
    font-size: 1.45rem;
}

.legal h3 {
    margin-top: 26px;
    margin-bottom: 10px;
    color: var(--leaf-700);
}

.legal p, .legal li {
    color: #3b4a3d;
    font-size: 0.98rem;
    line-height: 1.7;
}

.legal ul, .legal ol {
    padding-left: 22px;
    margin-bottom: 14px;
}

.legal li {
    margin-bottom: 6px;
}

.legal-meta {
    color: var(--muted);
    font-size: 0.88rem;
    padding: 12px 18px;
    background: var(--sand);
    border-left: 3px solid var(--leaf-400);
    border-radius: 4px;
    margin-bottom: 30px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
    .hero-grid,
    .intro,
    .ingredients,
    .lifestyle,
    .story,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lifestyle-text { padding: 44px 30px; }
    .lifestyle-image { min-height: 260px; }
    .lifestyle-image img { min-height: 260px; }

    .info-strip { grid-template-columns: 1fr; }
    .info-cell { border-right: 0; border-bottom: 1px solid var(--line); }
    .info-cell:last-child { border-bottom: 0; }

    .foot-grid { grid-template-columns: 1fr 1fr; }
    .values { grid-template-columns: 1fr; }

    .cta-strip {
        grid-template-columns: 1fr;
        padding: 40px 30px;
    }
    .cta-strip .btn { justify-self: start; }

    .product-card { position: static; }

    .hero-badge { left: 14px; right: 14px; max-width: none; }
}

@media (max-width: 720px) {
    .nav-toggle { display: block; }

    .nav-links {
        position: fixed;
        inset: 70px 0 auto 0;
        background: var(--cream);
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 22px 32px;
        gap: 6px;
        border-bottom: 1px solid var(--line);
        transform: translateY(-110%);
        transition: transform var(--transition);
    }

    .nav-links.open {
        transform: translateY(0);
    }

    .nav-links li { width: 100%; }
    .nav-links a {
        display: block;
        padding: 12px 0;
        font-size: 1rem;
        width: 100%;
        border-bottom: 1px solid var(--line);
    }
    .nav-links li:last-child a { border-bottom: 0; }

    .hero { padding: 50px 0 70px; }
    .section { padding: 56px 0; }

    .hero-meta { gap: 22px; }

    .cookie-bar {
        grid-template-columns: 1fr;
        text-align: left;
    }
    .cookie-actions { width: 100%; }
    .cookie-actions .btn { flex: 1; }

    .foot-grid { grid-template-columns: 1fr; gap: 30px; }
    .foot-bottom { flex-direction: column; align-items: flex-start; }

    .contact-form { padding: 26px 22px; }
}

@media (max-width: 460px) {
    .hero h1 { font-size: 1.95rem; }
    h2 { font-size: 1.5rem; }
    .hero-actions .btn { width: 100%; }
}

/* ===== UTILS ===== */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.fade-in {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 600ms ease, transform 600ms ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
