/* ============================================================
   GLOBAL SIDEBAR — SAME ON ALL PAGES
   ============================================================ */

.global-layout {
    display: flex;
    width: 100%;
    min-height: 100vh;
}

.global-sidebar {
    width: 20%;
    min-width: 180px;
    padding: 60px 32px 40px 32px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.global-sidebar-logo img {
    max-width: 120px;
    height: auto;
    margin-bottom: 40px;
}

.global-sidebar-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.global-sidebar-menu li {
    margin-bottom: 12px;
}

.global-sidebar-menu a {
    text-decoration: none;
    color: #777;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.global-sidebar-menu a.is-active {
    color: #111;
    font-weight: 600;
}

/* ============================================================
   CONTACT PAGE — RIGHT CONTENT AREA
   ============================================================ */

.contact-wrapper {
    width: 80%;
    display: flex;
    flex-direction: column;

    /* keep original spacing */
    padding-left: 80px;
    padding-top: 0;

    box-sizing: border-box;
    color: #666;
    font-family: "aw-conqueror-didot", serif;
}

/* ⭐ MOVE ONLY THE 3-LINE TEXT BLOCK */
.contact-header {
    position: relative;
    left: 60px;   /* move RIGHT */
    top: 140px;   /* move DOWN */
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-name {
    font-size: 22px;
    font-weight: 300;
    margin: 0;
    letter-spacing: 0.02em;
}

.contact-email,
.contact-instagram {
    font-size: 15px;
    font-weight: 300;
    color: #666;
    text-decoration: none;
    letter-spacing: 0.03em;
}

.contact-email:hover,
.contact-instagram:hover {
    opacity: 0.6;
}

/* Form (unused but safe to keep) */
.contact-form {
    width: 360px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-field label {
    font-size: 14px;
    font-weight: 300;
}

.contact-line {
    width: 100%;
    height: 1px;
    background: black;
}

.contact-field input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 13px;
    color: #666;
    padding: 0;
    margin: 0;
    line-height: 1.2;
    transform: translateY(0);
}

.contact-message textarea {
    border: none;
    background: transparent;
    outline: none;
    font-size: 13px;
    color: #666;
    resize: none;
    padding: 0;
    margin: 0;
    line-height: 1.2;
    height: 120px;
}

.contact-form button {
    width: 120px;
    padding: 10px 0;
    background: black;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.contact-form button:hover {
    opacity: 0.7;
}

/* Thank you */
.contact-thankyou {
    font-size: 18px;
    font-weight: 300;
    color: #666;
}