/* Base + mobile (< 768px). Tablet/desktop overrides live in tablet.css / desktop.css */

:root {
    --color-gold: #a69257;
    --color-dark: #000000;
    --color-text: #000000;
    --color-white: #ffffff;
    --color-muted-bg: #f0f5fa;
    --color-accent-green: #3d9a5c;
    --font: 'Montserrat', system-ui, -apple-system, sans-serif;
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --focus: #046bd2;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 100%;
}

body {
    margin: 0;
    font-family: var(--font);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--color-text);
    background: var(--color-muted-bg);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-gold);
    text-decoration: none;
}

a:hover,
a:focus-visible {
    color: var(--color-dark);
}

a:focus-visible {
    outline: 2px dotted var(--focus);
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
    width: auto;
    height: auto;
    padding: 0.5rem 1rem;
    background: var(--color-white);
    z-index: 1000;
    clip: auto;
}

.site {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-main,
.site-content {
    flex: 1;
    width: 100%;
}

.desktop-only {
    display: none !important;
}

.mobile-only {
    display: block;
}

/* ——— Header ——— */
.site-header-custom {
    background: var(--color-white);
    border-bottom: none;
    position: relative;
    padding: 0.5rem 1rem 0;
}

@media (max-width: 1023.98px) {
    .site-header-custom {
        position: sticky;
        top: 0;
        z-index: 300;
        box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
    }
}

.site-header-custom .header-inner {
    border-bottom: 1px solid #e0e0e0;
}

.mobile-menu-toggle {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    margin-right: 0.25rem;
    margin-left: -0.35rem;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    border-radius: 4px;
    align-self: center;
}

.mobile-menu-toggle:focus-visible {
    outline: 2px dotted var(--focus);
    outline-offset: 2px;
}

.hamburger-icon,
.hamburger-icon::before,
.hamburger-icon::after {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-dark);
    border-radius: 1px;
    margin: 0 auto;
    position: relative;
}

.hamburger-icon::before,
.hamburger-icon::after {
    content: '';
    position: absolute;
    left: 0;
}

.hamburger-icon::before {
    top: -7px;
}

.hamburger-icon::after {
    top: 7px;
}

.header-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 4.5rem;
    gap: 0.35rem;
}

.header-contact-left {
    display: none;
}

.header-logo-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header-logo-link {
    display: inline-block;
    text-decoration: none;
    color: inherit;
}

.header-logo-link:hover .logo-atlanta,
.header-logo-link:focus-visible .logo-atlanta {
    color: var(--color-accent-green);
}

.header-logo-link:focus-visible {
    outline: 2px dotted var(--focus);
    outline-offset: 4px;
}

.logo-wordmark {
    display: block;
    text-align: center;
    line-height: 1.05;
}

.logo-atlanta {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 500;
    font-size: clamp(1.85rem, 7vw, 2.5rem);
    color: var(--color-dark);
    letter-spacing: -0.02em;
}

.logo-tagline {
    display: block;
    margin-top: 0.2rem;
    font-family: var(--font);
    font-weight: 600;
    font-size: clamp(0.55rem, 2.8vw, 0.7rem);
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--color-dark);
    padding-left: 0.35em;
}

.header-contact-right {
    min-width: 44px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header-phone-icon-only {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--color-dark);
}

.header-phone-icon-only:hover,
.header-phone-icon-only:focus-visible {
    color: #333333;
}

.header-svg {
    flex-shrink: 0;
    display: block;
}

.header-phone--accent {
    color: var(--color-accent-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    align-items: center;
    gap: 0.45rem;
}

.header-phone--accent:hover,
.header-phone--accent:focus-visible {
    color: #2a7a45;
}

.header-email {
    color: var(--color-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8125rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    align-items: center;
    gap: 0.45rem;
}

.header-email:hover,
.header-email:focus-visible {
    color: var(--color-accent-green);
}

.header-email .header-svg--mail {
    color: var(--color-dark);
}

/* Mobile flyout: full-width black panel */
.mobile-nav {
    background: #000000;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: max-height 0.32s ease, visibility 0.32s;
}

.mobile-nav.is-open {
    max-height: min(88vh, 720px);
    overflow: auto;
    visibility: visible;
    -webkit-overflow-scrolling: touch;
}

.header-menu,
.header-menu-mobile {
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-menu-mobile {
    padding: 0.35rem 0 1.25rem;
}

.header-menu-mobile .menu-link,
.mobile-nav .menu-link {
    display: block;
    padding: 1.15rem 1.5rem;
    color: var(--color-white);
    font-weight: 500;
    text-transform: none;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    text-align: center;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-nav .menu-item:last-child .menu-link {
    border-bottom: none;
}

.mobile-nav .menu-link:hover,
.mobile-nav .menu-link:focus-visible {
    background: rgba(255, 255, 255, 0.06);
    color: var(--color-white);
}

.mobile-nav .current-menu-item > .menu-link {
    color: var(--color-white);
    font-weight: 600;
}

/* Black nav bar (desktop); hidden on small screens via .desktop-only */
.header-nav.desktop-only {
    display: none;
}

/* CTA: white bar, black copy, green phone link */
.header-cta-row {
    background: var(--color-white);
    color: var(--color-dark);
    text-align: center;
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 0.55rem 1rem;
    margin: 0;
    border-top: 1px solid #e8e8e8;
}

.header-cta {
    display: inline;
}

.header-cta-text {
    color: var(--color-dark);
}

.header-cta-phone {
    margin-left: 0.35rem;
    color: var(--color-accent-green);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
}

.header-cta-phone:hover,
.header-cta-phone:focus-visible {
    color: #2a7a45;
}

.content-wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 2rem 1.25rem;
    background: var(--color-white);
    min-height: 12rem;
}

.page-title {
    margin: 0 0 0.75rem;
    font-size: 1.875rem;
    font-weight: 600;
    color: #1a1a1a;
}

.lead {
    margin: 0;
    max-width: 60ch;
}
