/* ========================================
   Novabira — Wellness Information Site
   Stylesheet
   ======================================== */

:root {
    --c-ink: #0c1e3a;
    --c-ink-soft: #1c3055;
    --c-deep: #0a2540;
    --c-mid: #2e6fb7;
    --c-blue: #4a90d9;
    --c-sky: #cfe4f7;
    --c-pale: #eaf3fb;
    --c-cream: #fafcfe;
    --c-line: #d9e4ef;
    --c-muted: #6b7c93;
    --c-accent: #1b4a85;
    --c-white: #ffffff;
    --c-soft-shadow: 0 10px 30px rgba(12, 30, 58, 0.06);
    --c-hover-shadow: 0 14px 38px rgba(12, 30, 58, 0.12);
    --r-sm: 6px;
    --r-md: 12px;
    --r-lg: 22px;
    --max: 1200px;
    --pad: clamp(18px, 4vw, 40px);
    --t-fast: 180ms ease;
    --t-mid: 320ms cubic-bezier(.2,.7,.2,1);
    --font-display: "Fraunces", "Cormorant Garamond", Georgia, serif;
    --font-body: "Manrope", "Helvetica Neue", Arial, 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);
    color: var(--c-ink);
    background: var(--c-cream);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a { color: var(--c-accent); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--c-mid); }

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

h1 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
h4 { font-size: 1.05rem; font-weight: 600; }

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

.wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--pad);
}

/* ========================================
   Top Strip
   ======================================== */
.top-strip {
    background: var(--c-deep);
    color: var(--c-sky);
    font-size: 0.83rem;
    padding: 9px 0;
    letter-spacing: 0.02em;
}

.top-strip .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-strip a { color: var(--c-sky); }
.top-strip a:hover { color: var(--c-white); }

.top-strip span { opacity: 0.9; }

/* ========================================
   Navigation
   ======================================== */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: saturate(160%) blur(10px);
    -webkit-backdrop-filter: saturate(160%) blur(10px);
    border-bottom: 1px solid var(--c-line);
}

.site-nav .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    padding-bottom: 18px;
}

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

.logo-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-mid), var(--c-blue));
    display: inline-block;
}

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

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

.nav-list a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--c-mid);
    transition: width var(--t-mid);
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    width: 38px;
    height: 38px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 0;
}

.nav-toggle span {
    display: block;
    height: 2px;
    width: 24px;
    background: var(--c-deep);
    border-radius: 1px;
    transition: transform var(--t-mid), opacity var(--t-mid);
    margin: 0 auto;
}

.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;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--r-md);
    font-weight: 600;
    font-size: 0.95rem;
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--c-deep);
    color: var(--c-white);
}

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

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--c-deep);
    color: var(--c-deep);
}

.btn-outline:hover {
    background: var(--c-deep);
    color: var(--c-white);
    transform: translateY(-2px);
}

.btn-light {
    background: var(--c-white);
    color: var(--c-deep);
    border: 1px solid var(--c-line);
}

.btn-light:hover {
    background: var(--c-pale);
}

/* ========================================
   Hero
   ======================================== */
.hero {
    position: relative;
    padding: clamp(50px, 8vw, 110px) 0 clamp(60px, 9vw, 130px);
    background: linear-gradient(180deg, var(--c-pale) 0%, var(--c-cream) 100%);
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -150px;
    right: -120px;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74, 144, 217, 0.18), transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -90px;
    left: -80px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46, 111, 183, 0.12), transparent 70%);
    pointer-events: none;
}

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

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--c-white);
    border: 1px solid var(--c-line);
    padding: 7px 16px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--c-accent);
    margin-bottom: 22px;
    box-shadow: var(--c-soft-shadow);
}

.hero-eyebrow::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--c-mid);
}

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

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

.hero-lede {
    font-size: 1.08rem;
    color: var(--c-ink-soft);
    margin-bottom: 32px;
    max-width: 520px;
}

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

