/* --- FONTS --- */
@font-face {
    font-family: 'Didot LP Display';
    src: url('fonts/Didot LP Display.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Futura Light';
    src: url('fonts/Futura Light.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
:root { 
    --sapphire: #142145; 
    --rose: #f2d1c9; 
    --off-white: #F2F0EB; 
}
* { box-sizing: border-box; }
body { 
    font-family: 'Futura Light', sans-serif; 
    margin: 0; 
    border: 15px solid var(--sapphire); 
    min-height: 100vh; 
    display: flex; 
    flex-direction: column; 
    background-color: var(--off-white); 
    color: var(--sapphire);
}
/* --- GENERAL LINKS --- */
a {
    color: var(--sapphire);
    text-decoration: none;
    border-bottom: 1px solid var(--rose);
}
a:hover {
    border-bottom-color: var(--sapphire);
}
/* --- HEADER --- */
header { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 40px 50px; 
}
nav a { 
    margin-left: 30px; 
    text-decoration: none; 
    color: var(--sapphire); 
    text-transform: uppercase; 
    font-size: 0.7rem; 
    letter-spacing: 2px; 
    font-family: 'Futura Light', sans-serif;
    border-bottom: none;
}
nav a:hover {
    border-bottom: none;
    opacity: 0.6;
}
/* --- LOGO FIX (Forces size on ALL pages) --- */
.logo-link,
.logo-link:hover {
    border-bottom: none;
}
.logo-link img { 
    width: 60px !important; 
    height: auto !important; 
    max-width: 60px !important;
    display: block;
}
/* --- HERO --- */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 30px;
}
/* --- HERO LOGO --- */
.hero img.main-logo,
img.main-logo {
    width: 220px !important;
    max-width: 220px !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
}
/* --- HERO TEXT --- */
.hero-text {
    text-align: center;
}
.tagline {
    font-family: 'Futura Light', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--sapphire);
    margin: 0 0 12px 0;
}
.sub-tagline {
    font-family: 'Didot LP Display', Georgia, serif;
    font-size: 1.1rem;
    color: var(--sapphire);
    opacity: 0.7;
    margin: 0;
    font-style: italic;
}
/* --- THE CENTERING ENGINE --- */
.page-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center; 
    padding: 60px 20px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.page-content.fade-out {
    opacity: 0;
    transform: translateY(-10px);
}
/* This is the box that holds your text/forms */
.content-wrapper {
    width: 100%;
    max-width: 600px; 
    display: block;
    text-align: left;
}
h2 { 
    font-family: 'Didot LP Display', Georgia, serif;
    font-size: 3.5rem; 
    font-weight: normal; 
    margin-bottom: 40px; 
    letter-spacing: -1px;
    text-align: left;
}
p {
    font-family: 'Futura Light', sans-serif;
    line-height: 1.8;
}
/* --- FORM ELEMENT RESET --- */
input, textarea, button, select {
    -webkit-appearance: none;
    appearance: none;
    font-family: 'Futura Light', sans-serif;
    font-size: 1rem;
    color: var(--sapphire);
    margin: 0;
}
/* --- CONTACT FORM --- */
form {
    display: block;
    width: 100%;
    text-align: left;
}
.field-group {
    display: block;
    width: 100%;
    margin-bottom: 30px;
}
.field-group label {
    display: block;
    width: 100%;
    font-family: 'Futura Light', sans-serif;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: var(--sapphire);
}
.field-group input,
.field-group textarea {
    display: block;
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid var(--rose);
    border-radius: 0;
    background: transparent;
    font-family: 'Futura Light', sans-serif;
    font-size: 1.1rem;
    outline: none;
    color: var(--sapphire);
    box-shadow: none;
}
.field-group textarea {
    resize: vertical;
    min-height: 120px;
}
/* --- CAPTCHA SPACING --- */
.h-captcha {
    margin-bottom: 30px;
}
button#submit-btn {
    display: block;
    width: 100%;
    background: var(--sapphire);
    color: white;
    padding: 22px;
    border: none;
    border-radius: 0;
    font-family: 'Futura Light', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
}
/* --- PACKAGES INTRO --- */
.packages-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px auto;
    opacity: 0.8;
    line-height: 1.8;
}
/* --- PACKAGES GRID --- */
.packages-page .content-wrapper { max-width: 1000px; }
.packages-page h2 { text-align: center; }
.grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 30px; 
}
.card { background: white; border: 1px solid var(--rose); padding: 40px; text-align: left; }
.card:nth-child(3) {
    grid-column: span 2;
    justify-self: center;
    width: 100%;
    max-width: 485px;
}
/* --- FOOTER --- */
footer {
    padding: 40px 20px;
    text-align: center;
    font-family: 'Futura Light', sans-serif;
    font-size: 0.6rem;
    text-transform: uppercase;
}
footer a {
    color: var(--sapphire);
    text-decoration: none;
    border-bottom: 1px solid var(--rose);
}
footer a:hover {
    border-bottom-color: var(--sapphire);
}
/* --- HAMBURGER BUTTON --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--sapphire);
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}
.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
/* --- DESKTOP OVERRIDES --- */
@media (min-width: 769px) {
    .hero img.main-logo,
    img.main-logo {
        width: 320px !important;
        max-width: 320px !important;
    }
}
/* --- MOBILE --- */
@media (max-width: 768px) {
    body { border-width: 8px; }

    header {
        padding: 24px 20px;
        position: relative;
        z-index: 100;
    }

    .menu-toggle {
        display: flex;
    }
    #nav-menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--off-white);
        z-index: 999;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }
    #nav-menu.active {
        opacity: 1;
        pointer-events: all;
    }
    #nav-menu a {
        margin: 0;
        font-size: 1.1rem;
        letter-spacing: 4px;
        border-bottom: none;
    }

    h2 {
        font-size: 2.4rem;
        margin-bottom: 30px;
    }

    .hero img.main-logo,
    img.main-logo {
        width: 160px !important;
        max-width: 160px !important;
    }

    .page-content {
        padding: 40px 20px;
    }

    .grid { grid-template-columns: 1fr; }
    .card:nth-child(3) { grid-column: span 1; max-width: 100%; }
    .card { padding: 28px; }

    footer { padding: 30px 20px; }
}
/* --- WHAT WE DO PAGE --- */
.about-wrapper {
    max-width: 960px;
}
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.about-image img {
    width: 100%;
    height: auto;
    display: block;
}
.about-text h2 {
    margin-top: 0;
    margin-bottom: 20px;
}
.about-lead {
    font-family: 'Didot LP Display', Georgia, serif;
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 1.4em;
}
.about-text p {
    margin-bottom: 1.4em;
}
.about-text p:last-child {
    margin-bottom: 0;
}
@media (max-width: 768px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* --- CTA BUTTON --- */
a.cta-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 28px;
    background: var(--sapphire);
    color: white;
    font-family: 'Futura Light', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    border: none;
    border-bottom: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
}
a.cta-btn:hover {
    opacity: 0.8;
    border-bottom: none;
}

/* --- CTA BUTTON OVERRIDE --- */
a.cta-btn,
a.cta-btn:link,
a.cta-btn:visited {
    display: inline-block !important;
    margin-top: 30px !important;
    padding: 14px 28px !important;
    background: var(--sapphire) !important;
    color: white !important;
    font-family: 'Futura Light', sans-serif !important;
    font-size: 0.7rem !important;
    text-transform: uppercase !important;
    letter-spacing: 3px !important;
    border: none !important;
    border-bottom: none !important;
    cursor: pointer !important;
    transition: opacity 0.2s ease !important;
}
a.cta-btn:hover {
    opacity: 0.8 !important;
    border-bottom: none !important;
}

.card {
    display: flex;
    flex-direction: column;
}

.card .cta-btn {
    display: block;
    text-align: center;
    margin-top: auto;
}

/* --- SOCIAL MEDIA ICONS --- */

.social-icons {
    display: inline-flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 12px;
}

.social-icons a {
    display: flex;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.social-icons a:hover {
    opacity: 1;
}

.social-icons img {
    width: 18px;
    height: 18px;
    filter: invert(11%) sepia(47%) saturate(1200%) hue-rotate(196deg) brightness(90%) contrast(95%);
}