/* ======================================== */
/* IMPORT FONTS                             */
/* ======================================== */

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

/* ======================================== */
/* GLOBAL RESETS & BASE STYLES              */
/* ======================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', system-ui, -apple-system, Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.75;
    color: #222222;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Prevent scroll when lightbox is open */
body.lightbox-open {
    overflow: hidden;
}

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

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

ul,
ol {
    list-style: none;
}

address {
    font-style: normal;
}

/* Container */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Global Typography */
h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.12;
    color: #ffffff;
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -0.3px;
    line-height: 1.22;
    color: #153821;
}

h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: normal;
    line-height: 1.35;
    color: #ffffff;
}

p {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.75;
    color: #222222;
}

.section-eyebrow {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    line-height: 1;
    color: #153821;
    text-transform: uppercase;
    margin-bottom: 14px;
}

/* ======================================== */
/* HEADER SECTION                           */
/* ======================================== */

.main-header {
    width: 100%;
    height: 130px;
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #153821;
    box-shadow: 0 3px 14px rgba(21, 56, 33, 0.13);
    transition: box-shadow 0.3s ease;
}

.main-header.scrolled {
    box-shadow: 0 4px 22px rgba(21, 56, 33, 0.22);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo {
    height: 96px;
    max-height: 96px;
    width: auto;
    display: block;
}

/* --- Nav List --- */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.4px;
    line-height: 1;
    color: #153821;
    padding: 10px 18px;
    border-radius: 4px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-link:hover {
    color: #051E0B;
    background-color: rgba(21, 56, 33, 0.10);
}

.nav-link.active {
    color: #fff;
    background-color: #153821;
}

/* --- Hamburger Button --- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
    z-index: 1100;
}

.hamburger:focus-visible {
    outline: 2px solid #153821;
    outline-offset: 2px;
    border-radius: 4px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background-color: #153821;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ======================================== */
/* HERO SECTION                             */
/* ======================================== */

.hero-section {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #051E0B;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2000ms ease-in-out;
    will-change: opacity;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        175deg,
        rgba(0, 0, 0, 0.28) 0%,
        rgba(0, 0, 0, 0.65) 100%
    );
    z-index: 1;
}

.hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 54px;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.0;
    color: #ffffff;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.85), 0 0 60px rgba(0, 0, 0, 0.6);
    max-width: 820px;
    margin-bottom: 18px;
}

.hero-title-top {
    display: block;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
    margin-bottom: 6px;
}

.tagline-break {
    display: none;
}

.hero-tagline {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.2px;
    line-height: 1.5;
    color: #ffffff;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 0, 0, 0.5);
    max-width: 560px;
    margin-bottom: 36px;
}


/* ======================================== */
/* SECTION 1: ALERT SECTION                 */
/* ======================================== */

.alert-section {
    width: 100%;
    background-color: #b91c1c;
    padding: 0;
}

.alert-inner {
    display: flex;
    align-items: stretch;
    min-height: 52px;
}

/* --- Alert Badge (left pill) --- */
.alert-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    background-color: rgba(0, 0, 0, 0.25);
    padding: 0 22px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1;
    color: #ffffff;
    text-transform: uppercase;
}

.alert-badge-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #ffffff;
}

.alert-divider {
    width: 1px;
    background-color: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
}

/* --- Ticker --- */
.alert-ticker-wrap {
    flex: 1;
    overflow: hidden;
    min-width: 0;
    display: flex;
    align-items: center;
    padding: 0 12px;
}

.ticker-viewport {
    flex: 1;
    overflow: hidden;
    min-width: 0;
}

.ticker-inner {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    animation: tickerScroll 40s linear infinite;
}

.ticker-inner:hover {
    animation-play-state: paused;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2px;
    line-height: 1;
    color: #ffffff;
    padding-right: 60px;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.ticker-item:hover {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.ticker-dot {
    display: inline-block;
    width: 5px;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.65);
    border-radius: 50%;
    flex-shrink: 0;
}

@keyframes tickerScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- Emergency Column --- */
.alert-emergency {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 0 22px;
    border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.emergency-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.85);
}

.emergency-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.emergency-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
}

.emergency-phone {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1.2;
    color: #ffffff;
    transition: color 0.2s ease;
}

