/* ============================================================
   Pure Protte — Bold Graphic Identity 3.0
   Palette: mint / dark forest green accents
   Fonts: Bricolage Grotesque (display) + Inter (body)
   ============================================================ */

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

:root {
    /* === Color system === */
    --bone: #f3f8f5;          /* base background */
    --bone-2: #e3efe8;        /* deeper mint block */
    --surface: #fafffc;       /* cards */
    --ink: #0f2922;           /* dark forest ink */
    --ink-2: #1a3d32;
    --espresso: #0d241c;      /* dark sections */
    --espresso-2: #081a14;

    --coral: #1f6b47;         /* primary accent — dark green */
    --coral-dark: #185a3a;
    --coral-soft: #d0e8d8;
    --butter: #3d8b62;        /* secondary accent — forest green */
    --butter-soft: #dceee4;

    --text: #2a4538;          /* body text */
    --text-strong: #0f2922;
    --text-muted: #5a7a6a;
    --line: #0f2922;          /* graphic borders */
    --line-soft: #c5d9ce;

    --white: #ffffff;
    --error: #d0604a;

    --font-display: 'Bricolage Grotesque', 'Segoe UI', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --shadow-pop: 5px 5px 0 var(--ink);
    --shadow-pop-lg: 9px 9px 0 var(--ink);
    --shadow-soft: 0 14px 36px rgba(15, 41, 34, 0.12);

    --r-sm: 10px;
    --r-md: 18px;
    --r-lg: 26px;
    --r-xl: 34px;
    --r-full: 999px;

    --container: 1260px;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --t: 0.4s var(--ease);
}

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

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--bone);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a { color: var(--ink); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--coral-dark); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.02;
    color: var(--text-strong);
    letter-spacing: -0.025em;
}

h1 { font-size: clamp(2.8rem, 6.5vw, 5.4rem); font-weight: 800; }
h2 { font-size: clamp(2.1rem, 4.6vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }
ul, ol { padding-left: 1.4rem; margin-bottom: 1rem; }

::selection { background-color: var(--coral); color: var(--white); }

/* ============================================================
   Layout
   ============================================================ */

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
    position: relative;
}

.section { padding: clamp(68px, 9vw, 120px) 0; position: relative; }

.section--cream { background-color: var(--bone); }
.section--white { background-color: var(--surface); }
.section--beige { background-color: var(--bone-2); }

.section--primary {
    background-color: var(--espresso);
    color: rgba(255, 255, 255, 0.82);
    overflow: hidden;
}
.section--primary h1,
.section--primary h2,
.section--primary h3 { color: var(--white); }

.section__header { max-width: 740px; margin: 0 auto clamp(46px, 6vw, 76px); }

.section__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-body);
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--ink);
    background-color: var(--butter);
    padding: 7px 14px;
    border: 1.5px solid var(--ink);
    border-radius: var(--r-full);
    margin-bottom: 24px;
}

.section__title { margin-bottom: 22px; }

.section__lead { font-size: 1.18rem; color: var(--text); line-height: 1.65; }

/* centered header variant */
.section__header { text-align: center; }
.section__header .section__eyebrow { margin-left: auto; margin-right: auto; }

/* ============================================================
   Ad banner
   ============================================================ */

.ad-banner {
    background-color: var(--coral);
    color: var(--white);
    text-align: center;
    padding: 8px 16px;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.42em;
    text-transform: uppercase;
}

/* ============================================================
   Header
   ============================================================ */

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 14px 0;
    background-color: var(--bone);
    border-bottom: 1.5px solid var(--ink);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.04em;
}
.logo:hover { color: var(--ink); }

.logo__mark {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: block;
    transition: transform var(--t);
}
.logo:hover .logo__mark { transform: rotate(-8deg) scale(1.05); }

.nav { display: flex; align-items: center; gap: 34px; }

.nav__list { display: flex; list-style: none; gap: 4px; margin: 0; padding: 0; }

.nav__link {
    color: var(--ink);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 9px 15px;
    border-radius: var(--r-full);
    border: 1.5px solid transparent;
    transition: background-color var(--t), border-color var(--t), color var(--t);
}
.nav__link:hover { background-color: var(--coral-soft); border-color: var(--ink); }
.nav__link--active { background-color: var(--coral); color: var(--white); border-color: var(--ink); }

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 46px;
    height: 46px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    z-index: 101;
}
.menu-toggle span { display: block; width: 26px; height: 2.5px; border-radius: 2px; background-color: var(--ink); transition: var(--t); }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   Buttons
   ============================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 15px 30px;
    font-family: var(--font-body);
    font-size: 0.98rem;
    font-weight: 700;
    border-radius: var(--r-full);
    border: 1.5px solid var(--ink);
    cursor: pointer;
    line-height: 1;
    white-space: nowrap;
    transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background-color var(--t), color var(--t);
}

