/* =========================================================
   Elivita — landing styles
   Palette taken from the logo: forest green, sage, cream.
   Desktop-first; adapts down to < 470px.
   ========================================================= */

/* ---------- 1. Design tokens ---------- */
:root {
    --forest:      #2e4a34;
    --forest-d:    #233a28;
    --forest-dd:   #1b2e1f;
    --sage:        #9db380;
    --sage-l:      #c3d3ab;
    --sage-mid:    #7e9b6b;
    --cream:       #f6f4ec;
    --cream-2:     #efede0;
    --white:       #fbfaf4;
    --ink:         #23301f;
    --ink-soft:    #55634d;
    --line:        rgba(46, 74, 52, 0.14);
    --line-strong: rgba(46, 74, 52, 0.24);
    --shadow-sm:   0 2px 10px rgba(35, 58, 40, 0.06);
    --shadow-md:   0 18px 50px rgba(35, 58, 40, 0.14);
    --radius:      18px;
    --radius-lg:   26px;
    --maxw:        1180px;
    --header-h:    76px;
    --font-serif:  "Cormorant Garamond", Georgia, "Times New Roman", serif;
    --font-sans:   "Mulish", system-ui, -apple-system, Segoe UI, sans-serif;
}

/* ---------- 2. Reset & base ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--ink);
    background: var(--cream);
    line-height: 1.65;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--sage-mid);
}

ul {
    list-style: none;
}

/* ---------- 3. Typography helpers ---------- */
.eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--sage-mid);
    margin-bottom: 18px;
}

.eyebrow.on-dark {
    color: var(--sage-l);
}

.title {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.01em;
    color: var(--forest);
    font-size: clamp(2rem, 4.6vw, 3.3rem);
    text-wrap: balance;
}

.title.on-dark {
    color: var(--white);
}

.lead {
    font-size: 1.12rem;
    color: var(--ink-soft);
    max-width: 56ch;
    text-wrap: pretty;
}

.lead.on-dark {
    color: rgba(246, 244, 236, 0.82);
}

/* ---------- 4. Layout ---------- */
.container {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 28px;
}

section {
    scroll-margin-top: 92px;
}

.section {
    padding: 104px 0;
}

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

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

/* ---------- 5. Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    padding: 16px 30px;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease;
}

.btn:active {
    transform: translateY(1px);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

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

.btn-primary:hover {
    background: var(--forest-d);
    color: var(--white);
}

.btn-light {
    background: var(--white);
    color: var(--forest);
}

.btn-light:hover {
    background: var(--cream-2);
    color: var(--forest);
}

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

.btn-outline:hover {
    background: var(--forest);
    color: var(--white);
}

.btn-block {
    width: 100%;
}

/* ---------- 6. Header ---------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--header-h);
    background: rgb(254 250 247);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
    border-bottom-color: var(--line);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.brand img {
    height: 52px;
    width: auto;
}

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

.nav a {
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--ink);
}

.nav a:hover {
    color: var(--sage-mid);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.header-phone {
    font-weight: 700;
    font-size: 0.98rem;
    white-space: nowrap;
}

/* burger */
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line-strong);
    border-radius: 12px;
    background: transparent;
    cursor: pointer;
}

.burger span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 0 auto;
    background: var(--forest);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger.open span:nth-child(2) {
    opacity: 0;
}

.burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---------- 7. Hero ---------- */
.hero {
    position: relative;
    padding-top: calc(var(--header-h) + 64px);
    padding-bottom: 84px;
    background-image: linear-gradient(105deg, rgba(246, 244, 236, 0.94) 0%, rgba(246, 244, 236, 0.72) 42%, rgba(246, 244, 236, 0.35) 100%), url("../img/hero-bg.webp");
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: stretch;
    min-height: calc(100vh - var(--header-h) - 148px);
}

.hero-copy {
    align-self: center;
}

.hero-media {
    min-height: 460px;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.hero-copy .title {
    margin-bottom: 22px;
}

.hero-copy .lead {
    margin-bottom: 30px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 26px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--forest);
}

.hero-trust li {
    display: flex;
    align-items: center;
    gap: 9px;
}

