/* global.css v4.1 - Final Universal Architecture & Mobile Break Control */
:root {
    --navy: #184d73;
    --beige: #f7ecd9;
    --grey-solid: #545454;
}

* { box-sizing: border-box; } 

body {
    margin: 0; padding: 0;
    background-color: var(--beige);
    color: var(--navy);
    font-family: "Cormorant Garamond", serif;
    font-size: 20px;
    line-height: 1.55;
    overflow-x: hidden;
}

.full-grey-bar { width: 100%; background-color: var(--grey-solid); }
.content-anchor { width: 70%; max-width: 1100px; margin: 0 auto; }

.masthead { height: 140px; display: flex; align-items: center; position: sticky; top: 0; z-index: 999; }
.logo-container img { height: 110px; width: auto; display: block; }
nav { display: flex; gap: 45px; align-items: center; }
nav a { color: white; text-decoration: none; font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

.dropdown { position: relative; display: inline-block; }
.dropdown-content { display: none; position: absolute; background-color: var(--grey-solid); min-width: 220px; z-index: 1000; top: 100%; left: 0; padding: 10px 0; }
.dropdown:hover .dropdown-content { display: block; }
.dropdown-content a { color: white; padding: 12px 20px; text-decoration: none; display: block; font-size: 11px; }

footer { padding: 40px 0; color: white; font-family: 'Montserrat', sans-serif; font-size: 11px; text-transform: uppercase; }
.footer-wide-container { width: 94%; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.tagline-pc { font-weight: 700; font-size: 14px; text-align: center; flex: 2; white-space: nowrap; }

/* THE SURGICAL FIX FOR THE MOBILE FOOTER BREAK */
.tagline-pc br { display: none; }

@media (max-width: 900px) {
    .content-anchor { width: 90%; flex-direction: column; text-align: center; }
    .masthead { height: auto; padding: 25px 0; }
    .masthead .content-anchor { flex-direction: column; gap: 15px; }
    nav { flex-direction: column; gap: 15px; }
    
    .footer-wide-container { flex-direction: column; gap: 20px; text-align: center; width: 90%; }
    .tagline-pc { white-space: normal; font-size: 13px; line-height: 1.6; }
    .tagline-pc br { display: block !important; } /* Forces break after comma ONLY on mobile */
}