.btn--primary { background-color: var(--coral); color: var(--white); box-shadow: var(--shadow-pop); }
.btn--primary:hover { background-color: var(--coral-dark); color: var(--white); transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--ink); }
.btn--primary:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }

.btn--accent { background-color: var(--butter); color: var(--white); box-shadow: var(--shadow-pop); }
.btn--accent:hover { background-color: #347a55; color: var(--white); transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--ink); }
.btn--accent:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }

.btn--outline { background-color: transparent; color: var(--ink); }
.btn--outline:hover { background-color: var(--ink); color: var(--bone); transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--coral); }

.btn--outline-white { background-color: transparent; color: var(--white); border-color: var(--white); }
.btn--outline-white:hover { background-color: var(--white); color: var(--ink); transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--coral); }

.btn--lg { padding: 19px 40px; font-size: 1.06rem; }

/* ============================================================
   Hero
   ============================================================ */

.hero {
    position: relative;
    padding: clamp(44px, 6vw, 86px) 0 clamp(64px, 9vw, 110px);
    background-color: var(--bone);
    overflow: hidden;
}

/* decorative dotted/blob accents */
.hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 420px;
    height: 420px;
    background-color: var(--butter-soft);
    border-radius: 50%;
    z-index: 0;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: clamp(36px, 5vw, 76px);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--white);
    border: 1.5px solid var(--ink);
    padding: 9px 18px;
    border-radius: var(--r-full);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 28px;
    box-shadow: 3px 3px 0 var(--coral);
}
.hero__eyebrow::before { content: ''; width: 9px; height: 9px; background-color: var(--coral); border-radius: 50%; }

.hero__title { margin-bottom: 26px; }
.hero__title em {
    font-style: normal;
    color: var(--coral);
    position: relative;
    white-space: nowrap;
}
.hero__title em::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.06em;
    height: 0.16em;
    background-color: var(--butter);
    z-index: -1;
}

.hero__lead { font-size: 1.2rem; color: var(--text); margin-bottom: 36px; max-width: 540px; }

.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 42px; }

.hero__features {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 28px;
    padding-top: 30px;
    border-top: 1.5px dashed var(--line-soft);
}
.hero__feature { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; color: var(--text-strong); font-weight: 600; }
.hero__feature svg {
    width: 22px; height: 22px;
    color: var(--white);
    background-color: var(--coral);
    border: 1.5px solid var(--ink);
    border-radius: 50%;
    padding: 3px;
    flex-shrink: 0;
}

.hero__visual { position: relative; }

.hero__image {
    width: 100%;
    border-radius: var(--r-xl);
    border: 2px solid var(--ink);
    box-shadow: var(--shadow-pop-lg);
    aspect-ratio: 4/5;
    object-fit: cover;
    background-color: var(--coral-soft);
    position: relative;
    z-index: 1;
}

.hero__badge {
    position: absolute;
    background-color: var(--white);
    padding: 13px 18px;
    border-radius: var(--r-md);
    border: 1.5px solid var(--ink);
    box-shadow: 4px 4px 0 var(--ink);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
}
.hero__badge--top { top: 30px; left: -30px; transform: rotate(-4deg); }
.hero__badge--bottom { bottom: 50px; right: -24px; transform: rotate(3deg); background-color: var(--butter); }

.hero__badge-icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    background-color: var(--coral-soft);
    border: 1.5px solid var(--ink);
    display: flex; align-items: center; justify-content: center;
    color: var(--ink);
    flex-shrink: 0;
}
.hero__badge--bottom .hero__badge-icon { background-color: var(--white); }
.hero__badge-text { font-size: 0.8rem; line-height: 1.3; color: var(--text-muted); }
.hero__badge-text strong { display: block; color: var(--ink); font-size: 1.05rem; font-family: var(--font-display); font-weight: 800; }
.hero__badge--bottom .hero__badge-text,
.hero__badge--bottom .hero__badge-text strong { color: var(--ink); }

