:root {
    --page-bg: #f6f3ef;
    --surface: #ffffff;
    --text: #000000;
    --muted: #1f1f1f;
    --accent: #6b0f1a;
    --border: rgba(31, 31, 31, 0.12);
    --shadow: 0 18px 40px rgba(36, 20, 14, 0.12);
    --radius: 22px;
    --container: 1120px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Times New Roman", Times, serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(107, 15, 26, 0.08), transparent 32%),
        linear-gradient(180deg, #fbf8f5 0%, var(--page-bg) 100%);
}

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

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.site-header .container {
    width: min(calc(100% - 1rem), 1400px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    min-height: 72px;
}

.brand {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(107, 15, 26, 0.14);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--accent);
    cursor: pointer;
}

.nav-toggle-bars {
    display: grid;
    gap: 5px;
}

.nav-toggle-bars span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    margin-left: auto;
    justify-content: flex-end;
    align-items: center;
    gap: 0.7rem;
}

.site-nav > a,
.nav-dropdown-trigger > a,
.nav-dropdown-toggle {
    color: var(--text);
    font-size: 0.96rem;
    font-weight: 700;
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.site-nav > a:hover,
.site-nav > a:focus-visible,
.site-nav > a.active,
.nav-dropdown-trigger > a:hover,
.nav-dropdown-trigger > a:focus-visible,
.nav-dropdown-trigger > a.active,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible {
    color: var(--accent);
    background: rgba(107, 15, 26, 0.06);
}

.site-nav > a.active,
.nav-dropdown-trigger > a.active {
    text-decoration: underline;
    text-underline-offset: 0.28rem;
}

.nav-dropdown {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: stretch;
}

.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
}

.nav-dropdown-trigger > a {
    display: inline-flex;
    align-items: center;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.nav-caret {
    color: var(--accent);
    font-size: 0.82rem;
    line-height: 1;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.25rem);
    left: 0;
    min-width: 280px;
    max-width: min(320px, calc(100vw - 2rem));
    padding: 0.45rem;
    display: none;
    background: #ffffff;
    border: 1px solid rgba(107, 15, 26, 0.14);
    border-radius: 16px;
    box-shadow: 0 18px 34px rgba(36, 20, 14, 0.12);
}

.dropdown-menu a {
    display: block;
    padding: 0.72rem 0.85rem;
    border-radius: 12px;
    color: var(--accent);
    font-size: 0.95rem;
    font-weight: 700;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
    background: rgba(107, 15, 26, 0.06);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.is-open .dropdown-menu {
    display: block;
}

.site-nav .nav-dropdown:last-child .dropdown-menu {
    left: auto;
    right: 0;
}

.eyebrow {
    margin: 0 0 0.6rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    opacity: 0.86;
}

.page-hero {
    padding: 5rem 0 2rem;
    text-align: center;
}

.page-hero h1 {
    margin: 0;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.12;
}

.content-section {
    padding: 5.5rem 0;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
}

.info-card {
    padding: 1.8rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 30px rgba(36, 20, 14, 0.06);
}

.info-card h3 {
    margin: 0 0 0.8rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.info-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.alt {
    background: linear-gradient(180deg, rgba(91, 15, 0, 0.04), rgba(91, 15, 0, 0.08));
}

.social-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0.9rem 1.4rem;
    border-radius: 999px;
    background: #000000;
    color: #f9f9f9;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.button:focus-visible {
    background: #111111;
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.22);
}

.icon-button {
    gap: 0.75rem;
}

.icon-button i,
.footer-contact i {
    color: var(--accent);
    font-size: 1.2rem;
}

.secondary-button {
    background: #111111;
}

.site-footer {
    padding: 2.4rem 0 3rem;
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

.footer-label {
    margin: 0;
    color: var(--muted);
    font-size: 0.98rem;
}

.footer-contact p {
    margin: 0 0 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.footer-contact a {
    color: var(--text);
    font-weight: 700;
}

.footer-contact-icons {
    display: flex;
    justify-content: center;
    gap: 0.85rem;
}

.footer-contact-heading {
    margin: 0 1rem 1rem;
    color: var(--muted);
    font-size: 0.98rem;
    font-weight: 500;
    text-align: center;
}

.footer-contact-icon {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(107, 15, 26, 0.16);
    border-radius: 50%;
    background: #fffdfb;
    color: var(--accent);
    font-size: 1.3rem;
    box-shadow: 0 6px 16px rgba(36, 20, 14, 0.06);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.footer-contact-icon:hover,
.footer-contact-icon:focus-visible {
    background: rgba(107, 15, 26, 0.07);
    transform: translateY(-2px);
}

.site-signature {
    margin: 1.4rem 0 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    color: #5e4a47;
    font-size: 0.92rem;
}

.site-signature i {
    color: var(--accent);
    font-size: 0.95rem;
}

@media (max-width: 900px) {
    .header-inner {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        display: grid;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        grid-column: 1 / -1;
        width: 100%;
        margin-left: 0;
        justify-content: flex-start;
        align-items: stretch;
        flex-direction: column;
        gap: 0.7rem;
        padding-top: 0.6rem;
    }

    .nav-ready .site-nav {
        display: none;
    }

    .nav-ready .site-nav.is-open {
        display: flex;
    }

    .site-nav > a,
    .nav-dropdown-trigger > a {
        width: 100%;
    }

    .nav-dropdown {
        display: block;
        width: 100%;
    }

    .nav-dropdown-trigger {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 0.45rem;
    }

    .nav-dropdown-trigger > a {
        min-width: 0;
        justify-content: flex-start;
    }

    .nav-dropdown-toggle {
        min-width: 44px;
        min-height: 44px;
        padding: 0;
        border: 1px solid rgba(107, 15, 26, 0.14);
        background: rgba(107, 15, 26, 0.04);
    }

    .nav-dropdown:hover .dropdown-menu,
    .nav-dropdown:focus-within .dropdown-menu {
        display: none;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .content-section {
        padding: 4.2rem 0;
    }

    .dropdown-menu {
        position: static;
        min-width: 100%;
        max-width: none;
        margin-top: 0.35rem;
        padding: 0.35rem;
        box-shadow: none;
        transform: none;
    }

    .site-nav .nav-dropdown:last-child .dropdown-menu {
        right: auto;
    }

    .nav-dropdown.is-open .dropdown-menu {
        display: grid;
        width: 100%;
    }

    .dropdown-menu a {
        width: 100%;
        white-space: normal;
        line-height: 1.4;
        text-align: left;
    }

}

@media (max-width: 640px) {
    .header-inner {
        min-height: auto;
        padding: 0.9rem 0;
    }

    .brand {
        font-size: 1rem;
    }

    .info-card {
        padding: 1.4rem;
    }

    .button {
        width: 100%;
    }
}