.hero-trust .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sage);
    flex-shrink: 0;
}

/* ---------- 8. Form card ---------- */
.form-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 34px 32px;
}

.form-card h3 {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 1.85rem;
    color: var(--forest);
    line-height: 1.1;
    margin-bottom: 8px;
}

.form-card p.form-sub {
    font-size: 0.98rem;
    color: var(--ink-soft);
    margin-bottom: 24px;
}

.field {
    margin-bottom: 14px;
}

.field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--forest);
    margin-bottom: 7px;
}

.field input,
.field textarea {
    width: 100%;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--ink);
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 15px 16px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.field input::placeholder,
.field textarea::placeholder {
    color: #9aa693;
}

.field input:focus,
.field textarea:focus {
    outline: none;
    background: var(--white);
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(157, 179, 128, 0.28);
}

.form-note {
    margin-top: 14px;
    font-size: 0.85rem;
    color: var(--ink-soft);
    text-align: center;
}

.form-submit {
    margin-top: 6px;
}

/* success state */
.form-success {
    display: none;
    text-align: center;
    padding: 18px 6px 8px;
}

.form-success .check {
    width: 62px;
    height: 62px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: rgba(157, 179, 128, 0.2);
    display: grid;
    place-items: center;
    color: var(--forest);
}

.form-success h3 {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 1.7rem;
    color: var(--forest);
    margin-bottom: 8px;
}

.form-success p {
    color: var(--ink-soft);
    font-size: 0.98rem;
}

form.sent .form-body {
    display: none;
}

form.sent .form-success {
    display: block;
}

/* ---------- 9. About ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 62px;
    align-items: center;
}

.about-media {
    position: relative;
}

.about-media img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    left: -18px;
    bottom: 28px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.about-badge .mark {
    font-family: var(--font-serif);
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--sage-mid);
    line-height: 1;
}

.about-badge b {
    display: block;
    font-size: 0.95rem;
    color: var(--forest);
}

.about-badge span {
    font-size: 0.82rem;
    color: var(--ink-soft);
}

.about-copy .title {
    margin-bottom: 22px;
}

.about-copy p {
    color: var(--ink-soft);
    margin-bottom: 16px;
    max-width: 54ch;
}

.facts {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.fact {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px 18px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--forest);
    box-shadow: var(--shadow-sm);
}

.fact span {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--sage-mid);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 2px;
}

/* ---------- 10. Products ---------- */
.products {
    background: var(--cream);
}

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

.product-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    display: flex;
    flex-direction: column;
}

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

.product-thumb {
    aspect-ratio: 1 / 1;
    background: var(--cream-2);
    overflow: hidden;
}

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

.product-body {
    padding: 24px 24px 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tag {
    align-self: flex-start;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sage-mid);
    background: rgba(157, 179, 128, 0.16);
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.product-body h3 {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 1.55rem;
    color: var(--forest);
    line-height: 1.12;
    margin-bottom: 10px;
}

.product-body p {
    font-size: 0.97rem;
    color: var(--ink-soft);
}

.products-note {
    text-align: center;
    margin-top: 36px;
    font-size: 0.9rem;
    color: var(--ink-soft);
}

/* ---------- 11. Why band (dark) ---------- */
.why {
    position: relative;
    color: var(--white);
    background-image: linear-gradient(rgba(27, 46, 31, 0.82), rgba(27, 46, 31, 0.86)), url("../img/cta-bg.webp");
    background-size: cover;
    background-position: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px;
    margin-top: 20px;
}

.why-item .icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(157, 179, 128, 0.18);
    color: var(--sage-l);
    display: grid;
    place-items: center;
    margin-bottom: 18px;
}

.why-item .icon svg {
    width: 26px;
    height: 26px;
}

.why-item h3 {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--white);
}

.why-item p {
    font-size: 0.96rem;
    color: rgba(246, 244, 236, 0.78);
}

/* ---------- 12. Careers ---------- */
.careers-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 62px;
    align-items: center;
}

.careers-copy .title {
    margin-bottom: 22px;
}