.emergency-phone:hover {
    color: rgba(255, 255, 255, 0.82);
}

/* ======================================== */
/* SECTION 2: WELCOME SECTION               */
/* ======================================== */

.welcome-section {
    width: 100%;
    padding: 96px 0;
    background-color: #ffffff;
}

.welcome-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

.welcome-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -0.3px;
    line-height: 1.22;
    color: #153821;
    margin-bottom: 22px;
}

.welcome-text p {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.78;
    color: #222222;
    margin-bottom: 18px;
}

.body-subheading {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: normal;
    line-height: 1.35;
    color: #153821;
    margin-top: 26px;
    margin-bottom: 12px;
}

.body-quote {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: normal;
    line-height: 1.6;
    color: #153821;
    border-left: 4px solid #153821;
    padding: 10px 18px;
    margin: 22px 0 30px;
    background-color: #f3f7f4;
    border-radius: 0 4px 4px 0;
    font-style: italic;
}

.btn-primary {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.2px;
    line-height: 1;
    color: #ffffff;
    background-color: #153821;
    padding: 15px 34px;
    border-radius: 4px;
    text-transform: uppercase;
    transition: background-color 0.25s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: #051E0B;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.2px;
    line-height: 1;
    color: #153821;
    background-color: transparent;
    border: 2px solid #153821;
    padding: 13px 32px;
    border-radius: 4px;
    text-transform: uppercase;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.btn-secondary:hover {
    background-color: #153821;
    color: #ffffff;
    transform: translateY(-2px);
}

/* --- Welcome Images (full display, no crop) --- */
.welcome-images {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: sticky;
    top: 150px;
}

.welcome-img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    display: block;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

/* ======================================== */
/* SECTION 3: COMMUNITY SECTION             */
/* ======================================== */

.community-section {
    width: 100%;
    padding: 96px 0;
    background-color: #f5f5f3;
}

.community-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

.community-image {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    position: sticky;
    top: 150px;
}

.community-img {
    width: 100%;
    height: auto;
    max-height: 620px;
    object-fit: cover;
    display: block;
}

.community-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -0.3px;
    line-height: 1.22;
    color: #153821;
    margin-bottom: 22px;
}

.community-text p {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.78;
    color: #222222;
    margin-bottom: 18px;
}

.community-text p:last-of-type {
    margin-bottom: 28px;
}

/* ======================================== */
/* SECTION 4: GALLERY SECTION               */
/* ======================================== */

.gallery-section {
    width: 100%;
    padding: 96px 0;
    background-color: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 52px;
}

.section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.3px;
    line-height: 1.25;
    color: #153821;
    margin-bottom: 14px;
}

.section-intro {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.65;
    color: #555555;
    max-width: 580px;
    margin: 0 auto;
}

/* --- Gallery Grid --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 5px;
    aspect-ratio: 4 / 3;
    background-color: #e0e0e0;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.gallery-item:hover img {
    transform: scale(1.07);
}

/* ======================================== */
/* SECTION 5: PARALLAX SECTION              */
/* ======================================== */

.parallax-section {
    position: relative;
    width: 100%;
    min-height: 560px;
    background-image: url('images/parallax-home.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.38) 0%,
        rgba(0, 0, 0, 0.58) 100%
    );
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 20px;
    max-width: 860px;
    width: 90%;
}

.parallax-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -0.3px;
    line-height: 1.18;
    color: #ffffff;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
    margin-bottom: 18px;
}

.parallax-sub {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: normal;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 14px;
}

.parallax-cta-line {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.2px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 32px;
}


/* ======================================== */
/* FAT FOOTER SECTION                       */
/* ======================================== */

.fat-footer {
    width: 100%;
    background-color: #051E0B;
    padding: 72px 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.footer-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-assoc-name {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: normal;
    line-height: 1.4;
    color: #ffffff;
    margin-bottom: 8px;
}

.footer-address {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 22px;
}

.footer-phone-main {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 20px;
    transition: color 0.2s ease;
}

.footer-phone-main:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer-emergency {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 32px;
}

.footer-emergency-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
}

.footer-emergency-phone {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.3px;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.82);
    transition: color 0.2s ease;
}

.footer-emergency-phone:hover {
    color: #ffffff;
}

