/* ============================================
   Insuvit — Vitamela
   Stylesheet
   ============================================ */

:root {
    --color-bg: #f6f9fc;
    --color-bg-soft: #eef4fb;
    --color-surface: #ffffff;
    --color-line: #dde6f0;
    --color-line-soft: #e9eff6;

    --color-ink: #0b2545;
    --color-ink-soft: #2a3f5f;
    --color-muted: #5a6b85;

    --color-accent: #0a73c8;
    --color-accent-deep: #064a86;
    --color-accent-bright: #2da6ff;
    --color-azure: #aedcff;
    --color-azure-soft: #e0f0ff;

    --shadow-sm: 0 1px 2px rgba(11, 37, 69, 0.04), 0 1px 3px rgba(11, 37, 69, 0.05);
    --shadow-md: 0 4px 10px rgba(11, 37, 69, 0.06), 0 8px 24px rgba(11, 37, 69, 0.05);
    --shadow-lg: 0 18px 40px rgba(11, 37, 69, 0.10);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;

    --container: 1180px;
    --gutter: clamp(20px, 4vw, 40px);

    --font-display: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
    --font-body: "Manrope", "Segoe UI", Roboto, system-ui, -apple-system, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--color-bg);
    color: var(--color-ink);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

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

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

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

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

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--color-ink);
    line-height: 1.18;
    letter-spacing: -0.01em;
    margin: 0 0 0.6em;
    font-weight: 600;
}

h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }

p {
    margin: 0 0 1em;
    color: var(--color-ink-soft);
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
}

.eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-accent);
    padding: 6px 14px;
    background: var(--color-azure-soft);
    border-radius: 999px;
    margin-bottom: 18px;
}

.section {
    padding: clamp(60px, 8vw, 110px) 0;
}

.section--tight {
    padding: clamp(40px, 6vw, 70px) 0;
}

.lede {
    font-size: 1.1rem;
    color: var(--color-muted);
    max-width: 56ch;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease;
    border: 1px solid transparent;
}

.btn--primary {
    background: var(--color-accent-deep);
    color: #fff;
}

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

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

.btn--ghost:hover {
    background: var(--color-surface);
    border-color: var(--color-accent);
    color: var(--color-accent-deep);
}

/* ============================================
   Header
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(246, 249, 252, 0.85);
    backdrop-filter: saturate(140%) blur(12px);
    -webkit-backdrop-filter: saturate(140%) blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
    border-bottom-color: var(--color-line);
    background: rgba(246, 249, 252, 0.95);
}

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

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

.brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-deep) 100%);
    display: grid;
    place-items: center;
    color: #fff;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0;
    box-shadow: 0 4px 12px rgba(10, 115, 200, 0.28);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 34px;
    list-style: none;
    margin: 0;
    padding: 0;
}

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

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

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

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid var(--color-line);
    background: var(--color-surface);
    align-items: center;
    justify-content: center;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--color-ink);
    position: relative;
    transition: background 0.2s ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    background: var(--color-ink);
    transition: transform 0.25s ease;
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span::after { transform: translateY(-6px) rotate(-45deg); }

/* ============================================
   Hero
   ============================================ */
.hero {
    position: relative;
    overflow: hidden;
    padding: clamp(60px, 8vw, 100px) 0 clamp(60px, 8vw, 110px);
}

.hero::before {
    content: "";
    position: absolute;
    top: -160px;
    right: -120px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle at center, rgba(45, 166, 255, 0.18), transparent 65%);
    z-index: 0;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -200px;
    left: -160px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle at center, rgba(174, 220, 255, 0.32), transparent 65%);
    z-index: 0;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(30px, 5vw, 70px);
    align-items: center;
}

.hero-headline {
    font-size: clamp(2.3rem, 5vw, 3.6rem);
    margin-bottom: 22px;
}

.hero-headline em {
    font-style: italic;
    color: var(--color-accent-deep);
}

.hero-text {
    font-size: 1.1rem;
    color: var(--color-ink-soft);
    max-width: 52ch;
    margin-bottom: 30px;
}

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

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

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

