@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&family=Parisienne&display=swap');

:root {
    --color-bg-primary: #fcf7f1; /* Off-white */
    --color-gradient-start: #f8c9f5; /* Soft pink */
    --color-gradient-mid: #e1d3fb; /* Soft purple */
    --color-gradient-end: #fdf0c0; /* Soft yellow */
    --color-text-dark: #231f20; /* Soft black for readability */
    --color-text-light: #5a5550; /* Warm gray for body text */
    --color-accent: #d8a7b1; /* Muted pink */

    --font-body: 'Montserrat', sans-serif;
    --font-display: 'Cormorant Garamond', serif;
    --font-script: 'Parisienne', cursive;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    background: rgba(255, 252, 248, 0.92);
    background-blend-mode: overlay;
    line-height: 1.6;
    letter-spacing: 0.01em;
}

h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.1;
}

.logo-text {
    font-family: var(--font-script);
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1;
}

.hero h1 {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.1;
}

/* --- Header & Nav --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 5%;
    background: rgba(252, 247, 241, 0.92);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.logo-text {
    font-family: var(--font-script);
    font-size: clamp(2rem, 3vw, 3rem);
    text-decoration: none;
    color: var(--color-text-dark);
    letter-spacing: 0.03em;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: var(--color-text-dark);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--color-accent);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 0.28rem;
    width: 2.8rem;
    height: 2.8rem;
    padding: 0.55rem;
    border: 1px solid rgba(35, 31, 32, 0.15);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    margin-left: auto;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.nav-toggle:hover {
    border-color: rgba(35, 31, 32, 0.3);
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-text-dark);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.btn-headway {
    display: inline-block;
    background-color: var(--color-text-dark);
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
}

.btn-headway:hover {
    background-color: var(--color-accent);
}

/* --- Footer --- */
footer {
    background: linear-gradient(135deg, #463b36 0%, #2d2523 100%);
    color: #f8f1ee;
    padding: 2.1rem 1.5rem 2.4rem;
    margin-top: 4rem;
    border-top: 2px solid rgba(234, 201, 185, 0.7);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-meta,
.footer-email,
.footer-copy {
    margin: 0;
    line-height: 1.4;
}

.footer-meta {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2vw, 2rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #f8efe9;
}

.footer-email {
    color: #e8c5cf;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.01em;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.footer-email:hover,
.footer-email:focus {
    color: #f7dfe6;
    opacity: 1;
}

.footer-copy {
    font-size: 0.9rem;
    color: rgba(248, 239, 233, 0.76);
    text-align: right;
}

@media (max-width: 768px) {
    header {
        flex-wrap: wrap;
    }

    .nav-toggle {
        display: flex;
    }

    nav {
        width: 100%;
        order: 3;
    }

    nav ul {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        padding: 0 0.75rem;
        border-top: 0 solid rgba(35, 31, 32, 0.1);
        transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.25s ease, border-top-width 0.25s ease;
    }

    nav.open ul {
        max-height: 300px;
        opacity: 1;
        padding: 1rem 0.75rem 0.5rem;
        border-top-width: 1px;
        border-top-style: solid;
        background: rgba(252, 247, 241, 0.85);
        border-radius: 0 0 18px 18px;
    }

    nav a {
        display: block;
        padding: 0.25rem 0;
    }

    footer {
        padding: 2rem 1rem;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .footer-copy {
        text-align: center;
    }
}