.careers-copy > p {
    color: var(--ink-soft);
    margin-bottom: 28px;
    max-width: 52ch;
}

.jobs-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sage-mid);
    margin-bottom: 16px;
}

.jobs {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.job {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 16px 20px;
    font-weight: 600;
    color: var(--forest);
    box-shadow: var(--shadow-sm);
}

.job .leaf {
    color: var(--sage);
    flex-shrink: 0;
}

.careers-media {
    position: relative;
}

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

.hr-card {
    position: absolute;
    right: -14px;
    bottom: -22px;
    background: var(--forest);
    color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: 22px 26px;
    max-width: 300px;
}

.hr-card b {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sage-l);
    margin-bottom: 12px;
}

.hr-card a {
    color: var(--white);
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
}

.hr-card a:hover {
    color: var(--sage-l);
}

.hr-card .hours {
    font-size: 0.88rem;
    color: rgba(246, 244, 236, 0.72);
    margin-top: 8px;
}

/* ---------- 13. CTA band (dark) + contacts ---------- */
.cta {
    position: relative;
    color: var(--white);
    background-image: linear-gradient(rgba(27, 46, 31, 0.84), rgba(35, 58, 40, 0.88)), url("../img/cta-bg.webp");
    background-size: cover;
    background-position: center;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 58px;
    align-items: center;
}

.cta-copy .title {
    margin-bottom: 20px;
}

.cta-copy .lead {
    margin-bottom: 32px;
}

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

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-item .icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 12px;
    background: rgba(157, 179, 128, 0.2);
    color: var(--sage-l);
    display: grid;
    place-items: center;
}

.contact-item .icon svg {
    width: 22px;
    height: 22px;
}

.contact-item b {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sage-l);
    margin-bottom: 4px;
}

.contact-item a,
.contact-item p {
    color: rgba(246, 244, 236, 0.9);
    font-weight: 600;
    line-height: 1.5;
}

.contact-item a:hover {
    color: var(--white);
}

/* ---------- 14. Footer ---------- */
.footer {
    background: var(--forest-dd);
    color: rgba(246, 244, 236, 0.72);
    padding: 72px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr;
    gap: 44px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(246, 244, 236, 0.12);
}

.footer-brand .wordmark {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 10px;
}

.footer-brand .tagline {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sage-l);
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.95rem;
    max-width: 34ch;
}

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

.footer-col p,
.footer-col a {
    display: block;
    font-size: 0.95rem;
    color: rgba(246, 244, 236, 0.72);
    margin-bottom: 9px;
}

.footer-col a:hover {
    color: var(--sage-l);
}

.footer-bottom {
    padding-top: 26px;
    font-size: 0.86rem;
    color: rgba(246, 244, 236, 0.55);
    text-align: center;
}