.hero-visual {
    position: relative;
}

.hero-visual img {
    width: 100%;
    border-radius: var(--r-lg);
    box-shadow: 0 30px 70px rgba(12, 30, 58, 0.18);
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.hero-tag {
    position: absolute;
    bottom: 28px;
    left: -22px;
    background: var(--c-white);
    padding: 16px 22px;
    border-radius: var(--r-md);
    box-shadow: var(--c-hover-shadow);
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 250px;
}

.hero-tag-icon {
    width: 42px;
    height: 42px;
    background: var(--c-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-mid);
    flex-shrink: 0;
}

.hero-tag strong {
    display: block;
    font-size: 0.95rem;
    color: var(--c-deep);
    margin-bottom: 2px;
}

.hero-tag span {
    font-size: 0.78rem;
    color: var(--c-muted);
}

/* ========================================
   Section base
   ======================================== */
section {
    padding: clamp(60px, 8vw, 100px) 0;
}

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

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

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

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

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

/* ========================================
   Intro / Values
   ======================================== */
.intro {
    background: var(--c-white);
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 20px;
}

.value-card {
    background: var(--c-cream);
    border: 1px solid var(--c-line);
    padding: 32px 28px;
    border-radius: var(--r-md);
    transition: transform var(--t-mid), box-shadow var(--t-mid), border-color var(--t-mid);
    position: relative;
}

.value-card:nth-child(2) {
    transform: translateY(20px);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--c-soft-shadow);
    border-color: var(--c-sky);
}

.value-card:nth-child(2):hover {
    transform: translateY(16px);
}

.value-num {
    font-family: var(--font-display);
    font-size: 2.6rem;
    color: var(--c-blue);
    opacity: 0.35;
    line-height: 1;
    margin-bottom: 18px;
    display: block;
}

.value-card h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.value-card p {
    font-size: 0.95rem;
}

/* ========================================
   Product / Card
   ======================================== */
.product {
    background: linear-gradient(180deg, var(--c-cream) 0%, var(--c-pale) 100%);
}

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

.product-card {
    background: var(--c-white);
    border-radius: var(--r-lg);
    padding: 40px 36px;
    box-shadow: var(--c-soft-shadow);
    border: 1px solid var(--c-line);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(207, 228, 247, 0.7), transparent 70%);
    border-radius: 50%;
}

.product-image-wrap {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
}

.product-image-wrap img {
    max-width: 80%;
    max-height: 420px;
    width: auto;
    height: auto;
    filter: drop-shadow(0 24px 36px rgba(12, 30, 58, 0.18));
    transition: transform var(--t-mid);
}

.product-image-wrap:hover img {
    transform: translateY(-6px) rotate(-1deg);
}

.product-badge {
    position: absolute;
    top: 22px;
    left: 22px;
    background: var(--c-deep);
    color: var(--c-white);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    z-index: 2;
}

.product-info h2 { margin-bottom: 14px; }

.product-info > p {
    margin-bottom: 24px;
    font-size: 1.02rem;
}

.product-meta {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 30px;
    padding: 22px;
    background: var(--c-cream);
    border-radius: var(--r-md);
    border: 1px solid var(--c-line);
}

.product-meta-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.product-meta-row svg {
    width: 22px;
    height: 22px;
    color: var(--c-mid);
    flex-shrink: 0;
    margin-top: 2px;
}

.product-meta-row strong {
    display: block;
    font-size: 0.92rem;
    color: var(--c-deep);
    margin-bottom: 2px;
}

.product-meta-row span {
    font-size: 0.88rem;
    color: var(--c-muted);
}

/* ========================================
   FAQ
   ======================================== */
.faq {
    background: var(--c-white);
}

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

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

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

.faq-q {
    width: 100%;
    background: transparent;
    border: none;
    text-align: left;
    padding: 24px 0;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--c-deep);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: color var(--t-fast);
}

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

