body {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    background: #f6f3ef;
    color: #2c2c2c;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 24px 40px;
    background: #fff;
    border-bottom: 1px solid #ece9e4;
    flex-shrink: 0;
    position: static;
    transform: none;
}

.nav-left img {
    width: 100px;
    height: auto;
    display: block;
        cursor: pointer;
    transition: opacity 0.3s ease;
    }

.nav-left a img:hover {
    opacity: 0.7;

}

nav ul {
    display: flex;
    flex-direction: row;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #2c2c2c;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-decoration: none;
    font-family: 'Jost', sans-serif;
}

.nav-links a:hover  { color: #999; }
.nav-links a.active { font-weight: 500; }

/* ── LAYOUT ── */

.contact-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    min-height: 0;
}

.contact-card {
    background: #fff;
    width: 100%;
    max-width: 900px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}

/* ── LEFT ── */

.contact-left {
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-eyebrow {
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 16px;
    font-weight: 400;
}

.contact-heading {
    font-size: 42px;
    font-weight: 300;
    line-height: 1.15;
    color: #2c2c2c;
}

.contact-heading strong { font-weight: 500; }

.contact-info {
    margin-top: auto;
    padding-top: 48px;
}

.contact-info-label {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #bbb;
    margin-bottom: 20px;
    font-weight: 400;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.contact-icon {
    width: 36px;
    height: 36px;
    border: 1px solid #e5e1dc;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 14px;
    height: 14px;
    stroke: #2c2c2c;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-item-label {
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #bbb;
    margin-bottom: 3px;
    font-weight: 400;
}

.contact-item-value {
    font-size: 13px;
    color: #2c2c2c;
    font-weight: 300;
}

/* ── RIGHT ── */

.contact-right {
    background: #f6f3ef;
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-group { margin-bottom: 16px; }

.form-group label {
    display: block;
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 7px;
    font-weight: 400;
    font-family: 'Jost', sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: #fff;
    border: 1px solid #e5e1dc;
    padding: 11px 14px;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: #2c2c2c;
    outline: none;
    transition: border-color 0.2s;
    border-radius: 0;
    appearance: none;
}

.form-group input:focus,
.form-group textarea:focus { border-color: #2c2c2c; }

.form-group input::placeholder,
.form-group textarea::placeholder { color: #ccc; }

.form-group textarea {
    height: 100px;
    resize: none;
}

.form-feedback {
    font-size: 12px;
    margin-bottom: 8px;
    min-height: 18px;
    font-family: 'Jost', sans-serif;
}

.form-feedback.success { color: #4a7c6f; }
.form-feedback.error   { color: #c0392b; }

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: #2c2c2c;
    color: #fff;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 400;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-submit:hover    { background: #444; }
.btn-submit:disabled { background: #999; cursor: not-allowed; }

.btn-submit svg {
    width: 13px;
    height: 13px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ════════════════════════════════
   TABLET — 1024px
   ════════════════════════════════ */

@media (max-width: 1024px) {

    .contact-wrap { padding: 32px 32px; }

    .contact-left  { padding: 48px 40px; }

    .contact-right { padding: 48px 40px; }

    .contact-heading { font-size: 38px; }

    .contact-info { padding-top: 36px; }
}


/* ════════════════════════════════
   LARGE PHONES — 768px
   ════════════════════════════════ */

@media (max-width: 768px) {

    nav { padding: 18px 24px; }

    nav ul { gap: 18px; }

    .contact-wrap {
        padding: 24px;
        align-items: flex-start;
    }

    /* Stack left above right */
    .contact-card {
        grid-template-columns: 1fr;
    }

    .contact-left {
        padding: 40px 32px 32px;
    }

    .contact-heading { font-size: 34px; }

    .contact-info { padding-top: 28px; }

    .contact-right { padding: 32px 32px 40px; }
}


/* ════════════════════════════════
   IPHONES — 430px
   ════════════════════════════════ */

@media (max-width: 430px) {

    nav { padding: 16px 20px; }

    nav ul { gap: 14px; }

    .contact-wrap { padding: 0; }

    .contact-left { padding: 32px 20px 24px; }

    .contact-heading { font-size: 28px; }

    .contact-info { padding-top: 24px; }

    .contact-right { padding: 24px 20px 32px; }

    .btn-submit {
        width: 100%;
        justify-content: center;
        padding: 13px 20px;
    }
}
