/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    color: #17231f;
    background: #fbfaf7;
    text-rendering: optimizeLegibility;
}

a {
    color: #173f34;
    text-decoration: none;
    text-underline-offset: 0.18em;
    transition: color 0.2s ease;
}

a:hover {
    color: #b98a52;
}

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

/* ===== UTILITY ===== */
.jw-eyebrow {
    color: #b98a52;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.jw-eyebrow::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 1px;
    margin: 0 10px 3px 0;
    background: currentColor;
}

.jw-wrap {
    width: min(1240px, calc(100vw - 48px));
    margin: auto;
}

/* ===== TOPBAR ===== */
.jw-topbar {
    background: #17231f;
    color: #dce5e0;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.jw-topbar-inner {
    width: var(--wrap, min(1240px, calc(100vw - 48px)));
    min-height: 34px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
}

.jw-topbar span:last-child {
    color: #d0ac83;
}

/* ===== HEADER ===== */
.jw-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(251, 250, 247, 0.95);
    border-bottom: 1px solid rgba(23, 35, 31, 0.13);
    backdrop-filter: blur(16px);
}

.jw-nav {
    width: var(--wrap, min(1240px, calc(100vw - 48px)));
    height: 82px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.jw-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #17231f;
}

.jw-mark {
    width: 42px;
    height: 42px;
    border: 1px solid #17231f;
    display: grid;
    place-items: center;
    font: 700 17px Georgia, serif;
}

.jw-wordmark strong {
    display: block;
    font: 500 19px/1.05 Georgia, serif;
}

.jw-wordmark small {
    display: block;
    margin-top: 4px;
    color: #66716b;
    font-size: 10px;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.jw-links {
    display: flex;
    align-items: center;
    gap: 23px;
}

.jw-links a {
    color: #26332e;
    font-size: 13px;
    font-weight: 700;
}

.jw-nav-cta, .jw-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    transition: 0.25s;
}

.jw-nav-cta {
    min-height: 44px;
    background: #173f34;
    color: #fff !important;
}

.jw-nav-cta:hover {
    background: #b98a52;
    color: #17231f !important;
}

.jw-btn {
    background: #173f34;
    color: #fff;
}

.jw-btn:hover {
    background: #b98a52;
    color: #17231f;
}

/* ===== MOBILE MENU ===== */
.jw-menu {
    display: none;
    position: relative;
}

.jw-menu summary {
    cursor: pointer;
    list-style: none;
    border: 1px solid rgba(23, 35, 31, 0.13);
    border-radius: 999px;
    padding: 10px 15px;
    font-size: 13px;
    font-weight: 700;
}

.jw-menu-panel {
    position: absolute;
    right: 0;
    top: 48px;
    width: 250px;
    background: #fff;
    padding: 14px;
    border: 1px solid rgba(23, 35, 31, 0.13);
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(23, 35, 31, 0.16);
}

.jw-menu-panel a {
    display: block;
    padding: 10px;
    color: #17231f;
    font-size: 14px;
}

.jw-menu-panel a:last-child {
    margin-top: 8px;
    background: #173f34;
    color: #fff;
    text-align: center;
    border-radius: 10px;
}

/* ===== HERO ===== */
.jw-hero {
    overflow: hidden;
    min-height: 720px;
    padding: 88px 0 72px;
    background: #17231f;
    color: #fff;
}

.jw-hero-grid {
    width: var(--wrap, min(1240px, calc(100vw - 48px)));
    margin: auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 70px;
    align-items: center;
}

.jw-hero h1 {
    max-width: 700px;
    margin: 24px 0;
    font: 400 clamp(48px, 6vw, 82px)/0.99 Georgia, serif;
    letter-spacing: -0.045em;
}

.jw-hero h1 em {
    color: #d6bea2;
    font-weight: 400;
}

.jw-hero-copy {
    max-width: 610px;
    color: #cbd5d0;
    font-size: 17px;
    line-height: 1.75;
}

.jw-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.jw-btn-primary {
    background: #c69b6b;
    color: #14211d;
}

.jw-btn-primary:hover {
    background: #d4ad7a;
    color: #14211d;
}

.jw-btn-ghost {
    border: 1px solid rgba(255, 255, 255, 0.32);
    color: #fff;
}

