@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary:       #1B4D3E;
    --primary-light: #C9A87C;
    --accent:        #1C3A5B;
    --accent-light:  #4A6B8E;
    --bg:            #F6F1E8;
    --text-dark:     #1C3A5B;
    --text-medium:   #5B6670;
    --font-heading:  'Poppins', sans-serif;
    --font-body:     'Poppins', sans-serif;
}

body, .et_pb_module {
    font-family: var(--font-body);
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
}

/* ── Brand CSS classes for Divi code modules ─────────────────────────── */
.site-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-light);
}
.site-hero-h1 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
}
.site-accent {
    color: var(--primary-light);
}
.site-section-h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
}

.site-btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform .2s ease, box-shadow .2s ease;
}
.site-btn-primary {
    background: var(--primary-light);
    color: var(--bg);
}
.site-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(201, 168, 124, .35);
    color: var(--accent);
}
.site-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1.5px solid var(--primary-light);
}
.site-btn-secondary:hover {
    background: rgba(255,255,255,.08);
    color: #ffffff;
}
.site-hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Mobile CTA bar ───────────────────────────────────────────────────── */
.epsic-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--accent);
    padding: 10px 14px;
    gap: 10px;
    box-shadow: 0 -4px 16px rgba(0,0,0,.18);
}
.epsic-mobile-cta a {
    flex: 1;
    text-align: center;
    padding: 12px 10px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
}
.epsic-mobile-cta a:first-child {
    color: #ffffff;
    border: 1.5px solid rgba(255,255,255,.4);
}
.epsic-mcta-btn {
    background: var(--primary-light);
    color: var(--accent) !important;
}
@media (max-width: 767px) {
    .epsic-mobile-cta { display: flex; }
    body { padding-bottom: 64px; }
}

/* ── Divi overrides ───────────────────────────────────────────────────── */
.et_pb_blurb_content .et_pb_module_header {
    font-family: var(--font-heading);
}
.et_pb_button {
    border-radius: 4px !important;
}

/* Equal-height blurb cards in a row: .et_pb_row is already display:flex, so
   columns already stretch to the same height, but the blurb card itself
   (background/border/shadow live on .et_pb_blurb) only sized to its own
   content and sat top-aligned inside that taller column — leaving card
   edges misaligned. Chain flex-column down through the blurb's own wrappers
   so the card box itself fills the column, with unused height left as open
   space below the description rather than stretching the text. */

.et_pb_row > .et_pb_column > .et_pb_blurb.et_pb_module {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.et_pb_blurb .et_pb_blurb_content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}
.et_pb_blurb .et_pb_blurb_container {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

/* ── Scroll-reveal animation ──────────────────────────────────────────── */
.site-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s cubic-bezier(.16,1,.3,1), transform .65s cubic-bezier(.16,1,.3,1);
}
.site-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}

/* ── Content photos ───────────────────────────────────────────────────── */
.site-img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0,0,0,.14);
    display: block;
}
@media (max-width: 767px) {
    .site-img { height: 240px; }
}
/* ── Foots Hours / contact info block ──────────────────────────────────────── */
.footer-hours h3 {
    font-family: var(--font-heading);
    color: var(--primary-light) !important;
    margin-bottom: 12px;
}
.footer-hours p {
    color: var(--bg) !important;
    
}
.footer-hours a {
    color: var(--bg) !important;
    font-weight: 600;
    text-decoration: none;
}
.footer-hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
}
.footer-hours-table td {
    padding: 8px 0;
    border-bottom: 1px solid var(--primary-light) !important;
    font-size: 0.92rem;
    color: var(--bg);
}
.footer-hours-table td:first-child {
    font-weight: 600;
    color: var(--bg) !important;
    width: 40%;
}

/* ── Hours / contact info block ──────────────────────────────────────── */
.site-hours h3 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    margin-bottom: 12px;
}
.site-hours a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}
.site-hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
}
.site-hours-table td {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,.08);
    font-size: 0.92rem;
    color: var(--text-medium);
}
.site-hours-table td:first-child {
    font-weight: 600;
    color: var(--text-dark);
    width: 40%;
}

/* ── Contact form area ───────────────────────────────────────────────── */
.site-form-note {
    font-size: 0.85rem;
    color: var(--text-medium);
    margin-bottom: 16px;
}
.site-form-pending {
    padding: 16px;
    background: var(--bg);
    border-radius: 8px;
    color: var(--text-medium);
}

/* ── Sitemap list ─────────────────────────────────────────────────────── */
.site-sitemap-list {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    columns: 2;
    column-gap: 32px;
}
.site-sitemap-list li {
    padding: 6px 0;
    break-inside: avoid;
}
.site-sitemap-list a {
    color: var(--primary);
    text-decoration: none;
}
.site-sitemap-list a:hover {
    text-decoration: underline;
}
@media (max-width: 767px) {
    .site-sitemap-list { columns: 1; }
}

/* ── FAQ list ─────────────────────────────────────────────────────────── */
.site-faq-list {
    max-width: 780px;
    margin: 0 auto;
}
.site-faq-item {
    padding: 24px 0;
    border-bottom: 1px solid rgba(0,0,0,.08);
}
.site-faq-item:last-child {
    border-bottom: none;
}
.site-faq-item h3 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-size: 1.05rem;
    margin: 0 0 8px;
}
.site-faq-item p {
    color: var(--text-medium);
    margin: 0;
}
.site-faq-item a {
    color: var(--primary);
    font-weight: 600;
}

/* ── Location cards & nearby-area pills ──────────────────────────────── */
.site-location-card {
    display: block;
    height: 100%;
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 14px;
    padding: 28px;
    text-decoration: none;
    box-shadow: 0 2px 24px -8px rgba(0,0,0,.10);
    transition: transform .2s ease, box-shadow .2s ease;
    box-sizing: border-box;
}
.site-location-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px -10px rgba(0,0,0,.18);
}
.site-location-card h3 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    margin: 0 0 8px;
}
.site-location-card p {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin: 0;
}
.site-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.site-pill {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--bg);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    border: 1px solid rgba(27,77,62,.15);
    transition: background .2s ease, color .2s ease;
}
.site-pill:hover {
    background: var(--primary);
    color: #fff;
}
.site-pill-current {
    background: var(--primary);
    color: #fff;
}

/* ── Responsive breakpoints ──────────────────────────────────────────── */
@media (max-width: 980px) {
    .site-hero-h1 { font-size: 2.4rem; }
}
@media (max-width: 767px) {
    .site-hero-h1 { font-size: 1.9rem; }
    .site-hero-btns { justify-content: center; }
}