.footer-nav-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
}

.footer-nav-list li a {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.2s ease;
}

.footer-nav-list li a:hover {
    color: #ffffff;
}

/* --- Map Embed --- */
.map-embed-wrap {
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    height: 300px;
    position: relative;
}

.map-embed-wrap iframe {
    display: block;
    width: 100%;
    height: 500px;
    border: 0;
    position: absolute;
    top: -210px;
    left: 0;
}

/* ======================================== */
/* COPYRIGHT FOOTER BAR                     */
/* ======================================== */

.copyright-bar {
    width: 100%;
    background-color: #153821;
    padding: 18px 0;
}

.copyright-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.copyright-text {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.2px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.55);
}

.powered-by {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.2px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.4);
}

.powered-by a {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.2s ease;
}

.powered-by a:hover {
    color: #ffffff;
}

/* ======================================== */
/* MOBILE STICKY PHONE BAR                  */
/* ======================================== */

/* Hidden on desktop — shown only via mobile media query */
.mobile-phone-bar {
    display: none;
}

/* ======================================== */
/* LIGHTBOX                                 */
/* ======================================== */

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.lightbox.open {
    display: flex;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.lightbox-close {
    position: absolute;
    top: 16px;
    right: 20px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: #ffffff;
    font-size: 28px;
    font-weight: 300;
    line-height: 1;
    width: 44px;
    height: 44px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.22);
}

/* Lightbox navigation arrows */
.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: #ffffff;
    font-size: 42px;
    font-weight: 300;
    line-height: 1;
    width: 56px;
    height: 56px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 3px;
    transition: background-color 0.2s ease, transform 0.2s ease;
    user-select: none;
}

.lightbox-arrow:hover {
    background: rgba(255, 255, 255, 0.24);
    transform: translateY(-50%) scale(1.08);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-wrap {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    display: block;
    border-radius: 4px;
    box-shadow: 0 12px 60px rgba(0, 0, 0, 0.6);
}

/* ======================================== */
/* ANIMATIONS & SCROLL EFFECTS              */
/* ======================================== */

.fade-in-up {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
                transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: 0.15s;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ======================================== */
/* SUB-PAGE TITLE BAR                       */
/* ======================================== */

.page-title-bar {
    position: relative;
    width: 100%;
    height: 370px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-title-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.18) 0%,
        rgba(0, 0, 0, 0.42) 100%
    );
    z-index: 1;
}

.page-title-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
}

.page-title-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 800;
    letter-spacing: 3px;
    line-height: 1.1;
    color: #ffffff;
    text-transform: uppercase;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
    margin-bottom: 10px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.75);
}

.breadcrumb a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: #ffffff;
}

.breadcrumb span {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.75);
}

/* ======================================== */
/* BOARD PAGE                               */
/* ======================================== */

.board-section {
    width: 100%;
    padding: 96px 0;
    background-color: #ffffff;
}

.board-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

.board-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -0.3px;
    line-height: 1.25;
    color: #153821;
    margin-bottom: 22px;
}

.board-text p {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.78;
    color: #222222;
    margin-bottom: 18px;
}

.board-list {
    list-style: none;
    margin: 28px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid #e8e8e4;
}

.board-list li {
    font-size: 17px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.5;
    color: #222222;
    padding: 13px 0;
    border-bottom: 1px solid #e8e8e4;
}

.board-list li strong {
    font-weight: 700;
    color: #153821;
}

.board-tagline {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: normal;
    line-height: 1.5;
    color: #153821;
    margin-bottom: 16px;
}

.inline-link {
    font-size: inherit;
    font-weight: 600;
    letter-spacing: normal;
    line-height: inherit;
    color: #153821;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.inline-link:hover {
    color: #051E0B;
}

.board-image {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    position: sticky;
    top: 150px;
}

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

/* Board page parallax override */
.parallax-board {
    background-image: url('images/parallax-board.jpg');
}

/* ======================================== */
/* COMPLEX PAGE                             */
/* ======================================== */

.complex-section {
    width: 100%;
    padding: 96px 0;
    background-color: #ffffff;
}

.complex-inner {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 64px;
    align-items: start;
}

.complex-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -0.3px;
    line-height: 1.25;
    color: #153821;
    margin-bottom: 20px;
}