.jw-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.jw-hero-note {
    margin-top: 28px;
    color: #8fa099;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ===== COLLAGE ===== */
.jw-collage {
    position: relative;
    height: 560px;
}

.jw-photo {
    position: absolute;
    overflow: hidden;
    background: #ddd;
}

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

.jw-photo-main {
    inset: 0 72px 55px 0;
    border-radius: 4px 120px 4px 4px;
}

.jw-photo-small {
    right: 0;
    bottom: 0;
    width: 46%;
    height: 42%;
    border: 10px solid #17231f;
    border-radius: 120px 4px 4px 4px;
}

.jw-photo-label {
    position: absolute;
    left: 18px;
    bottom: 17px;
    background: rgba(23, 35, 31, 0.85);
    padding: 10px 13px;
    color: #fff;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* ===== PROOF BAR ===== */
.jw-proof {
    background: #fff;
    border-bottom: 1px solid rgba(23, 35, 31, 0.13);
}

.jw-proof-grid {
    width: var(--wrap, min(1240px, calc(100vw - 48px)));
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.jw-proof-item {
    padding: 27px 24px;
    border-right: 1px solid rgba(23, 35, 31, 0.13);
}

.jw-proof-item strong {
    display: block;
    font: 500 18px Georgia, serif;
}

.jw-proof-item span {
    display: block;
    margin-top: 7px;
    color: #66716b;
    font-size: 12px;
    line-height: 1.5;
}

/* ===== SECTIONS ===== */
.jw-section {
    padding: 110px 0;
}

.jw-section-soft {
    background: #ece8e0;
}

.jw-section-dark {
    background: #173f34;
    color: #fff;
}

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

.jw-section-head h2 {
    max-width: 720px;
    margin: 14px 0 0;
    font: 400 clamp(38px, 5vw, 64px)/1.04 Georgia, serif;
    letter-spacing: -0.04em;
}

.jw-section-head p {
    max-width: 460px;
    margin: 0;
    color: #66716b;
    line-height: 1.75;
}

/* ===== COLLECTIONS ===== */
.jw-collections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.jw-card {
    position: relative;
    min-height: 570px;
    overflow: hidden;
    color: #fff;
}

.jw-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s;
}

.jw-card:hover img {
    transform: scale(1.03);
}

.jw-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 38%, rgba(13, 27, 23, 0.84));
}

.jw-card-content {
    position: absolute;
    z-index: 2;
    left: 34px;
    right: 34px;
    bottom: 32px;
}

.jw-card-label {
    color: #e4c39f;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.jw-card h3 {
    margin: 10px 0;
    font: 400 38px Georgia, serif;
}

.jw-card p {
    max-width: 470px;
    margin: 0 0 18px;
    color: #e1e6e3;
    line-height: 1.6;
}

.jw-text-link {
    color: inherit;
    font-size: 13px;
    font-weight: 800;
}

/* ===== STORY ===== */
.jw-story {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.jw-story-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: end;
}

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

.jw-story-images img:first-child {
    height: 500px;
}

.jw-story-images img:last-child {
    height: 380px;
    margin-bottom: -44px;
}

.jw-story-copy h2 {
    margin: 18px 0 24px;
    font: 400 clamp(40px, 5vw, 64px)/1.04 Georgia, serif;
    letter-spacing: -0.04em;
}

.jw-story-copy > p {
    color: #66716b;
    line-height: 1.8;
}

.jw-steps {
    margin-top: 34px;
    border-top: 1px solid rgba(23, 35, 31, 0.13);
}

.jw-step {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    padding: 21px 0;
    border-bottom: 1px solid rgba(23, 35, 31, 0.13);
}

.jw-step b {
    color: #b98a52;
    font: 400 19px Georgia, serif;
}

.jw-step strong {
    display: block;
    margin-bottom: 5px;
}

.jw-step span {
    color: #66716b;
    font-size: 14px;
    line-height: 1.55;
}

