/* ============================================
   Luxopena — wellness brand stylesheet
   ============================================ */

:root {
    --c-bg: #f7faf5;
    --c-bg-alt: #eef4e8;
    --c-surface: #ffffff;
    --c-ink: #1d2a1f;
    --c-ink-soft: #4a5a4c;
    --c-muted: #7a8a7c;
    --c-line: #d9e2d4;
    --c-leaf: #6fa66b;
    --c-leaf-deep: #3f7a3c;
    --c-forest: #244c25;
    --c-moss: #8fb98b;
    --c-cream: #f3efe2;
    --c-accent: #c6dd9f;

    --shadow-sm: 0 1px 2px rgba(36, 76, 37, 0.06);
    --shadow-md: 0 8px 24px rgba(36, 76, 37, 0.08);
    --shadow-lg: 0 18px 48px rgba(36, 76, 37, 0.12);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 22px;

    --font-display: "Cormorant Garamond", "Georgia", serif;
    --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

    --max-w: 1180px;
}

* {
    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(--c-ink);
    background: var(--c-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--c-leaf-deep);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--c-forest);
}

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

h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }

p { color: var(--c-ink-soft); }

.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 22px;
}

/* ===== HEADER / NAV ===== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(247, 250, 245, 0.92);
    backdrop-filter: saturate(140%) blur(10px);
    -webkit-backdrop-filter: saturate(140%) blur(10px);
    border-bottom: 1px solid var(--c-line);
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--c-forest);
    letter-spacing: 0.02em;
}

.brand-mark {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--c-moss), var(--c-leaf-deep));
    position: relative;
    box-shadow: inset 0 -3px 6px rgba(0,0,0,0.08);
}

.brand-mark::after {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    background: var(--c-bg);
    opacity: 0.25;
}

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

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

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--c-leaf);
    transition: width 0.25s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--c-forest);
    transition: all 0.3s ease;
    display: block;
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open 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-weight: 500;
    font-size: 0.95rem;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    text-align: center;
    line-height: 1;
}

.btn-primary {
    background: var(--c-leaf-deep);
    color: #fff;
    box-shadow: 0 6px 16px rgba(63, 122, 60, 0.25);
}

.btn-primary:hover {
    background: var(--c-forest);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(63, 122, 60, 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--c-forest);
    border-color: var(--c-line);
}

.btn-ghost:hover {
    background: var(--c-bg-alt);
    color: var(--c-forest);
}

/* ===== HERO ===== */

.hero {
    position: relative;
    padding: 70px 0 90px;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(198, 221, 159, 0.35), transparent 65%);
    top: -160px;
    right: -120px;
    z-index: 0;
    pointer-events: none;
}

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

.hero-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-leaf-deep);
    padding: 6px 14px;
    background: var(--c-bg-alt);
    border-radius: 999px;
    margin-bottom: 22px;
    font-weight: 500;
}

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

.hero h1 em {
    font-style: italic;
    color: var(--c-leaf-deep);
}

.hero p.lead {
    font-size: 1.1rem;
    margin-bottom: 32px;
    max-width: 520px;
}

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

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

.hero-meta div {
    font-size: 0.88rem;
    color: var(--c-muted);
}

.hero-meta div strong {
    display: block;
    color: var(--c-forest);
    font-size: 1.05rem;
    font-family: var(--font-display);
    font-weight: 600;
    margin-bottom: 2px;
}

.hero-visual {
    position: relative;
}

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

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

.hero-badge-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--c-bg-alt);
    display: grid;
    place-items: center;
    color: var(--c-leaf-deep);
    flex-shrink: 0;
    font-size: 1.2rem;
}

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

.hero-badge-text strong {
    display: block;
    color: var(--c-forest);
    font-family: var(--font-display);
    font-size: 1rem;
}

/* ===== SECTIONS ===== */

section {
    padding: 90px 0;
    position: relative;
}

.section-head {
    max-width: 680px;
    margin-bottom: 56px;
}

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

.section-tag {
    display: inline-block;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-leaf-deep);
    margin-bottom: 14px;
    font-weight: 500;
}

.section-head h2 {
    margin-bottom: 16px;
}

.section-head p {
    font-size: 1.05rem;
}

/* ===== INTRO BLOCK ===== */

.intro {
    background: var(--c-surface);
    border-top: 1px solid var(--c-line);
    border-bottom: 1px solid var(--c-line);
}

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

