:root {
    --ink: #1f2421;
    --muted: #6f766f;
    --cream: #f7f2eb;
    --paper: #fffdf9;
    --rose: #c99891;
    --rose-dark: #8e5e59;
    --sage: #687a6b;
    --line: #e7ded4;
    --radius: 24px;
    --shadow: 0 24px 70px rgba(63, 47, 36, 0.12);
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: "DM Sans", sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.65;
}
img {
    display: block;
    width: 100%;
}
a {
    text-decoration: none;
    color: inherit;
}
.container {
    width: min(1180px, calc(100% - 40px));
    margin: auto;
}
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 18px 0;
    transition: 0.3s;
}
.site-header.scrolled {
    background: rgba(255, 253, 249, 0.92);
    backdrop-filter: blur(14px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}
.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.brand {
    display: flex;
    gap: 10px;
    align-items: center;
}
.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: var(--ink);
    color: #fff;
    font-family: "Playfair Display";
    font-size: 22px;
}
.brand strong,
.brand small {
    display: block;
    line-height: 1;
}
.brand small {
    letter-spacing: 0.24em;
    font-size: 9px;
    margin-top: 5px;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    font-weight: 600;
    font-size: 14px;
}
.nav-toggle {
    display: none;
    border: 0;
    background: transparent;
    font-size: 28px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    font-weight: 700;
    border: 1px solid var(--ink);
    transition: 0.25s;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(31, 36, 33, 0.18);
}
.btn-sm {
    padding: 10px 18px;
}
.btn-ghost {
    background: transparent;
    color: var(--ink);
}
.hero {
    min-height: 100vh;
    padding: 150px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(140deg, #fffdf9 45%, #f2e5df 100%);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.03fr 0.97fr;
    gap: 70px;
    align-items: center;
}
.eyebrow {
    display: inline-block;
    color: var(--rose-dark);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 14px;
}
.hero h1,
.section h2,
.page-hero h1 {
    font-family: "Playfair Display", serif;
    line-height: 1.08;
    margin: 0;
}
.hero h1 {
    font-size: clamp(46px, 6vw, 76px);
    max-width: 760px;
}
.hero h1 em {
    font-style: normal;
    color: var(--rose-dark);
}
.hero-copy > p {
    font-size: 18px;
    color: var(--muted);
    max-width: 650px;
    margin: 28px 0;
}
.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.trust-row {
    display: flex;
    gap: 34px;
    margin-top: 44px;
}
.trust-row div {
    display: flex;
    flex-direction: column;
}
.trust-row strong {
    font-size: 24px;
}
.trust-row span {
    font-size: 12px;
    color: var(--muted);
}
.hero-visual {
    position: relative;
}
.image-main {
    height: 680px;
    border-radius: 180px 180px 28px 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.image-main img {
    height: 100%;
    object-fit: cover;
}
.floating-card {
    position: absolute;
    left: -55px;
    bottom: 35px;
    background: #fff;
    padding: 20px 24px;
    border-radius: 18px;
    box-shadow: var(--shadow);
    max-width: 240px;
}
.floating-card span {
    display: block;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--rose-dark);
    font-weight: 800;
}
.floating-card strong {
    font-size: 14px;
}
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    opacity: 0.5;
}
.orb-one {
    width: 240px;
    height: 240px;
    background: #eed1c8;
    left: -70px;
    top: 170px;
}
.orb-two {
    width: 150px;
    height: 150px;
    background: #dfe8df;
    right: 35%;
    bottom: 20px;
}
.section {
    padding: 110px 0;
}
.section-soft {
    background: var(--cream);
}
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.section h2 {
    font-size: clamp(38px, 4.5vw, 58px);
}
.section-copy p {
    color: var(--muted);
    font-size: 17px;
}
.check-list {
    padding: 0;
    list-style: none;
    display: grid;
    gap: 13px;
}
.check-list li:before {
    content: "✓";
    margin-right: 12px;
    color: var(--rose-dark);
    font-weight: 800;
}
.mosaic {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 16px;
    align-items: end;
}
.mosaic img {
    height: 560px;
    object-fit: cover;
    border-radius: 24px;
}
.mosaic img:last-child {
    height: 420px;
}
.section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 54px;
}
.heading-row {
    display: flex;
    justify-content: space-between;
    align-items: end;
    max-width: none;
    text-align: left;
}
.text-link {
    font-weight: 800;
    color: var(--rose-dark);
}
.services-section{
    padding-top:10px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.service-card {
    background: #fff;
    padding: 10px;
    border-radius: 22px;
    border: 1px solid var(--line);
    transition: 0.25s;
}
.service-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}
.service-card > span {
    font-family: "Playfair Display";
    font-size: 36px;
    color: #d7b9b2;
}
.service-card h3 {
    font-size: 20px;
}
.service-card p,
.product-card p {
    color: var(--muted);
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.product-card {
    border: 1px solid var(--line);
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    transition: 0.25s;
}
.product-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}
.product-image {
    height: 460px;
    overflow: hidden;
}
.product-image img {
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}
.product-card:hover img {
    transform: scale(1.04);
}
.product-body {
    padding: 24px;
}
.product-body .eyebrow {
    margin-bottom: 5px;
}
.product-body h3 {
    margin: 0;
    font-size: 23px;
}
.product-body small {
    color: var(--rose-dark);
    font-weight: 700;
}
.process {
    background: #202622;
    color: #fff;
}
.process .eyebrow {
    color: #e1bdb6;
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.process-item {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding-top: 25px;
}
.process-item b {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff;
    color: var(--ink);
}
.process-item p {
    color: #bbc3bd;
}
.contact {
    background: linear-gradient(135deg, #94645e, #6f4c48);
    color: #fff;
}
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}
.eyebrow-light {
    color: #f5d7d1;
}
.contact-copy p {
    color: #f1ddda;
    font-size: 17px;
}
.contact-points {
    display: grid;
    gap: 10px;
}
.contact-form {
    background: #fff;
    color: var(--ink);
    padding: 32px;
    border-radius: 24px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.contact-form label {
    display: grid;
    gap: 7px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 13px 14px;
    font: inherit;
    background: #fff;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: 2px solid #e8c8c2;
    border-color: transparent;
}
.btn-light {
    background: var(--ink);
    width: 100%;
}
.alert {
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 15px;
}
.success {
    background: #eaf7ed;
    color: #276237;
}
.footer {
    background: #171b18;
    color: #d9dfda;
    padding: 70px 0 20px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 70px;
}
.footer h4 {
    color: #fff;
}
.footer a {
    display: block;
    margin: 8px 0;
}
.brand-light {
    color: #fff;
}
.brand-light .brand-mark {
    background: #fff;
    color: #171b18;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 45px;
    padding-top: 20px;
    font-size: 13px;
}
.page-hero {
    padding: 170px 0 80px;
    background: var(--cream);
    text-align: center;
}
.page-hero h1 {
    font-size: 58px;
}
.page-hero p {
    max-width: 700px;
    margin: 20px auto;
    color: var(--muted);
}
.pagination-wrap {
    margin-top: 40px;
}
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: none;
}
@media (max-width: 980px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 76px;
        left: 20px;
        right: 20px;
        background: #fff;
        padding: 20px;
        border-radius: 18px;
        box-shadow: var(--shadow);
        flex-direction: column;
    }
    .main-nav.open {
        display: flex;
    }
    .nav-toggle {
        display: block;
    }
    .hero-grid,
    .split,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .hero-visual {
        max-width: 650px;
        margin: auto;
    }
    .services-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, 1180px);
    }
    .hero {
        padding-top: 125px;
    }
    .hero h1 {
        font-size: 43px;
    }
    .image-main {
        height: 520px;
        border-radius: 120px 120px 24px 24px;
    }
    .floating-card {
        left: 10px;
    }
    .trust-row {
        gap: 18px;
    }
    .services-grid,
    .process-grid,
    .products-grid,
    .footer-grid,
    .form-row {
        grid-template-columns: 1fr;
    }
    .mosaic img {
        height: 440px;
    }
    .mosaic img:last-child {
        height: 330px;
    }
    .heading-row {
        display: block;
    }
    .text-link {
        display: inline-block;
        margin-top: 15px;
    }
    .section {
        padding: 80px 0;
    }
    .product-image {
        height: 420px;
    }
    .page-hero h1 {
        font-size: 42px;
    }
}
