:root {
    --magenta: #d94aa8;
    --magenta-dark: #c43f96;
    --silver: #c6ccd1;
    --bg: #fff9fb;
    --text: #2b2b2b;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Montserrat", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

/* FIXED LOGO RESPONSIVENESS */
.logo img{
    width: 60px;
    height: auto;
    margin-right: 12px;
}

/* IMPROVED CONTAINER */
.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 16px;
}

/* Header */
.header {
    background: white;
    padding: 16px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* NEW */
}

.brand {
    display: flex;
    gap: 12px;
    align-items: center;
}

nav {
    display: flex;
    flex-wrap: wrap; /* NEW */
}

nav a {
    margin-left: 18px;
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
}

#tomail {
    margin-top: 4px;
}

/* Buttons */
.btn-primary {
    background: var(--magenta);
    color: white;
    padding: 12px 18px;
    border-radius: 10px;
    text-decoration: none;
}

.btn-outline {
    border: 1px solid var(--magenta);
    color: var(--magenta);
    padding: 12px 18px;
    border-radius: 10px;
    text-decoration: none;
}

/* Hero */
.hero {
    padding: 40px 0;
}

.hero-inner {
    display: flex;
    gap: 40px;
    align-items: center;
}

/* FIXED TEXT SCALING */
.hero-text h2 {
    font-family: "Playfair Display", serif;
    font-size: 28px;
    margin: 10px 0;
}

.tag {
    color: var(--magenta);
    font-weight: 700;
    font-size: 13px;
}

.hero-image img {
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
}

/* Sections */
.section {
    padding: 40px 0;
}

.section.light {
    background: white;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.card h3 {
    margin-bottom: 12px;
}

.card ul {
    padding-left: 18px;
}

/* Form */
.contact-form {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-form input,
.contact-form textarea {
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-family: inherit;
    width: 100%; /* NEW */
}

/* Footer */
.footer {
    background: #fff;
    padding: 20px 0;
    margin-top: 40px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* NEW */
    gap: 12px;
}

/* ============================= */
/* MOBILE OPTIMISATION */
/* ============================= */

@media (max-width: 768px) {

    /* Stack header */
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    nav {
        margin-top: 10px;
    }

    nav a {
        margin-left: 0;
        margin-right: 16px;
        margin-bottom: 8px;
    }

    /* Stack hero */
    .hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h2 {
        font-size: 24px;
    }

    /* Improve spacing */
    .section {
        padding: 30px 0;
    }

    /* Footer stack */
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

}

/* SMALL PHONE OPTIMISATION */
@media (max-width: 480px) {

    .hero-text h2 {
        font-size: 22px;
    }

    .container {
        padding: 0 12px;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        text-align: center;
    }

}