.intro-text h2 {
    margin-bottom: 22px;
}

.intro-points {
    list-style: none;
    margin-top: 28px;
}

.intro-points li {
    padding: 14px 0 14px 36px;
    border-bottom: 1px dashed var(--c-line);
    position: relative;
    color: var(--c-ink);
    font-size: 0.98rem;
}

.intro-points li:last-child { border-bottom: 0; }

.intro-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 22px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--c-bg-alt);
    border: 2px solid var(--c-leaf);
}

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

/* ===== PRODUCT CARD ===== */

.product-section {
    background: var(--c-bg-alt);
    position: relative;
}

.product-card {
    background: var(--c-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    overflow: hidden;
    align-items: stretch;
}

.product-card-image {
    background: linear-gradient(160deg, var(--c-cream) 0%, var(--c-bg-alt) 100%);
    display: grid;
    place-items: center;
    padding: 50px 30px;
    position: relative;
}

.product-card-image::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(143, 185, 139, 0.25), transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.product-card-image img {
    max-width: 290px;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 18px 28px rgba(36, 76, 37, 0.15));
}

.product-card-body {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-tag {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-leaf-deep);
    font-weight: 500;
    margin-bottom: 12px;
}

.product-card h3 {
    font-size: 1.9rem;
    margin-bottom: 14px;
}

.product-card .desc {
    font-size: 1rem;
    margin-bottom: 24px;
    color: var(--c-ink-soft);
}

.product-specs {
    list-style: none;
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 22px;
}

.product-specs li {
    font-size: 0.9rem;
    color: var(--c-ink);
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-specs li::before {
    content: "✓";
    color: var(--c-leaf-deep);
    font-weight: bold;
}

/* ===== INGREDIENTS / INFO ===== */

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.info-tile {
    background: var(--c-surface);
    padding: 32px 28px;
    border-radius: var(--radius-md);
    border: 1px solid var(--c-line);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
}

.info-tile:nth-child(2) {
    margin-top: 26px;
}

.info-tile:nth-child(3) {
    margin-top: -10px;
}

.info-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--c-moss);
}

.info-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--c-bg-alt);
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    color: var(--c-leaf-deep);
    font-size: 1.3rem;
    font-weight: 600;
}

.info-tile h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.info-tile p {
    font-size: 0.93rem;
}

/* ===== LIFESTYLE ===== */

.lifestyle {
    background: var(--c-surface);
}

.lifestyle-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.lifestyle-visual {
    position: relative;
}

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

.lifestyle-visual::before {
    content: "";
    position: absolute;
    top: -18px;
    left: -18px;
    right: 30px;
    bottom: 30px;
    border: 2px solid var(--c-moss);
    border-radius: var(--radius-lg);
    z-index: -1;
}

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

.lifestyle-text p {
    margin-bottom: 16px;
}

.lifestyle-stats {
    display: flex;
    gap: 30px;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--c-line);
}

.lifestyle-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--c-leaf-deep);
    margin-bottom: 4px;
}

.lifestyle-stat span {
    font-size: 0.85rem;
    color: var(--c-muted);
}

/* ===== FAQ ===== */

.faq-section {
    background: var(--c-bg);
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
}

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

.faq-q {
    width: 100%;
    background: none;
    border: 0;
    text-align: left;
    padding: 22px 50px 22px 0;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 1.18rem;
    color: var(--c-forest);
    position: relative;
    transition: color 0.2s ease;
}

.faq-q:hover { color: var(--c-leaf-deep); }

.faq-q::after {
    content: "+";
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    color: var(--c-leaf-deep);
    transition: transform 0.3s ease;
    line-height: 1;
}

.faq-item.is-open .faq-q::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.is-open .faq-a {
    max-height: 400px;
    padding-bottom: 22px;
}

.faq-a p {
    font-size: 0.97rem;
    padding-right: 40px;
}

/* ===== CTA BAND ===== */

.cta-band {
    background: var(--c-forest);
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: rgba(143, 185, 139, 0.18);
    top: -80px;
    right: -80px;
}

.cta-band::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(198, 221, 159, 0.12);
    bottom: -60px;
    left: 10%;
}

.cta-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 50px;
    align-items: center;
}

.cta-band h2 {
    color: #fff;
}

.cta-band p {
    color: rgba(255, 255, 255, 0.82);
    margin-top: 14px;
    font-size: 1.05rem;
}