/* ===== SUPPORT GRID ===== */
.jw-support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.jw-support {
    min-height: 290px;
    padding: 34px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.jw-support small {
    color: #d4ad81;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.jw-support h3 {
    font: 400 28px Georgia, serif;
}

.jw-support p {
    color: #c6d2cd;
    line-height: 1.7;
}

.jw-support a {
    color: #fff;
}

/* ===== QUOTE BAND ===== */
.jw-quote-band {
    padding: 86px 0;
    background: #d8c7b1;
}

.jw-quote-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.jw-quote-inner h2 {
    max-width: 760px;
    margin: 0;
    font: 400 clamp(36px, 5vw, 62px)/1.08 Georgia, serif;
    letter-spacing: -0.04em;
}

.jw-quote-inner p {
    color: #4f5a55;
}

.jw-quote-inner .jw-btn {
    background: #17231f;
    color: #fff;
    white-space: nowrap;
}

.jw-quote-inner .jw-btn:hover {
    background: #b98a52;
    color: #17231f;
}

/* ===== PAGE HERO ===== */
.jw-page-hero {
    padding: 86px 0 58px;
    background: #e8e3da;
    border-bottom: 1px solid rgba(23, 35, 31, 0.13);
}

.jw-page-hero h1 {
    max-width: 900px;
    margin: 14px 0 0;
    font: 400 clamp(44px, 7vw, 76px)/1.04 Georgia, serif;
    letter-spacing: -0.04em;
}

.jw-page-body {
    width: min(900px, calc(100vw - 48px));
    margin: auto;
    padding: 70px 0 110px;
}

.jw-page-body h2, .jw-page-body h3 {
    font-family: Georgia, serif;
    font-weight: 400;
}

.jw-page-body p, .jw-page-body li {
    color: #52605a;
    line-height: 1.8;
}

/* ===== FOOTER ===== */
.jw-footer {
    padding: 76px 0 28px;
    background: #101a17;
    color: #c9d2ce;
}

.jw-footer-grid {
    width: var(--wrap, min(1240px, calc(100vw - 48px)));
    margin: auto;
    display: grid;
    grid-template-columns: 1.4fr 0.7fr 0.7fr 1fr;
    gap: 54px;
}

.jw-footer-brand {
    color: #fff;
    font: 400 25px Georgia, serif;
}

.jw-footer-tagline {
    max-width: 310px;
    margin: 16px 0 24px;
    color: #9eada7;
    line-height: 1.7;
}

.jw-footer h4 {
    margin: 0 0 18px;
    color: #fff;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.jw-footer a {
    display: block;
    margin: 10px 0;
    color: #aebbb5;
    font-size: 13px;
}

.jw-footer a:hover {
    color: #d6bea2;
}

.jw-whatsapp {
    display: inline-flex !important;
    background: #d1ab80;
    color: #14201c !important;
    padding: 13px 17px;
    border-radius: 999px;
    font-weight: 800;
}

.jw-whatsapp:hover {
    background: #e0c09a;
    color: #14201c !important;
}

.jw-footer-bottom {
    width: var(--wrap, min(1240px, calc(100vw - 48px)));
    margin: 56px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    color: #71817a;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1000px) {
    :root {
        --wrap: min(100% - 36px, 1240px);
    }
    
    .jw-links {
        display: none;
    }
    
    .jw-menu {
        display: block;
    }
    
    .jw-hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .jw-collage {
        height: 520px;
    }
    
    .jw-proof-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .jw-story {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .jw-support-grid {
        grid-template-columns: 1fr;
    }
    
    .jw-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 700px) {
    :root {
        --wrap: calc(100% - 28px);
    }
    
    .jw-topbar-inner {
        justify-content: center;
    }
    
    .jw-topbar span:last-child {
        display: none;
    }
    
    .jw-nav {
        height: 72px;
    }
    
    .jw-wordmark small {
        display: none;
    }
    
    .jw-hero {
        min-height: 0;
        padding: 54px 0 45px;
    }
    
    .jw-hero h1 {
        font-size: 44px;
    }
    
    .jw-hero-copy {
        font-size: 15px;
    }
    
    .jw-collage {
        height: 390px;
    }
    
    .jw-photo-main {
        inset: 0 40px 44px 0;
        border-radius: 4px 75px 4px 4px;
    }
    
    .jw-photo-small {
        border-width: 7px;
    }
    
    .jw-proof-grid, .jw-collections {
        grid-template-columns: 1fr;
    }
    
    .jw-proof-item {
        padding: 20px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(23, 35, 31, 0.13);
    }
    
    .jw-section {
        padding: 76px 0;
    }
    
    .jw-section-head {
        display: block;
    }
    
    .jw-section-head p {
        margin-top: 22px;
    }
    
    .jw-card {
        min-height: 480px;
    }
    
    .jw-card-content {
        left: 24px;
        right: 24px;
        bottom: 24px;
    }
    
    .jw-story-images img:first-child {
        height: 390px;
    }
    
    .jw-story-images img:last-child {
        height: 300px;
    }
    
    .jw-quote-inner {
        display: block;
    }
    
    .jw-quote-inner .jw-btn {
        margin-top: 28px;
    }
    
    .jw-footer-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }
    
    .jw-footer-bottom {
        display: block;
        line-height: 1.8;
    }
}