/* ---------- 15. Scroll reveal (progressive) ---------- */
.js [data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.js [data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    .js [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* =========================================================
   16. Responsive
   ========================================================= */

/* ---- Tablet / small laptop ---- */
@media (max-width: 960px) {
    .section {
        padding: 78px 0;
    }

    .nav,
    .header-phone {
        display: none;
    }

    .burger {
        display: flex;
    }

    /* mobile dropdown nav */
    .nav.open {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        position: absolute;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: var(--cream);
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow-md);
        padding: 14px 28px 22px;
        margin: 0;
    }

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

    .hero-grid,
    .about-grid,
    .careers-grid,
    .cta-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 40px;
        min-height: 0;
    }

    .hero-media {
        min-height: 380px;
    }

    .about-grid,
    .careers-grid {
        gap: 46px;
    }

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

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

    .about-media {
        max-width: 460px;
    }

    .careers-media {
        max-width: 520px;
        margin-bottom: 10px;
    }
}

/* ---- Phones ---- */
@media (max-width: 640px) {
    body {
        font-size: 16px;
    }

    .container {
        padding: 0 20px;
    }

    .section {
        padding: 64px 0;
    }

    .section-head {
        margin-bottom: 40px;
    }

    .hero {
        padding-top: calc(var(--header-h) + 40px);
        padding-bottom: 60px;
    }

    .hero-media {
        min-height: 340px;
    }

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

    .product-grid {
        gap: 20px;
    }

    .hr-card {
        position: static;
        max-width: none;
        margin-top: 18px;
    }

    .about-badge {
        left: 0;
    }

    .footer {
        padding: 56px 0 26px;
    }
}

/* ---- < 470px : keep every block usable ---- */
@media (max-width: 470px) {
    :root {
        --header-h: 64px;
    }

    .container {
        padding: 0 16px;
    }

    .brand img {
        height: 42px;
    }

    .section {
        padding: 54px 0;
    }

    .title {
        font-size: clamp(1.7rem, 8vw, 2.2rem);
    }

    .lead {
        font-size: 1.02rem;
    }

    .hero {
        padding-top: calc(var(--header-h) + 30px);
        padding-bottom: 48px;
    }

    .hero-copy .lead {
        margin-bottom: 24px;
    }

    .hero-media {
        min-height: 300px;
    }

    .form-card {
        padding: 22px 18px;
        border-radius: 20px;
    }

    .form-card h3 {
        font-size: 1.55rem;
    }

    .btn {
        padding: 15px 22px;
        font-size: 0.98rem;
    }

    /* single column everywhere */
    .product-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        gap: 26px;
    }

    .facts {
        flex-direction: column;
        align-items: stretch;
    }

    .fact {
        width: 100%;
    }

    .about-badge {
        position: static;
        margin-top: 16px;
        width: 100%;
    }

    .hero-trust {
        gap: 10px 18px;
        font-size: 0.9rem;
    }

    .product-body {
        padding: 20px 20px 24px;
    }

    .product-body h3 {
        font-size: 1.4rem;
    }

    .hr-card {
        padding: 18px 20px;
    }

    .footer-brand .wordmark {
        font-size: 1.9rem;
    }
}

/* =========================================================
   17. Extended sections (about, mission, values, quality,
   why-us, process, careers, contacts)
   ========================================================= */

/* ---- hero action buttons ---- */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 8px;
}

/* ---- mission band (set apart from the cream sections) ---- */
.mission {
    background: linear-gradient(180deg, #eef2e4 0%, #e6eed8 100%);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

/* ---- centered statement (mission) ---- */
.statement {
    max-width: 840px;
    margin: 0 auto;
    text-align: center;
}

.leafmark {
    display: flex;
    justify-content: center;
    color: var(--sage);
    margin-bottom: 20px;
}

.leafmark svg {
    width: 40px;
    height: 40px;
}

.statement h2 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.12;
    color: var(--forest);
    font-size: clamp(1.9rem, 4vw, 3rem);
    margin-bottom: 22px;
    text-wrap: balance;
}

.statement p {
    font-size: 1.18rem;
    color: var(--ink-soft);
    max-width: 60ch;
    margin: 0 auto;
    text-wrap: pretty;
}

/* ---- values ---- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

/* two wider key values on top, three below */
.values-grid .value-card {
    grid-column: span 2;
}

.values-grid .value-card:nth-child(1),
.values-grid .value-card:nth-child(2) {
    grid-column: span 3;
}

.value-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px 30px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.value-card .icon {
    width: 54px;
    height: 54px;
    border-radius: 15px;
    background: rgba(157, 179, 128, 0.16);
    color: var(--sage-mid);
    display: grid;
    place-items: center;
    margin-bottom: 18px;
}

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

.value-card h3 {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--forest);
    margin-bottom: 8px;
}

.value-card p {
    font-size: 0.97rem;
    color: var(--ink-soft);
}

/* ---- product direction feature rows ---- */
.feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.feature + .feature {
    margin-top: 64px;
}

.feature.reverse .feature-media {
    order: 2;
}

.feature-media img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: var(--cream-2);
}

.feature-body .tag {
    margin-bottom: 16px;
}

.feature-body h3 {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    color: var(--forest);
    line-height: 1.1;
    margin-bottom: 14px;
}

.feature-body p {
    color: var(--ink-soft);
    max-width: 48ch;
}

.soon {
    display: inline-block;
    margin-top: 16px;
    font-size: 0.9rem;
    font-style: italic;
    color: var(--sage-mid);
}