.hero-meta-item strong {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-ink);
}

.hero-meta-item span {
    font-size: 0.85rem;
    color: var(--color-muted);
}

.hero-visual {
    position: relative;
}

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

.hero-badge {
    position: absolute;
    left: -18px;
    bottom: 38px;
    background: var(--color-surface);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-md);
    max-width: 250px;
}

.hero-badge-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-accent);
    box-shadow: 0 0 0 6px rgba(10, 115, 200, 0.15);
}

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

/* ============================================
   Intro section
   ============================================ */
.intro {
    background: var(--color-surface);
    border-top: 1px solid var(--color-line-soft);
    border-bottom: 1px solid var(--color-line-soft);
}

.intro-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(30px, 5vw, 80px);
    align-items: start;
}

.intro-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 5 / 6;
}

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

.intro-points {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
    display: grid;
    gap: 18px;
}

.intro-points li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 18px;
    background: var(--color-bg-soft);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--color-accent);
}

.intro-points li svg {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    color: var(--color-accent);
    margin-top: 2px;
}

.intro-points strong {
    display: block;
    color: var(--color-ink);
    margin-bottom: 4px;
}

.intro-points span {
    font-size: 0.93rem;
    color: var(--color-muted);
}

/* ============================================
   Product section
   ============================================ */
.product {
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-azure-soft) 100%);
    position: relative;
    overflow: hidden;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 5vw, 80px);
    align-items: center;
}

.product-visual {
    position: relative;
    display: grid;
    place-items: center;
}

.product-visual::before {
    content: "";
    position: absolute;
    inset: 10%;
    background: radial-gradient(circle, rgba(45, 166, 255, 0.18), transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.product-visual img {
    position: relative;
    z-index: 1;
    max-width: 420px;
    width: 100%;
    filter: drop-shadow(0 30px 50px rgba(11, 37, 69, 0.18));
}

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

.product-feature {
    background: var(--color-surface);
    padding: 18px;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-line-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.product-feature h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--color-ink);
}

.product-feature p {
    font-size: 0.88rem;
    margin: 0;
    color: var(--color-muted);
    line-height: 1.55;
}

/* ============================================
   Ingredients / Info section
   ============================================ */
.ingredients-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 36px;
}

.ingredient {
    background: var(--color-surface);
    border: 1px solid var(--color-line-soft);
    border-radius: var(--radius-md);
    padding: 24px;
    position: relative;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.ingredient:hover {
    border-color: var(--color-accent);
    transform: translateY(-2px);
}

.ingredient-num {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--color-azure);
    line-height: 1;
    margin-bottom: 10px;
    display: block;
}

.ingredient h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.ingredient p {
    font-size: 0.93rem;
    margin: 0;
    color: var(--color-muted);
}

/* ============================================
   Lifestyle section
   ============================================ */
.lifestyle {
    background: var(--color-ink);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.lifestyle::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(45, 166, 255, 0.28), transparent 65%);
}

.lifestyle h2,
.lifestyle h3 {
    color: #fff;
}

.lifestyle p {
    color: rgba(255, 255, 255, 0.78);
}

.lifestyle .eyebrow {
    background: rgba(45, 166, 255, 0.18);
    color: var(--color-azure);
}

.lifestyle-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 5vw, 60px);
    align-items: center;
}

.lifestyle-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

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

.lifestyle-pillars {
    display: grid;
    gap: 22px;
    margin-top: 30px;
}

.lifestyle-pillar {
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
}

.lifestyle-pillar h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.lifestyle-pillar p {
    font-size: 0.93rem;
    margin: 0;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
    margin-top: 40px;
    max-width: 820px;
}

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

.faq-item:first-child {
    border-top: 1px solid var(--color-line);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-ink);
    font-family: var(--font-body);
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--color-accent-deep);
}

.faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--color-azure-soft);
    color: var(--color-accent-deep);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: transform 0.3s ease, background 0.2s ease;
    font-size: 1.2rem;
    line-height: 1;
}