.cta-band-actions {
    display: flex;
    gap: 14px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.btn-light {
    background: #fff;
    color: var(--c-forest);
}

.btn-light:hover {
    background: var(--c-bg-alt);
    color: var(--c-forest);
    transform: translateY(-1px);
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
}

/* ===== FOOTER ===== */

.site-footer {
    background: #19301a;
    color: #c8d4c4;
    padding: 70px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 16px;
}

.footer-col p {
    color: #a3b1a0;
    font-size: 0.93rem;
    line-height: 1.7;
}

.footer-col h4 {
    color: #fff;
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li { margin-bottom: 10px; }

.footer-col a {
    color: #a3b1a0;
    font-size: 0.93rem;
    transition: color 0.2s ease;
}

.footer-col a:hover { color: var(--c-accent); }

.footer-contact div {
    font-size: 0.92rem;
    margin-bottom: 10px;
    color: #a3b1a0;
}

.footer-contact strong { color: #fff; display: block; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 3px; font-weight: 600; }

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

/* ===== COOKIE BANNER ===== */

.cookie-banner {
    position: fixed;
    bottom: 22px;
    left: 22px;
    right: 22px;
    max-width: 720px;
    margin: 0 auto;
    background: var(--c-surface);
    border: 1px solid var(--c-line);
    border-radius: var(--radius-md);
    padding: 22px 24px;
    box-shadow: var(--shadow-lg);
    display: none;
    z-index: 200;
    align-items: center;
    gap: 20px;
}

.cookie-banner.is-visible {
    display: flex;
}

.cookie-banner p {
    font-size: 0.9rem;
    margin: 0;
    flex: 1;
}

.cookie-banner a { color: var(--c-leaf-deep); text-decoration: underline; }

.cookie-banner .btn {
    padding: 10px 22px;
    font-size: 0.88rem;
    flex-shrink: 0;
}

/* ===== INNER PAGE HEADER ===== */

.page-head {
    padding: 60px 0 50px;
    background: var(--c-bg-alt);
    border-bottom: 1px solid var(--c-line);
    text-align: center;
}

.page-head h1 {
    margin-bottom: 12px;
}

.breadcrumb {
    font-size: 0.85rem;
    color: var(--c-muted);
}

.breadcrumb a { color: var(--c-leaf-deep); }

/* ===== ABOUT PAGE ===== */

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.story-grid img {
    border-radius: var(--radius-lg);
    aspect-ratio: 4 / 5;
    object-fit: cover;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
}

.story-text h2 { margin-bottom: 18px; }
.story-text p { margin-bottom: 18px; }
.story-text h3 { margin-top: 36px; margin-bottom: 12px; color: var(--c-forest); }

.principles {
    background: var(--c-surface);
}

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

.principle {
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid var(--c-line);
    background: var(--c-bg);
}

.principle:nth-child(odd) { background: var(--c-bg-alt); border-color: transparent; }

.principle h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
    display: flex;
    align-items: baseline;
    gap: 14px;
}

.principle h3 span {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--c-moss);
    font-style: italic;
}

.principle p { font-size: 0.95rem; }

.sustain-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.sustain-text h2 { margin-bottom: 18px; }
.sustain-text p { margin-bottom: 16px; }

.sustain-list {
    list-style: none;
    margin-top: 22px;
}

.sustain-list li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 0.95rem;
    color: var(--c-ink);
}

.sustain-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    width: 14px;
    height: 2px;
    background: var(--c-leaf);
}

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

/* ===== CONTACT PAGE ===== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-block {
    background: var(--c-bg-alt);
    padding: 36px;
    border-radius: var(--radius-md);
}

.contact-info-block h3 { margin-bottom: 20px; }

.contact-info-block .ci {
    padding: 16px 0;
    border-bottom: 1px dashed var(--c-line);
}

.contact-info-block .ci:last-child { border-bottom: 0; }

.contact-info-block .ci small {
    display: block;
    font-size: 0.74rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--c-muted);
    margin-bottom: 4px;
    font-weight: 600;
}

.contact-info-block .ci strong, .contact-info-block .ci a {
    color: var(--c-forest);
    font-weight: 500;
    font-size: 1rem;
}

/* form */

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row.full { grid-column: 1 / -1; }

.form-row label {
    font-size: 0.84rem;
    color: var(--c-ink);
    font-weight: 500;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid var(--c-line);
    border-radius: 10px;
    background: var(--c-surface);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--c-ink);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--c-leaf);
    box-shadow: 0 0 0 3px rgba(143, 185, 139, 0.2);
}

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