/* ---- quality band (dark) ---- */
.quality {
    position: relative;
    color: var(--white);
    background-image: linear-gradient(rgba(27, 46, 31, 0.85), rgba(35, 58, 40, 0.9)), url("../img/cta-bg.webp");
    background-size: cover;
    background-position: center;
}

.quality-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}

.quality .inner {
    max-width: none;
}

.quality-media img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    aspect-ratio: 5 / 6;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.05);
}

.quality .lead + .lead {
    margin-top: 18px;
}

.quality .pill {
    display: inline-block;
    margin-bottom: 22px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(157, 179, 128, 0.2);
    color: var(--sage-l);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
}

/* ---- checklist (why-us / benefits) ---- */
.checklist {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px 36px;
}

.check-item {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    font-weight: 600;
    color: var(--forest);
}

.check-item .tick {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(157, 179, 128, 0.2);
    color: var(--forest);
    display: grid;
    place-items: center;
    margin-top: 1px;
}

.check-item .tick svg {
    width: 15px;
    height: 15px;
}

/* ---- process / how we work ---- */
.steps {
    max-width: 760px;
    margin: 0 auto;
}

.step {
    position: relative;
    display: flex;
    gap: 24px;
    padding-bottom: 36px;
}

.step:last-child {
    padding-bottom: 0;
}

.step::before {
    content: "";
    position: absolute;
    left: 26px;
    top: 58px;
    bottom: 0;
    width: 2px;
    background: var(--line-strong);
}

.step:last-child::before {
    display: none;
}

.step-num {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--forest);
    color: var(--white);
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 1.4rem;
    display: grid;
    place-items: center;
}

.step-body {
    padding-top: 12px;
}

.step-body h3 {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--forest);
    margin-bottom: 4px;
}

.step-body p {
    color: var(--ink-soft);
    font-size: 0.98rem;
}

/* ---- dark panel (open positions) ---- */
.panel-dark {
    background: var(--forest);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 34px;
    box-shadow: var(--shadow-md);
}

.panel-dark h3 {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 8px;
}

.panel-dark > p {
    color: rgba(246, 244, 236, 0.8);
    font-size: 0.98rem;
    margin-bottom: 22px;
}

.panel-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 22px;
}

.panel-list li {
    display: flex;
    gap: 12px;
    align-items: center;
    font-weight: 600;
    color: var(--white);
}

.panel-list .leaf {
    color: var(--sage-l);
    flex-shrink: 0;
}

.panel-note {
    font-size: 0.9rem;
    color: rgba(246, 244, 236, 0.72);
    margin-bottom: 24px;
    line-height: 1.6;
}

/* ---- careers two-column ---- */
.careers2 {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 52px;
    align-items: start;
    margin-top: 60px;
}

.benefits-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sage-mid);
    margin: 4px 0 20px;
}

.careers-intro {
    max-width: 60ch;
    color: var(--ink-soft);
    margin-bottom: 30px;
}

/* ---- responsive for extended sections ---- */
@media (max-width: 960px) {
    .feature {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature.reverse .feature-media {
        order: 0;
    }

    .feature-media {
        max-width: 520px;
    }

    .careers2 {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .quality-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .quality-media {
        max-width: 460px;
    }

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

    .values-grid .value-card,
    .values-grid .value-card:nth-child(1),
    .values-grid .value-card:nth-child(2) {
        grid-column: auto;
    }
}

@media (max-width: 470px) {
    .value-card {
        padding: 26px 22px;
    }

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

    .values-grid .value-card,
    .values-grid .value-card:nth-child(1),
    .values-grid .value-card:nth-child(2) {
        grid-column: auto;
    }

    .panel-dark {
        padding: 28px 22px;
    }

    .statement p {
        font-size: 1.05rem;
    }

    .step {
        gap: 16px;
    }

    .step-num {
        width: 46px;
        height: 46px;
        font-size: 1.2rem;
    }

    .step::before {
        left: 22px;
        top: 50px;
    }

    .step-body {
        padding-top: 8px;
    }

    .careers2 {
        margin-top: 40px;
    }
}