/* ============================================================
   Page hero
   ============================================================ */

.page-hero {
    position: relative;
    padding: clamp(56px, 7vw, 100px) 0 clamp(48px, 6vw, 76px);
    text-align: center;
    background-color: var(--bone-2);
    border-bottom: 1.5px solid var(--ink);
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -100px; left: -80px;
    width: 320px; height: 320px;
    background-color: var(--coral-soft);
    border-radius: 50%;
    opacity: 0.7;
}

.page-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--ink);
    background-color: var(--butter);
    border: 1.5px solid var(--ink);
    padding: 7px 16px;
    border-radius: var(--r-full);
    margin-bottom: 20px;
    position: relative;
}

.page-hero__title { margin-bottom: 20px; position: relative; }
.page-hero__lead { font-size: 1.2rem; color: var(--text); max-width: 720px; margin: 0 auto; position: relative; }

.breadcrumbs { display: flex; justify-content: center; gap: 10px; margin-top: 28px; font-size: 0.88rem; color: var(--text-muted); font-weight: 600; position: relative; }
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--coral-dark); }
.breadcrumbs span { color: var(--text-muted); opacity: 0.5; }

/* ============================================================
   Cards
   ============================================================ */

.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }

.card {
    background-color: var(--surface);
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1.5px solid var(--ink);
    box-shadow: 4px 4px 0 var(--ink);
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
    display: flex;
    flex-direction: column;
}
.card:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--coral); }

.card__image { width: 100%; aspect-ratio: 4/3; object-fit: cover; background-color: var(--coral-soft); border-bottom: 1.5px solid var(--ink); }

.card__body { padding: 28px 26px; flex-grow: 1; display: flex; flex-direction: column; }

.card__icon {
    width: 54px; height: 54px;
    border-radius: 14px;
    background-color: var(--butter-soft);
    border: 1.5px solid var(--ink);
    display: flex; align-items: center; justify-content: center;
    color: var(--ink);
    margin-bottom: 18px;
}

.card__title { margin-bottom: 12px; }
.card__text { color: var(--text); font-size: 0.98rem; margin-bottom: 22px; flex-grow: 1; }

.card__link {
    display: inline-flex; align-items: center; gap: 7px;
    font-weight: 700; color: var(--coral-dark); font-size: 0.95rem;
    margin-top: auto;
    transition: gap var(--t);
}
.card__link:hover { gap: 13px; color: var(--coral-dark); }

.card__tag {
    display: inline-block; align-self: flex-start;
    background-color: var(--coral-soft);
    color: var(--coral-dark);
    font-size: 0.7rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.1em;
    padding: 6px 13px;
    border: 1.5px solid var(--ink);
    border-radius: var(--r-full);
    margin-bottom: 16px;
}

/* ============================================================
   Features
   ============================================================ */

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }

.feature {
    text-align: left;
    padding: 34px 30px;
    background-color: var(--surface);
    border: 1.5px solid var(--ink);
    border-radius: var(--r-lg);
    box-shadow: 4px 4px 0 var(--ink);
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.feature:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--butter); }

.feature__icon {
    width: 62px; height: 62px;
    margin: 0 0 22px;
    border-radius: 18px;
    background-color: var(--coral);
    border: 1.5px solid var(--ink);
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
}
.feature:nth-child(2n) .feature__icon { background-color: var(--butter); color: var(--white); }

.feature__title { margin-bottom: 12px; font-size: 1.35rem; }
.feature__text { color: var(--text); font-size: 0.98rem; }

/* ============================================================
   Split
   ============================================================ */

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(38px, 5vw, 80px); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }

.split__image {
    width: 100%;
    border-radius: var(--r-xl);
    border: 2px solid var(--ink);
    box-shadow: var(--shadow-pop-lg);
    aspect-ratio: 4/5;
    object-fit: cover;
    background-color: var(--coral-soft);
    position: relative;
    z-index: 1;
}
.split__media::after {
    content: '';
    position: absolute;
    inset: 18px -18px -18px 18px;
    background-color: var(--butter);
    border: 2px solid var(--ink);
    border-radius: var(--r-xl);
    z-index: 0;
}

.split__content h2 { margin-bottom: 22px; }
.split__content p { color: var(--text); margin-bottom: 18px; }

