:root {
    --ink: #171512;
    --muted: #6e675f;
    --paper: #f7f2ea;
    --white: #fffdf8;
    --green: #18382f;
    --green-2: #254d41;
    --line: #dfd6c9;
    --gold: #b08a45;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    color: var(--ink);
    background: var(--paper);
}

a {
    color: inherit;
    text-decoration: none;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 18px 42px;
    background: rgba(255, 253, 248, 0.92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    color: var(--white);
    background: var(--green);
    border-radius: 50%;
    font-size: 20px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 24px;
    color: var(--muted);
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.nav a.active,
.nav a:hover {
    color: var(--ink);
}

.header-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border: 1px solid var(--ink);
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.header-cta,
.button.primary {
    color: var(--white);
    background: var(--green);
    border-color: var(--green);
}

.button.secondary {
    color: var(--ink);
    background: transparent;
}

.button.full {
    width: 100%;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
    min-height: calc(100vh - 74px);
    border-bottom: 1px solid var(--line);
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 72px 42px 72px clamp(42px, 7vw, 110px);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 26px;
    max-width: 820px;
    font-size: clamp(46px, 6vw, 92px);
    line-height: 0.96;
    font-weight: 500;
}

.hero-copy p,
.page-hero p,
.split-section p {
    max-width: 620px;
    color: var(--muted);
    font-family: Arial, sans-serif;
    font-size: 18px;
    line-height: 1.75;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 18px;
}

.hero-media {
    min-height: 520px;
    background: var(--green);
}

.hero-media img,
.page-hero img,
.split-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border-bottom: 1px solid var(--line);
}

.intro-grid article {
    min-height: 260px;
    padding: 48px 42px;
    background: var(--white);
}

.intro-grid h2,
.section h2,
.split-section h2,
.page-hero h1,
.process h2 {
    font-size: clamp(31px, 4vw, 56px);
    line-height: 1.02;
    font-weight: 500;
}

.intro-grid p,
.product-card p,
.product-card small,
.process p,
.contact-panel p,
.form-note {
    color: var(--muted);
    font-family: Arial, sans-serif;
    line-height: 1.65;
}

.section {
    padding: 76px 42px;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 30px;
}

.section-head a {
    color: var(--green);
    border-bottom: 1px solid var(--green);
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

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

.product-card {
    background: var(--white);
    border: 1px solid var(--line);
}

.product-card img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

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

.product-card span {
    color: var(--gold);
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.product-card h3 {
    margin: 10px 0 8px;
    font-size: 28px;
    font-weight: 500;
}

.split-section,
.page-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 560px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.split-section div,
.page-hero div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 76px clamp(42px, 7vw, 100px);
}

.page-hero.compact {
    display: block;
    min-height: auto;
    background: var(--green);
    color: var(--white);
}

.page-hero.compact div {
    padding: 70px clamp(28px, 7vw, 100px);
}

.page-hero.compact p {
    color: rgba(255, 253, 248, 0.78);
}

.form-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.88fr) minmax(320px, 1.12fr);
    gap: 1px;
    background: var(--line);
    border-bottom: 1px solid var(--line);
}

.lead-form,
.contact-panel,
.lookbook-cover {
    padding: 52px;
    background: var(--white);
}

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

.lead-form label {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
}

.lead-form label:has(textarea),
.lead-form .full,
.lead-form .notice,
.lead-form .form-note {
    grid-column: 1 / -1;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    background: #fffaf2;
    padding: 14px 14px;
    color: var(--ink);
    font: 16px Arial, sans-serif;
}

textarea {
    resize: vertical;
}

.hidden-field {
    position: absolute;
    left: -9999px;
}

.lookbook-cover {
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #18382f, #0f231e);
}

.cover-card {
    width: min(100%, 420px);
    min-height: 520px;
    padding: 42px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    color: var(--white);
    border: 1px solid rgba(255, 253, 248, 0.35);
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.08)), url("hero.jpg");
    background-size: cover;
    background-position: center;
}

.cover-card span {
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.cover-card h2 {
    margin: 14px 0;
    font-size: 44px;
    line-height: 1.02;
    font-weight: 500;
}

.cover-card p {
    color: rgba(255, 253, 248, 0.76);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.notice {
    padding: 14px 16px;
    background: #edf4ef;
    color: var(--green);
    font-family: Arial, sans-serif;
}

.notice.error {
    background: #fae7e0;
    color: #8a2b17;
}

.process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
}

.process div {
    padding: 42px;
    background: var(--white);
}

.process span {
    color: var(--gold);
    font-family: Arial, sans-serif;
    font-weight: 700;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    padding: 44px 42px 72px;
    color: rgba(255, 253, 248, 0.78);
    background: var(--green);
    font-family: Arial, sans-serif;
}

.site-footer strong {
    display: block;
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
}

.site-footer p {
    max-width: 520px;
    margin: 12px 0 0;
    line-height: 1.6;
}

.site-footer div:last-child {
    display: grid;
    gap: 8px;
    text-align: right;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 20;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 18px;
    color: var(--white);
    background: #1f7a52;
    border-radius: 999px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .site-header {
        align-items: flex-start;
        flex-direction: column;
        padding: 18px 22px;
    }

    .nav {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .header-cta {
        display: none;
    }

    .hero,
    .split-section,
    .page-hero,
    .form-layout {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .hero-copy,
    .section,
    .split-section div,
    .page-hero div,
    .lead-form,
    .contact-panel,
    .lookbook-cover {
        padding: 42px 22px;
    }

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

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

    .section-head,
    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-footer div:last-child {
        text-align: left;
    }
}