.faq-icon {
    width: 28px;
    height: 28px;
    background: var(--c-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-mid);
    flex-shrink: 0;
    transition: transform var(--t-mid), background var(--t-mid);
    font-size: 1.1rem;
    line-height: 1;
}

.faq-item.is-open .faq-icon {
    transform: rotate(45deg);
    background: var(--c-deep);
    color: var(--c-white);
}

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

.faq-a-inner {
    padding: 0 0 26px;
    font-size: 0.98rem;
    color: var(--c-ink-soft);
    max-width: 90%;
}

/* ========================================
   Lifestyle / Split section
   ======================================== */
.lifestyle {
    background: linear-gradient(180deg, var(--c-pale) 0%, var(--c-cream) 100%);
}

.lifestyle-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 6vw, 70px);
    align-items: center;
}

.lifestyle-img {
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--c-hover-shadow);
    aspect-ratio: 5 / 4;
}

.lifestyle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 800ms ease;
}

.lifestyle-img:hover img {
    transform: scale(1.04);
}

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

.lifestyle-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px dashed var(--c-line);
    color: var(--c-ink-soft);
}

.lifestyle-list li:last-child { border-bottom: none; }

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

/* ========================================
   CTA Strip
   ======================================== */
.cta-strip {
    background: var(--c-deep);
    color: var(--c-white);
    padding: clamp(50px, 7vw, 80px) 0;
    position: relative;
    overflow: hidden;
}

.cta-strip::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -50px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(74, 144, 217, 0.4), transparent 70%);
    border-radius: 50%;
}

.cta-strip .wrap {
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.cta-strip h2 { color: var(--c-white); margin-bottom: 10px; }
.cta-strip p { color: var(--c-sky); font-size: 1.02rem; }

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

/* ========================================
   Footer
   ======================================== */
.footer {
    background: #061a30;
    color: #b8cce3;
    padding: 70px 0 30px;
}

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

.footer h4 {
    color: var(--c-white);
    margin-bottom: 18px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-brand .logo {
    color: var(--c-white);
    margin-bottom: 16px;
}

.footer-brand p {
    color: #8aa3c0;
    font-size: 0.92rem;
    max-width: 320px;
}

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

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

.footer-list a, .footer-info a {
    color: #b8cce3;
    font-size: 0.92rem;
}

.footer-list a:hover, .footer-info a:hover {
    color: var(--c-white);
}

.footer-info {
    font-size: 0.92rem;
    line-height: 1.8;
}

.footer-info strong {
    color: var(--c-white);
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
}

.footer-info p { color: #b8cce3; margin-bottom: 12px; }

.footer-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.82rem;
    color: #7a90aa;
}

/* ========================================
   Inner page hero
   ======================================== */
.page-head {
    background: linear-gradient(180deg, var(--c-pale) 0%, var(--c-cream) 100%);
    padding: clamp(60px, 7vw, 90px) 0 clamp(50px, 6vw, 70px);
    position: relative;
    overflow: hidden;
}

.page-head::after {
    content: "";
    position: absolute;
    bottom: -80px;
    right: -60px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(74, 144, 217, 0.15), transparent 70%);
    border-radius: 50%;
}

.page-head .wrap {
    position: relative;
    z-index: 1;
    max-width: 820px;
}

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

.page-head p {
    font-size: 1.08rem;
    max-width: 620px;
}

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

.breadcrumb a { color: var(--c-muted); }
.breadcrumb a:hover { color: var(--c-accent); }

/* ========================================
   About page
   ======================================== */
.story {
    background: var(--c-white);
}

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

.story-img {
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--c-soft-shadow);
    aspect-ratio: 4 / 5;
    position: sticky;
    top: 100px;
}

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

.story-text h2 + p {
    margin-top: 18px;
}

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

.philosophy {
    background: linear-gradient(180deg, var(--c-pale) 0%, var(--c-cream) 100%);
}

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