.checklist { list-style: none; padding: 0; margin: 26px 0; }
.checklist li { display: flex; gap: 14px; margin-bottom: 15px; color: var(--text-strong); font-weight: 500; }
.checklist li::before {
    content: '';
    flex-shrink: 0;
    width: 24px; height: 24px;
    margin-top: 2px;
    border-radius: 50%;
    background-color: var(--coral);
    border: 1.5px solid var(--ink);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'><path d='M13.485 4.515a1 1 0 0 1 0 1.414l-6 6a1 1 0 0 1-1.414 0l-3-3a1 1 0 1 1 1.414-1.414L6.778 9.808l5.293-5.293a1 1 0 0 1 1.414 0z'/></svg>");
    background-size: 14px;
    background-position: center;
    background-repeat: no-repeat;
}

/* ============================================================
   Stats
   ============================================================ */

.section--primary::before {
    content: '';
    position: absolute;
    width: 460px; height: 460px;
    background-color: var(--coral);
    opacity: 0.16;
    border-radius: 50%;
    top: -160px; right: -120px;
}

.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 26px; }

.stat {
    text-align: center;
    padding: 30px 18px;
    border: 1.5px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--r-lg);
    background-color: rgba(255, 255, 255, 0.03);
}
.stat__value {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5vw, 3.6rem);
    font-weight: 800;
    color: var(--butter);
    line-height: 1; margin-bottom: 10px;
    letter-spacing: -0.03em;
}
.stat:nth-child(2n) .stat__value { color: var(--coral); }
.stat__label { color: rgba(255, 255, 255, 0.78); font-size: 0.92rem; font-weight: 500; }

/* ============================================================
   Testimonials
   ============================================================ */

.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: 26px; }

.testimonial {
    background-color: var(--surface);
    padding: 36px 32px;
    border-radius: var(--r-lg);
    border: 1.5px solid var(--ink);
    box-shadow: 4px 4px 0 var(--ink);
    position: relative;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.testimonial:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--coral); }
.testimonial::before {
    content: '\201C';
    position: absolute;
    top: 6px; right: 24px;
    font-family: var(--font-display);
    font-size: 4.5rem; line-height: 1;
    color: var(--coral);
}

.testimonial__quote { font-size: 1.06rem; color: var(--text-strong); margin-bottom: 26px; line-height: 1.6; font-weight: 500; font-style: normal; position: relative; }
.testimonial__author { display: flex; align-items: center; gap: 14px; }
.testimonial__avatar {
    width: 50px; height: 50px;
    border-radius: 50%;
    background-color: var(--butter);
    border: 1.5px solid var(--ink);
    color: var(--ink);
    display: flex; align-items: center; justify-content: center;
    font-weight: 800;
    font-family: var(--font-display);
    flex-shrink: 0;
}
.testimonial:nth-child(2n) .testimonial__avatar { background-color: var(--coral); color: var(--white); }
.testimonial__name { font-weight: 700; color: var(--text-strong); font-size: 0.98rem; }
.testimonial__role { color: var(--text-muted); font-size: 0.85rem; }

/* ============================================================
   CTA banner
   ============================================================ */

.cta-banner {
    background-color: var(--coral);
    border: 2px solid var(--ink);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-pop-lg);
    padding: clamp(46px, 7vw, 78px) clamp(28px, 5vw, 68px);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    width: 280px; height: 280px;
    background-color: var(--butter);
    opacity: 0.3;
    border-radius: 50%;
    bottom: -130px; left: -60px;
}
.cta-banner h2 { color: var(--white); margin-bottom: 20px; position: relative; }
.cta-banner p { font-size: 1.18rem; color: rgba(255, 255, 255, 0.92); max-width: 600px; margin: 0 auto 36px; position: relative; }
.cta-banner .btn { position: relative; }
.cta-banner .btn--accent { box-shadow: 5px 5px 0 var(--ink); }

/* ============================================================
   Order form
   ============================================================ */

.order-layout { display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(34px, 5vw, 60px); align-items: start; }

.order-form {
    background-color: var(--surface);
    padding: clamp(30px, 4vw, 48px);
    border-radius: var(--r-xl);
    border: 2px solid var(--ink);
    box-shadow: var(--shadow-pop-lg);
}
.form__title { margin-bottom: 10px; }
.form__subtitle { color: var(--text-muted); margin-bottom: 32px; }

.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form__group { margin-bottom: 20px; }

.form__label { display: block; font-size: 0.86rem; font-weight: 700; color: var(--text-strong); margin-bottom: 9px; }
.form__label .required { color: var(--coral-dark); }