.complex-text p {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.78;
    color: #222222;
    margin-bottom: 20px;
}

/* --- Unit Lists --- */
.unit-list {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
}

.unit-category {
    background-color: #f3f7f4;
    border-left: 5px solid #153821;
    border-radius: 0 6px 6px 0;
    padding: 14px 20px;
    margin-bottom: 12px;
    position: static;
}

.unit-category strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1.2;
    color: #153821;
    text-transform: uppercase;
}

.unit-sublist {
    list-style: none;
    margin: 0 0 0 8px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.unit-sublist li {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.55;
    color: #333333;
    padding: 8px 8px 8px 30px;
    position: relative;
    border-bottom: 1px solid #eeede8;
}

.unit-sublist li:last-child {
    border-bottom: none;
}

.unit-sublist li::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 9px;
    height: 9px;
    background-color: #153821;
    border-radius: 50%;
    flex-shrink: 0;
}

.unit-interlude {
    font-size: 17px;
    font-weight: 500;
    letter-spacing: normal;
    line-height: 1.65;
    color: #555555;
    margin: 24px 0 16px;
    font-style: italic;
    padding-left: 4px;
}

/* --- Right Column Media --- */
.complex-media {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 150px;
}

/* --- Complex Feature Image (replaces video) --- */
.complex-feature-img-wrap {
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

.complex-feature-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 6px;
}

/* --- Complex Gallery (3-col mini grid, aligned to video width) --- */
.complex-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    width: 100%;
}

.complex-gallery-grid .gallery-item {
    border-radius: 4px;
    aspect-ratio: 4 / 3;
}

/* Complex page parallax override */
.parallax-complex {
    background-image: url('images/parallax-complex.jpg');
}

/* ======================================== */
/* DOCUMENT CENTER SECTION                  */
/* ======================================== */

.docs-section {
    padding: 72px 0 80px;
    background-color: #fff;
}

.docs-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.docs-intro {
    text-align: center;
    max-width: 760px;
    margin-bottom: 56px;
}

.docs-intro h2 {
    margin-bottom: 14px;
}

.docs-intro p {
    color: #555;
    line-height: 1.7;
}

/* Document grid: 5 columns desktop */
.doc-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 28px 24px;
    width: 100%;
}

.doc-card {
    display: flex;
}

.doc-card-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 28px 16px 22px;
    background-color: #f8f8f6;
    border: 1px solid #e0e0d8;
    border-radius: 8px;
    text-decoration: none;
    color: #222;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.doc-card-link:hover,
.doc-card-link:focus-visible {
    background-color: #fff;
    border-color: #153821;
    box-shadow: 0 6px 20px rgba(21, 56, 33, 0.14);
    transform: translateY(-3px);
    outline: none;
}

.doc-icon {
    width: 56px;
    flex-shrink: 0;
}

.doc-icon svg {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(21, 56, 33, 0.18));
}

.doc-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #153821;
    text-align: center;
    line-height: 1.4;
}

/* Document Center parallax override */
.parallax-doc-center {
    background-image: url('images/parallax-doc-center.jpg');
}

/* ======================================== */
/* RESPONSIVE BREAKPOINTS                   */
/* ======================================== */