.form-row .err {
    font-size: 0.8rem;
    color: #b14545;
    display: none;
}

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

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

.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--c-ink-soft);
}

.checkbox-row input { width: 16px; height: 16px; margin-top: 2px; }

.map-block {
    background: var(--c-bg-alt);
    border-radius: var(--radius-md);
    height: 320px;
    display: grid;
    place-items: center;
    color: var(--c-ink-soft);
    text-align: center;
    padding: 30px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--c-line);
}

.map-block::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(143, 185, 139, 0.2), transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(198, 221, 159, 0.25), transparent 45%);
    z-index: 0;
}

.map-block > * { position: relative; z-index: 1; }

.map-block h3 { margin-bottom: 6px; }

.hours-block {
    margin-top: 30px;
    background: var(--c-surface);
    border-radius: var(--radius-md);
    padding: 28px;
    border: 1px solid var(--c-line);
}

.hours-block h3 { margin-bottom: 16px; }

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.93rem;
    border-bottom: 1px dotted var(--c-line);
}

.hours-row:last-child { border-bottom: 0; }
.hours-row span:last-child { color: var(--c-ink); font-weight: 500; }

/* ===== SUCCESS PAGE ===== */

.success-wrap {
    min-height: 70vh;
    display: grid;
    place-items: center;
    padding: 80px 22px;
    text-align: center;
}

.success-card {
    max-width: 540px;
    background: var(--c-surface);
    padding: 60px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.success-check {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: var(--c-bg-alt);
    display: grid;
    place-items: center;
    margin: 0 auto 26px;
    color: var(--c-leaf-deep);
}

.success-check svg { width: 36px; height: 36px; }

.success-card h1 { margin-bottom: 14px; }
.success-card p { margin-bottom: 28px; font-size: 1.05rem; }

/* ===== LEGAL PAGES ===== */

.legal-wrap {
    max-width: 820px;
    margin: 0 auto;
    padding: 70px 22px 90px;
}

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

.legal-wrap h2:first-of-type { margin-top: 10px; }

.legal-wrap p,
.legal-wrap ul {
    margin-bottom: 16px;
    font-size: 0.97rem;
    line-height: 1.75;
}

.legal-wrap ul { padding-left: 22px; }
.legal-wrap li { margin-bottom: 8px; }

.legal-meta {
    background: var(--c-bg-alt);
    padding: 16px 22px;
    border-radius: var(--radius-md);
    font-size: 0.88rem;
    color: var(--c-ink-soft);
    margin-bottom: 30px;
}

/* ===== ENTRANCE ANIMATIONS ===== */

.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ===== RESPONSIVE ===== */

@media (max-width: 980px) {
    .hero-grid,
    .intro-grid,
    .product-card,
    .lifestyle-grid,
    .cta-inner,
    .story-grid,
    .sustain-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-grid img { position: static; }

    .info-grid { grid-template-columns: 1fr 1fr; }
    .info-tile:nth-child(2),
    .info-tile:nth-child(3) { margin-top: 0; }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .cta-band-actions { justify-content: flex-start; }

    section { padding: 70px 0; }

    .principles-grid { grid-template-columns: 1fr; }
}

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

    .nav-menu {
        position: fixed;
        top: 64px;
        right: 0;
        left: 0;
        background: var(--c-surface);
        flex-direction: column;
        align-items: flex-start;
        padding: 22px;
        gap: 16px;
        border-top: 1px solid var(--c-line);
        transform: translateY(-110%);
        transition: transform 0.3s ease;
        box-shadow: var(--shadow-md);
    }

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

    .hero { padding: 50px 0 60px; }
    .hero-badge { left: 12px; right: 12px; max-width: none; bottom: -28px; }

    .product-card-body { padding: 36px 28px; }
    .product-specs { grid-template-columns: 1fr; }

    .info-grid { grid-template-columns: 1fr; }

    .form-grid { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; }

    .lifestyle-stats { flex-direction: column; gap: 16px; }

    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
        text-align: left;
    }

    .cookie-banner .btn { width: 100%; }
}

@media (max-width: 460px) {
    .container { padding: 0 18px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { width: 100%; }
    .product-card-image { padding: 36px 20px; }
    .product-card-image img { max-width: 220px; }
}