.form__input,
.form__select,
.form__textarea {
    width: 100%;
    padding: 14px 17px;
    border: 1.5px solid var(--ink);
    border-radius: var(--r-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-strong);
    background-color: var(--bone);
    transition: box-shadow 0.18s var(--ease), background-color var(--t);
}
.form__input::placeholder, .form__textarea::placeholder { color: #8aa898; }
.form__input:focus, .form__select:focus, .form__textarea:focus {
    outline: none;
    background-color: var(--surface);
    box-shadow: 4px 4px 0 var(--coral);
}
.form__textarea { resize: vertical; min-height: 120px; }

.form__checkbox { display: flex; gap: 13px; align-items: flex-start; margin-bottom: 22px; font-size: 0.9rem; color: var(--text-muted); line-height: 1.55; }
.form__checkbox input[type="checkbox"] { margin-top: 3px; width: 19px; height: 19px; accent-color: var(--coral); flex-shrink: 0; }

.form__submit { width: 100%; padding: 18px; font-size: 1.08rem; margin-top: 6px; }
.form__note { font-size: 0.85rem; color: var(--text-muted); text-align: center; margin-top: 18px; }

.form__error { border-color: var(--error) !important; background-color: #fdf0ed; }
.form__error-msg { color: var(--error); font-size: 0.82rem; margin-top: 6px; display: none; font-weight: 600; }
.form__error + .form__error-msg { display: block; }

/* sidebar */
.order-info { position: sticky; top: 100px; }
.order-info__card {
    background-color: var(--espresso);
    color: var(--white);
    padding: 38px 32px;
    border-radius: var(--r-xl);
    border: 2px solid var(--ink);
    box-shadow: var(--shadow-pop-lg);
    margin-bottom: 24px;
    overflow: hidden;
}
.order-info__card h3 { color: var(--white); margin-bottom: 16px; }
.order-info__card p { color: rgba(255, 255, 255, 0.82); font-size: 0.98rem; }
.order-info__list { list-style: none; padding: 0; margin: 24px 0 0; }
.order-info__list li { display: flex; gap: 15px; padding: 16px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.14); align-items: flex-start; }
.order-info__list li:last-child { border-bottom: none; }
.order-info__list svg { width: 24px; height: 24px; color: var(--butter); flex-shrink: 0; margin-top: 2px; }
.order-info__list strong { display: block; color: var(--white); font-size: 0.98rem; margin-bottom: 3px; }
.order-info__list span { color: rgba(255, 255, 255, 0.72); font-size: 0.88rem; }

.order-info__contact {
    background-color: var(--butter);
    padding: 30px;
    border-radius: var(--r-lg);
    border: 1.5px solid var(--ink);
    box-shadow: 4px 4px 0 var(--ink);
}
.order-info__contact h4 { margin-bottom: 12px; }
.order-info__contact p { font-size: 0.92rem; color: var(--ink-2); margin-bottom: 7px; }
.order-info__contact a { color: var(--ink); font-weight: 800; text-decoration: underline; }
.order-info__contact a:hover { color: var(--coral-dark); }

/* ============================================================
   Recipes
   ============================================================ */

.recipe-card {
    background-color: var(--surface);
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1.5px solid var(--ink);
    box-shadow: 4px 4px 0 var(--ink);
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
    display: flex;
    flex-direction: column;
}
.recipe-card:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--coral); }
.recipe-card__image { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-bottom: 1.5px solid var(--ink); background-color: var(--butter-soft); }
.recipe-card__body { padding: 26px 28px; flex-grow: 1; display: flex; flex-direction: column; }
.recipe-card__meta { display: flex; flex-wrap: wrap; gap: 8px 16px; margin-bottom: 14px; font-size: 0.85rem; color: var(--text-muted); font-weight: 600; }
.recipe-card__meta span { display: flex; align-items: center; gap: 5px; }
.recipe-card__title { margin-bottom: 12px; font-size: 1.4rem; }
.recipe-card__text { color: var(--text); font-size: 0.95rem; margin-bottom: 20px; flex-grow: 1; }
.recipe-card__category {
    display: inline-block; align-self: flex-start;
    background-color: var(--butter-soft);
    color: var(--ink);
    font-size: 0.7rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.1em;
    padding: 6px 13px;
    border: 1.5px solid var(--ink);
    border-radius: var(--r-full);
    margin-bottom: 14px;
}