/* --- Large Tablet (max 1100px) --- */
@media (max-width: 1100px) {
    .welcome-inner,
    .community-inner {
        gap: 48px;
    }

    .footer-inner {
        gap: 44px;
    }

    .doc-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* --- Tablet (max 900px) --- */
@media (max-width: 900px) {
    h2 {
        font-size: 30px;
        font-weight: 700;
        letter-spacing: -0.2px;
        line-height: 1.28;
    }

    .welcome-inner,
    .community-inner,
    .board-inner,
    .complex-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Un-stick images/media on tablet */
    .welcome-images,
    .community-image,
    .board-image,
    .complex-media {
        position: static;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-title-text {
        font-size: 32px;
        font-weight: 800;
        letter-spacing: 2px;
        line-height: 1.1;
    }

    .page-title-bar {
        height: 180px;
    }

    .doc-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px 16px;
    }
}

/* --- Mobile (max 768px) --- */
@media (max-width: 768px) {

    /* Main header */
    .main-header {
        height: 82px;
    }

    .logo {
        height: 68px;
        max-height: 68px;
    }

    /* Show hamburger */
    .hamburger {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: 82px;
        left: 0;
        right: 0;
        background-color: #051E0B;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, box-shadow 0.35s ease;
        z-index: 999;
    }

    .main-nav.open {
        max-height: 320px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px 0;
    }

    .nav-link {
        font-size: 15px;
        font-weight: 600;
        letter-spacing: 0.5px;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.88);
        padding: 16px 20px;
        border-radius: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        background-color: transparent;
    }

    /* No hover on touch — prevents sticky highlight */
    .nav-link:hover {
        color: rgba(255, 255, 255, 0.88);
        background-color: transparent;
    }

    /* Active page: left accent bar instead of background box */
    .nav-link.active {
        color: #fff;
        font-weight: 700;
        background-color: transparent;
        border-left: 3px solid rgba(255, 255, 255, 0.6);
        padding-left: 17px;
    }

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

    /* Hero */
    .hero-section {
        height: 460px;
    }

    .hero-title {
        font-size: 26px;
        font-weight: 800;
        letter-spacing: -0.2px;
        line-height: 1.2;
    }

    .tagline-break {
        display: block;
    }

    .hero-tagline {
        font-size: 15px;
        font-weight: 600;
        letter-spacing: normal;
        line-height: 1.5;
        margin-bottom: 26px;
    }

    /* Alert section stacks */
    .alert-inner {
        flex-direction: column;
        align-items: stretch;
        min-height: auto;
        padding-left: 0;
        padding-right: 0;
    }

    .alert-badge {
        padding: 12px 20px;
        justify-content: center;
    }

    .alert-divider {
        width: 100%;
        height: 1px;
    }

    .alert-ticker-wrap {
        padding: 12px 20px;
        min-height: 42px;
    }

    .alert-emergency {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        padding: 12px 20px;
        justify-content: center;
    }

    /* Sections reduce padding */
    .welcome-section,
    .community-section,
    .gallery-section,
    .board-section,
    .complex-section {
        padding: 64px 0;
    }

    .page-title-bar {
        height: 160px;
    }

    .page-title-text {
        font-size: 26px;
        font-weight: 800;
        letter-spacing: 2px;
        line-height: 1.1;
    }

    /* Parallax */
    .parallax-section {
        background-attachment: scroll;
        min-height: auto;
    }

    .parallax-title {
        font-size: 28px;
        font-weight: 800;
        letter-spacing: -0.2px;
        line-height: 1.22;
    }

    .parallax-sub {
        font-size: 18px;
        font-weight: 700;
        letter-spacing: normal;
        line-height: 1.65;
    }

    /* Footer phone */
    .footer-phone-main {
        font-size: 28px;
        font-weight: 800;
        letter-spacing: -0.3px;
        line-height: 1;
    }

    /* Copyright */
    .copyright-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* --- Mobile Sticky Phone Bar --- */
    .mobile-phone-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
        background-color: #153821;
        border-top: 2px solid #051E0B;
    }

    .mobile-phone-link {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        padding: 14px 20px;
        font-size: 17px;
        font-weight: 700;
        letter-spacing: 0.3px;
        line-height: 1;
        color: #ffffff;
        transition: background-color 0.2s ease;
    }

    .mobile-phone-link:hover {
        background-color: #051E0B;
        color: #ffffff;
    }

    .phone-icon {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }

    /* Pad body for sticky phone bar */
    body {
        padding-bottom: 54px;
    }
}

/* --- Small Mobile (max 480px) --- */
@media (max-width: 480px) {
    h2 {
        font-size: 24px;
        font-weight: 700;
        letter-spacing: -0.1px;
        line-height: 1.28;
    }

    .hero-section {
        height: 420px;
    }

    .hero-title {
        font-size: 20px;
        font-weight: 800;
        letter-spacing: -0.1px;
        line-height: 1.2;
    }

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

    .doc-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px 12px;
    }

    .doc-card-link {
        padding: 22px 10px 18px;
        gap: 10px;
    }

    .doc-icon {
        width: 46px;
    }

    .footer-phone-main {
        font-size: 26px;
        font-weight: 800;
        letter-spacing: -0.2px;
        line-height: 1;
    }
}