.phil-card {
    background: var(--c-white);
    padding: 32px 28px;
    border-radius: var(--r-md);
    border: 1px solid var(--c-line);
    transition: box-shadow var(--t-mid), transform var(--t-mid);
}

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

.phil-card h3 {
    margin-bottom: 12px;
    color: var(--c-deep);
}

.phil-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--c-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-mid);
    margin-bottom: 20px;
}

.standards {
    background: var(--c-white);
}

.standards-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.standard-item {
    text-align: left;
    padding: 24px 0;
    border-top: 2px solid var(--c-deep);
}

.standard-item .num {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--c-deep);
    display: block;
    margin-bottom: 8px;
}

.standard-item h4 {
    margin-bottom: 8px;
    font-size: 1.02rem;
}

.standard-item p {
    font-size: 0.9rem;
}

.sustain {
    background: linear-gradient(180deg, var(--c-pale) 0%, var(--c-cream) 100%);
}

.sustain-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(30px, 6vw, 70px);
    align-items: center;
}

.sustain-img {
    border-radius: var(--r-lg);
    overflow: hidden;
    aspect-ratio: 5 / 4;
    box-shadow: var(--c-soft-shadow);
}

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

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

.contact-form {
    background: var(--c-white);
    padding: 38px;
    border-radius: var(--r-lg);
    box-shadow: var(--c-soft-shadow);
    border: 1px solid var(--c-line);
}

.contact-form h2 {
    margin-bottom: 8px;
    font-size: 1.6rem;
}

.contact-form > p {
    margin-bottom: 26px;
    font-size: 0.95rem;
}

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

.field {
    margin-bottom: 18px;
}

.field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--c-deep);
    margin-bottom: 6px;
}

.field input, .field textarea, .field select {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--c-line);
    border-radius: var(--r-sm);
    background: var(--c-cream);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--c-deep);
    transition: border-color var(--t-fast), background var(--t-fast);
}

.field input:focus, .field textarea:focus, .field select:focus {
    outline: none;
    border-color: var(--c-mid);
    background: var(--c-white);
    box-shadow: 0 0 0 3px rgba(74, 144, 217, 0.15);
}

.field textarea {
    min-height: 140px;
    resize: vertical;
    font-family: var(--font-body);
}

.field-error {
    color: #c63a3a;
    font-size: 0.8rem;
    margin-top: 5px;
    display: none;
}

.field.has-error input,
.field.has-error textarea {
    border-color: #c63a3a;
    background: #fff7f7;
}

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

.consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 22px 0;
    font-size: 0.85rem;
    color: var(--c-muted);
    line-height: 1.5;
}

.consent input {
    margin-top: 3px;
    accent-color: var(--c-mid);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

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

.info-card {
    background: var(--c-white);
    padding: 26px 24px;
    border-radius: var(--r-md);
    border: 1px solid var(--c-line);
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: border-color var(--t-fast);
}

.info-card:hover {
    border-color: var(--c-sky);
}

.info-icon {
    width: 44px;
    height: 44px;
    background: var(--c-pale);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-mid);
    flex-shrink: 0;
}

.info-card h4 {
    color: var(--c-deep);
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.info-card p, .info-card a {
    color: var(--c-ink-soft);
    font-size: 0.92rem;
    line-height: 1.6;
}

.info-card a:hover { color: var(--c-accent); }

.map-placeholder {
    margin-top: 0;
    background: var(--c-white);
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--c-line);
    height: 320px;
    background: linear-gradient(135deg, var(--c-pale), var(--c-sky));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(46, 111, 183, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(46, 111, 183, 0.08) 1px, transparent 1px);
    background-size: 30px 30px;
}

.map-pin {
    background: var(--c-white);
    padding: 18px 24px;
    border-radius: var(--r-md);
    box-shadow: var(--c-hover-shadow);
    text-align: center;
    z-index: 1;
}