.faq-item.is-open .faq-icon {
    transform: rotate(45deg);
    background: var(--color-accent);
    color: #fff;
}

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

.faq-answer-inner {
    padding: 0 0 22px;
    color: var(--color-ink-soft);
    font-size: 0.98rem;
    max-width: 70ch;
}

/* ============================================
   CTA band
   ============================================ */
.cta-band {
    background: linear-gradient(135deg, var(--color-accent-deep) 0%, var(--color-accent) 100%);
    color: #fff;
    border-radius: var(--radius-xl);
    padding: clamp(40px, 6vw, 70px);
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 30px;
    align-items: center;
    margin: 0 var(--gutter);
    box-shadow: 0 30px 60px rgba(6, 74, 134, 0.25);
}

.cta-band h2 {
    color: #fff;
    margin-bottom: 14px;
}

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

.cta-band-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.cta-band .btn--primary {
    background: #fff;
    color: var(--color-accent-deep);
}

.cta-band .btn--primary:hover {
    background: var(--color-azure-soft);
    color: var(--color-accent-deep);
}

.cta-band-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
    background: var(--color-ink);
    color: rgba(255, 255, 255, 0.72);
    padding: 70px 0 30px;
    margin-top: 90px;
}

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

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

.footer-about {
    font-size: 0.92rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.65);
    max-width: 36ch;
}

.footer-heading {
    color: #fff;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.93rem;
}

.footer-links a:hover {
    color: var(--color-azure);
}

.footer-contact {
    display: grid;
    gap: 12px;
    font-size: 0.93rem;
    color: rgba(255, 255, 255, 0.72);
}

.footer-contact strong {
    color: #fff;
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}

/* ============================================
   Cookie banner
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 18px;
    left: 18px;
    right: 18px;
    max-width: 480px;
    margin: 0 auto;
    background: var(--color-surface);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    padding: 20px 22px;
    box-shadow: var(--shadow-lg);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transform: translateY(140%);
    transition: transform 0.4s ease;
}

.cookie-banner.is-visible {
    transform: translateY(0);
}

.cookie-banner p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--color-ink-soft);
}

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

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

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

/* ============================================
   About page
   ============================================ */
.page-hero {
    padding: clamp(60px, 8vw, 100px) 0 clamp(40px, 6vw, 60px);
    background: var(--color-bg-soft);
    border-bottom: 1px solid var(--color-line-soft);
}

.page-hero h1 {
    margin-bottom: 16px;
}

.page-hero p {
    max-width: 60ch;
    font-size: 1.08rem;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 5vw, 70px);
    align-items: start;
}

.story-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 4 / 5;
}

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

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 50px;
}

.value-card {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    padding: 28px;
    border: 1px solid var(--color-line-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.value-card-icon {
    width: 48px;
    height: 48px;
    background: var(--color-azure-soft);
    border-radius: 12px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    color: var(--color-accent-deep);
}

.value-card-icon svg {
    width: 24px;
    height: 24px;
}

.value-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

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

.sustain-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(30px, 5vw, 60px);
    align-items: center;
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: clamp(28px, 4vw, 50px);
    border: 1px solid var(--color-line-soft);
}

.sustain-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

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

.sustain-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    display: grid;
    gap: 12px;
}

.sustain-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.95rem;
    color: var(--color-ink-soft);
}

.sustain-list li::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    margin-top: 9px;
    flex-shrink: 0;
}