/* ============================================================
   Team & values
   ============================================================ */

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 30px; }
.team-card { text-align: center; }
.team-card__photo {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: var(--r-lg);
    border: 1.5px solid var(--ink);
    box-shadow: 5px 5px 0 var(--ink);
    margin-bottom: 22px;
    background-color: var(--coral-soft);
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.team-card:hover .team-card__photo { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--coral); }
.team-card__name { font-size: 1.35rem; margin-bottom: 5px; }
.team-card__role { color: var(--coral-dark); font-size: 0.82rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; }
.team-card__bio { color: var(--text); font-size: 0.92rem; }

.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.value-card {
    background-color: var(--surface);
    padding: 38px 30px;
    border-radius: var(--r-lg);
    border: 1.5px solid var(--ink);
    box-shadow: 4px 4px 0 var(--ink);
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.value-card:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--butter); }
.value-card__icon {
    width: 60px; height: 60px;
    border-radius: 16px;
    background-color: var(--coral);
    border: 1.5px solid var(--ink);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 22px;
}
.value-card:nth-child(2n) .value-card__icon { background-color: var(--butter); color: var(--white); }
.value-card__title { margin-bottom: 12px; font-size: 1.3rem; }
.value-card__text { color: var(--text); font-size: 0.98rem; }

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

.faq { max-width: 840px; margin: 0 auto; }
.faq__item {
    background-color: var(--surface);
    border-radius: var(--r-md);
    margin-bottom: 16px;
    overflow: hidden;
    border: 1.5px solid var(--ink);
    transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
.faq__item.is-open { box-shadow: 5px 5px 0 var(--coral); transform: translate(-2px, -2px); }
.faq__question {
    width: 100%; background: none; border: none;
    padding: 24px 28px;
    text-align: left; cursor: pointer;
    font-family: var(--font-display);
    font-size: 1.18rem; font-weight: 700;
    color: var(--text-strong);
    display: flex; justify-content: space-between; align-items: center; gap: 18px;
    transition: color var(--t);
    letter-spacing: -0.02em;
}
.faq__question:hover { color: var(--coral-dark); }
.faq__icon {
    flex-shrink: 0; width: 32px; height: 32px;
    border-radius: 50%;
    background-color: var(--butter-soft);
    border: 1.5px solid var(--ink);
    color: var(--ink);
    display: flex; align-items: center; justify-content: center;
    transition: transform var(--t), background-color var(--t), color var(--t);
}
.faq__item.is-open .faq__icon { transform: rotate(135deg); background-color: var(--coral); color: var(--white); }
.faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.faq__answer-inner { padding: 0 28px 26px; color: var(--text); font-size: 1rem; line-height: 1.75; }

/* ============================================================
   Legal
   ============================================================ */

.legal-content {
    max-width: 840px; margin: 0 auto;
    background-color: var(--surface);
    padding: clamp(34px, 5vw, 60px);
    border-radius: var(--r-xl);
    border: 2px solid var(--ink);
    box-shadow: var(--shadow-pop-lg);
}
.legal-content h2 { margin-top: 40px; margin-bottom: 16px; font-size: 1.6rem; }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content h3 { margin-top: 30px; margin-bottom: 12px; font-size: 1.25rem; }
.legal-content p, .legal-content li { color: var(--text); font-size: 1rem; line-height: 1.8; }
.legal-content ul, .legal-content ol { padding-left: 1.5rem; margin-bottom: 18px; }
.legal-content li { margin-bottom: 9px; }
.legal-content a { color: var(--coral-dark); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.legal-content a:hover { color: var(--ink); }
.legal-meta {
    display: inline-block;
    color: var(--ink);
    font-size: 0.82rem; font-weight: 700;
    margin-bottom: 32px;
    padding: 7px 16px;
    background-color: var(--butter);
    border: 1.5px solid var(--ink);
    border-radius: var(--r-full);
}

/* ============================================================
   Thank you
   ============================================================ */

.thankyou {
    min-height: 72vh;
    display: flex; align-items: center; justify-content: center;
    padding: 90px 0; text-align: center;
    background-color: var(--bone);
}
.thankyou__inner { max-width: 640px; margin: 0 auto; }
.thankyou__icon {
    width: 104px; height: 104px;
    margin: 0 auto 34px;
    border-radius: 50%;
    background-color: var(--coral);
    border: 2px solid var(--ink);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-pop-lg);
    animation: pop 0.55s var(--ease);
}
@keyframes pop { 0% { transform: scale(0.4); opacity: 0; } 60% { transform: scale(1.08); } 100% { transform: scale(1); opacity: 1; } }
.thankyou__icon svg { width: 50px; height: 50px; }
.thankyou h1 { margin-bottom: 20px; }
.thankyou p { color: var(--text); font-size: 1.18rem; margin-bottom: 34px; }
.thankyou__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   Footer
   ============================================================ */

.footer {
    background-color: var(--espresso);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 78px;
    font-size: 0.94rem;
    border-top: 2px solid var(--ink);
}
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 48px; padding-bottom: 54px; }
.footer__logo {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.7rem; font-weight: 800;
    margin-bottom: 18px;
    display: flex; align-items: center; gap: 12px;
    letter-spacing: -0.04em;
}
.footer__logo .logo__mark { width: 44px; height: 44px; }
.footer__about { color: rgba(255, 255, 255, 0.6); max-width: 340px; line-height: 1.7; }
.footer__heading { color: var(--white); font-family: var(--font-body); font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 22px; }
.footer__list { list-style: none; padding: 0; margin: 0; }
.footer__list li { margin-bottom: 13px; }
.footer__list a { color: rgba(255, 255, 255, 0.7); }
.footer__list a:hover { color: var(--butter); }
.footer__contact p { margin-bottom: 11px; color: rgba(255, 255, 255, 0.7); }
.footer__contact a { color: rgba(255, 255, 255, 0.7); }
.footer__contact a:hover { color: var(--butter); }