.map-pin svg { color: var(--c-mid); margin-bottom: 8px; }
.map-pin strong { display: block; color: var(--c-deep); margin-bottom: 2px; }
.map-pin span { font-size: 0.85rem; color: var(--c-muted); }

/* ========================================
   Success page
   ======================================== */
.success-wrap {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(180deg, var(--c-pale) 0%, var(--c-cream) 100%);
}

.success-card {
    max-width: 560px;
    background: var(--c-white);
    padding: 60px 40px;
    border-radius: var(--r-lg);
    box-shadow: var(--c-soft-shadow);
    border: 1px solid var(--c-line);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--c-pale);
    border-radius: 50%;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-mid);
}

.success-card h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    margin-bottom: 16px;
}

.success-card p {
    color: var(--c-ink-soft);
    margin-bottom: 28px;
}

/* ========================================
   Legal pages
   ======================================== */
.legal {
    background: var(--c-white);
    padding-top: 60px;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.45rem;
    margin: 36px 0 14px;
    color: var(--c-deep);
}

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

.legal-content p, .legal-content ul {
    margin-bottom: 14px;
    font-size: 0.98rem;
    color: var(--c-ink-soft);
    line-height: 1.75;
}

.legal-content ul {
    padding-left: 22px;
}

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

.legal-meta {
    font-size: 0.85rem;
    color: var(--c-muted);
    padding: 14px 18px;
    background: var(--c-pale);
    border-radius: var(--r-sm);
    margin-bottom: 30px;
    border-left: 3px solid var(--c-mid);
}

/* ========================================
   Cookie banner
   ======================================== */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 520px;
    background: var(--c-white);
    padding: 22px 24px;
    border-radius: var(--r-md);
    box-shadow: 0 20px 50px rgba(12, 30, 58, 0.18);
    border: 1px solid var(--c-line);
    z-index: 100;
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--t-mid), opacity var(--t-mid);
}

.cookie-banner.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.cookie-banner h4 {
    margin-bottom: 6px;
    font-size: 1rem;
    color: var(--c-deep);
}

.cookie-banner p {
    font-size: 0.85rem;
    margin-bottom: 14px;
    color: var(--c-ink-soft);
}

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

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

/* ========================================
   Animations
   ======================================== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-eyebrow, .hero h1, .hero-lede, .hero-actions {
    animation: fadeUp 700ms ease both;
}

.hero h1 { animation-delay: 80ms; }
.hero-lede { animation-delay: 160ms; }
.hero-actions { animation-delay: 240ms; }

.hero-visual { animation: fadeUp 900ms ease 200ms both; }

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

    .cta-strip .btn-light { justify-self: start; }

    .story-img { position: static; }

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

    .value-card:nth-child(2) { transform: none; }
    .value-card:nth-child(2):hover { transform: translateY(-4px); }

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

    .standards-row {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .hero-tag {
        left: 12px;
        bottom: 14px;
    }
}

@media (max-width: 720px) {
    .nav-list {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--c-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 24px var(--pad);
        gap: 4px;
        border-bottom: 1px solid var(--c-line);
        box-shadow: 0 14px 30px rgba(12, 30, 58, 0.08);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: transform var(--t-mid), opacity var(--t-mid);
    }

    .nav-list.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

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

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

    .nav-toggle { display: flex; align-items: center; }

    .top-strip {
        font-size: 0.78rem;
        padding: 7px 0;
    }

    .top-strip .wrap {
        justify-content: center;
        text-align: center;
    }

    .top-strip span:first-child { display: none; }

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

    .product-card {
        padding: 28px 22px;
    }

    .product-image-wrap {
        min-height: 300px;
    }

    .hero-tag {
        position: static;
        margin-top: 16px;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .standards-row {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }

    .cookie-banner {
        bottom: 12px;
        left: 12px;
        right: 12px;
    }
}