/* ============================================
   Contact page
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(30px, 5vw, 60px);
    align-items: start;
}

.contact-form {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: clamp(28px, 4vw, 44px);
    border: 1px solid var(--color-line-soft);
    box-shadow: var(--shadow-sm);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.form-row .form-field {
    margin-bottom: 0;
}

.form-field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-ink);
    letter-spacing: 0.02em;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-sm);
    font: inherit;
    font-size: 0.95rem;
    color: var(--color-ink);
    background: var(--color-bg);
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    outline: none;
    border-color: var(--color-accent);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(10, 115, 200, 0.10);
}

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--color-muted);
    margin: 12px 0 22px;
}

.form-checkbox input {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    accent-color: var(--color-accent);
}

.form-error {
    color: #c53030;
    font-size: 0.82rem;
    display: none;
}

.form-field.has-error input,
.form-field.has-error textarea {
    border-color: #c53030;
}

.form-field.has-error .form-error {
    display: block;
}

.contact-info {
    display: grid;
    gap: 22px;
}

.contact-card {
    background: var(--color-surface);
    border: 1px solid var(--color-line-soft);
    border-radius: var(--radius-md);
    padding: 24px;
}

.contact-card h3 {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-accent-deep);
    margin-bottom: 12px;
}

.contact-card p {
    margin: 0;
    color: var(--color-ink);
    font-size: 1rem;
}

.contact-card a {
    color: var(--color-ink);
    font-weight: 500;
}

.contact-card a:hover {
    color: var(--color-accent-deep);
}

.map-placeholder {
    margin-top: 50px;
    background: var(--color-bg-soft);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-line-soft);
    aspect-ratio: 21 / 9;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(174, 220, 255, 0.18) 1px, transparent 1px) 0 0 / 40px 40px,
        linear-gradient(90deg, rgba(174, 220, 255, 0.18) 1px, transparent 1px) 0 0 / 40px 40px;
}

.map-pin {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--color-surface);
    padding: 16px 22px;
    border-radius: 999px;
    box-shadow: var(--shadow-md);
}

.map-pin-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--color-accent);
    box-shadow: 0 0 0 6px rgba(10, 115, 200, 0.18);
}

.map-pin span {
    font-size: 0.95rem;
    color: var(--color-ink);
}

/* ============================================
   Success page
   ============================================ */
.success-screen {
    min-height: 70vh;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 80px var(--gutter);
}

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

.success-icon {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-deep) 100%);
    color: #fff;
    display: grid;
    place-items: center;
    margin: 0 auto 24px;
    box-shadow: 0 12px 28px rgba(10, 115, 200, 0.30);
}

.success-icon svg {
    width: 38px;
    height: 38px;
}

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

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

/* ============================================
   Legal pages
   ============================================ */
.legal {
    max-width: 820px;
    margin: 0 auto;
}

.legal h2 {
    margin-top: 40px;
    margin-bottom: 14px;
}

.legal h2:first-child {
    margin-top: 0;
}

.legal p,
.legal li {
    color: var(--color-ink-soft);
    font-size: 0.98rem;
}

.legal ul {
    padding-left: 20px;
    margin-bottom: 18px;
}

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

.legal-updated {
    font-size: 0.85rem;
    color: var(--color-muted);
    margin-bottom: 40px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--color-line-soft);
}

/* ============================================
   Reveal animation
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 960px) {
    .hero-grid,
    .intro-grid,
    .product-grid,
    .lifestyle-grid,
    .story-grid,
    .sustain-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        order: -1;
        max-width: 460px;
        margin: 0 auto;
    }

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

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

    .cta-band {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .cta-band-actions {
        align-items: flex-start;
    }
}

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

    .nav-menu {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        background: var(--color-surface);
        border-top: 1px solid var(--color-line);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 14px 24px 28px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, padding 0.35s ease;
        box-shadow: var(--shadow-md);
    }

    .nav-menu.is-open {
        max-height: 80vh;
        padding: 14px 24px 28px;
    }

    .nav-menu li {
        border-bottom: 1px solid var(--color-line-soft);
    }

    .nav-menu li:last-child {
        border-bottom: 0;
    }

    .nav-menu a {
        display: block;
        padding: 14px 0;
        font-size: 1rem;
    }

    .nav-menu a::after {
        display: none;
    }

    .nav-cta {
        display: none;
    }

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

    .form-row .form-field {
        margin-bottom: 16px;
    }

    .ingredients-list,
    .product-features {
        grid-template-columns: 1fr;
    }

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

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

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: -22px;
    }
}