.footer__research {
    background-color: var(--espresso-2);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 34px 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}
.footer__research h4 { color: var(--white); font-size: 0.74rem; margin-bottom: 16px; font-family: var(--font-body); font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; }
.footer__research ol { list-style: decimal; padding-left: 20px; margin: 0; }
.footer__research li { margin-bottom: 9px; line-height: 1.6; }
.footer__research a { color: rgba(255, 255, 255, 0.78); text-decoration: underline; text-underline-offset: 2px; word-break: break-word; }
.footer__research a:hover { color: var(--butter); }

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 26px 0;
    display: flex; justify-content: space-between; align-items: center;
    gap: 16px; flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
}
.footer__legal-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__legal-links a { color: rgba(255, 255, 255, 0.65); }
.footer__legal-links a:hover { color: var(--butter); }

.footer__disclaimer {
    max-width: var(--container);
    margin: 0 auto;
    padding: 22px 28px;
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.78rem; line-height: 1.6; font-style: italic;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ============================================================
   Scroll animations
   ============================================================ */

.fade-in { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.fade-in.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    .fade-in { opacity: 1; transform: none; transition: none; }
    .thankyou__icon { animation: none; }
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 980px) {
    .hero__grid, .split, .order-layout { grid-template-columns: 1fr; }
    .split--reverse .split__media { order: 0; }
    .hero__visual { max-width: 440px; margin: 0 auto; }
    .hero__badge--top { left: 0; }
    .hero__badge--bottom { right: 0; }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .order-info { position: static; }
}

@media (max-width: 760px) {
    body { font-size: 16px; }
    .menu-toggle { display: flex; }
    .nav {
        position: fixed; inset: 0;
        background-color: var(--bone);
        flex-direction: column; justify-content: center;
        gap: 30px; padding: 90px 28px 40px;
        transform: translateX(100%);
        transition: transform var(--t);
        z-index: 99;
        border-left: 2px solid var(--ink);
    }
    .nav.is-open { transform: translateX(0); }
    .nav__list { flex-direction: column; gap: 12px; text-align: center; width: 100%; }
    .nav__link { font-size: 1.25rem; padding: 12px; }
    .nav .btn { width: 100%; max-width: 300px; margin: 8px auto 0; }
    .form__row { grid-template-columns: 1fr; gap: 0; }
    .footer__grid { grid-template-columns: 1fr; gap: 36px; padding-bottom: 36px; }
    .footer__bottom { flex-direction: column; text-align: center; }
    .hero__badge { display: none; }
    .stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .split__media::after { inset: 12px -12px -12px 12px; }
}

@media (max-width: 480px) {
    .container { padding: 0 18px; }
    .hero__cta { flex-direction: column; }
    .hero__cta .btn { width: 100%; }
    .stats { grid-template-columns: 1fr; }
    .thankyou__actions { flex-direction: column; }
    .thankyou__actions .btn { width: 100%; }
}
