/* ================================================================
   vc-custom.css Header and Footer
   ================================================================

*/


/* ── Variables ─────────────────────────────────────────────────── */
:root {
    --c-primary:      #156edf;
    --c-secondary:    #33997c;
    --c-gold:         #e8a02c;
    --c-footer-bg:    #252525;
    --c-footer-text:  #c8c0b4;

    --f-body:         'Open Sans', sans-serif;
    --f-serif:        'Cormorant Garamond', serif;
    --f-display:      'Anton', sans-serif;

    --footer-pad-y:   3.75rem;
    --side-pad:       9rem;
}


/* ── Reset ─────────────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    position: relative;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--f-body);
    font-size: 1.22rem;
    line-height: 1.65;
    
}

.dropdown-item.active, .dropdown-item:active {
    background-color: #5d3900 !important;
}

a, a:visited { color: #e8a02c; text-decoration: none; }
a:hover      { text-decoration: none; }

.entry-content a:not(.button):not(.btn)       { color: var(--c-primary); }
.entry-content a:not(.button):not(.btn):hover { text-decoration: underline; }


/* ── Full-width wrappers ────────────────────────────────────────── */
#page, .site, #wrapper, .site-content, #content {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

main#main, main.main, #main {
    width: 100%;
    max-width: 100% !important;
    margin: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.container, .container-sm {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--side-pad);
    padding-right: var(--side-pad);
}


/* ── Typography ────────────────────────────────────────────────── */
h1, h2 {
    font-family: var(--f-display);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

h3, h4, h5, h6 {
    font-family: var(--f-serif);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}


/* ── Utilities ─────────────────────────────────────────────────── */
.form-control:focus { box-shadow: none; border-color: var(--c-primary); }

.btn                { font-weight: 700; font-size: 0.97rem; border: 0; }
.btn, .btn-primary  { background-color: var(--c-primary);   color: #fff; }
.btn, .btn-secondary{ background-color: var(--c-secondary); }

.c-primary  { color: var(--c-primary)  !important; }
.c-gold     { color: var(--c-gold)     !important; }
.c-inherit  { color: inherit           !important; }

.row.archive-row article           { display: flex; align-items: center; }
.row.archive-row article .post-img { max-width: 33%; flex-shrink: 1; margin-right: 1.5rem; }


/* ================================================================
   HEADER
   ================================================================ */

#vc-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.35s ease, backdrop-filter 0.35s ease;
    background: transparent;
}

#vc-header.scrolled {
    background: rgba(15, 10, 5, 0.90);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 1px 0.5px -0.5px #e8a02c;
}

#vc-header.menu-open {
    background: rgba(15, 10, 5, 0.97);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.vc-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem var(--side-pad);
    gap: 1.5rem;
    position: static;
}

/* ── Logo ── */
.vc-header__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
    z-index: 1001;
}

.vc-header__logo-img {
    height: 5rem;
    width: auto;
    display: block;
    transition: opacity 0.25s;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.55));
}

.vc-header__logo-text {
    font-family: var(--f-display);
    font-size: 1.25rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ── Desktop nav — fades in on scroll ── */
.vc-header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

#vc-header.scrolled .vc-header__nav {
    opacity: 1;
    pointer-events: auto;
}

.vc-header__nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0 0.25rem;
}

.vc-header__nav-list > li > a,
.vc-header__nav-list > li > .nav-link {
    font-family: var(--f-serif);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #fff !important;
    padding: 0.5rem 0.9rem;
    display: block;
    transition: color 0.2s ease;
    text-decoration: none;
}

.vc-header__nav-list > li > a:hover,
.vc-header__nav-list > li > .nav-link:hover {
    color: var(--c-gold) !important;
}

.vc-header__nav-list .dropdown-menu {
    background: rgba(15, 10, 5, 0.96);
    border: none;
    border-top: 2px solid var(--c-gold);
    border-radius: 0;
    padding: 0.5rem 0;
    min-width: 13rem;
}

.vc-header__nav-list .dropdown-item {
    font-family: var(--f-serif);
    font-size: 0.8125rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
    padding: 0.625rem 1.25rem;
    transition: color 0.2s, background 0.2s;
}

.vc-header__nav-list .dropdown-item:hover,
.vc-header__nav-list .dropdown-item:focus {
    background: rgba(232, 160, 44, 0.12);
    color: var(--c-gold);
}

/* ── Actions: order button + hamburger ── */
.vc-header__actions {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    flex-shrink: 0;
    z-index: 1001;
}

/* ── Order Online button ── */
.vc-header__order-btn {
    display: inline-block;
    font-family: var(--f-serif);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #1a1200 !important;
    background-color: var(--c-gold);
    padding: 0.875rem 1.75rem;
    text-decoration: none;
    transition: background 0.25s ease;
    white-space: nowrap;
    line-height: 1.2;
}

.vc-header__order-btn:hover,
.vc-header__order-btn:focus {
    background-color: #f5b83a;
    color: #1a1200 !important;
    outline: 2px solid #fff;
    outline-offset: 2px;
}

/* ── Hamburger — desktop hidden ── */
.vc-header__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 2.875rem;
    height: 2.875rem;
    padding: 0;
    background-color: var(--c-gold);
    border: none;
    cursor: pointer;
    border-radius: 2px;
    flex-shrink: 0;
    transition: background 0.2s;
    z-index: 1001;
}

.vc-header__toggle:hover  { background-color: #f5b83a; }
.vc-header__toggle:focus  { outline: 2px solid #fff; outline-offset: 2px; }

.vc-header__toggle-bar {
    display: block;
    width: 1.375rem;
    height: 2px;
    background: #1a1200;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

/* Bars animate to X */
#vc-header.menu-open .vc-header__toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
#vc-header.menu-open .vc-header__toggle-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
#vc-header.menu-open .vc-header__toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* ================================================================
   MOBILE MENU PANEL
   ================================================================ */

.vc-header__mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 10, 5, 0.97);
    padding-top: 6rem;
    padding-left: var(--side-pad);
    padding-right: var(--side-pad);
    padding-bottom: 0;
    overflow-y: auto;
    z-index: 999;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

#vc-header.menu-open .vc-header__mobile-menu {
    opacity: 1;
    pointer-events: auto;
}

/* Mobile nav list */
.vc-header__mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    flex: 1;
}

.vc-header__mobile-nav-list > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.vc-header__mobile-nav-list > li > a,
.vc-header__mobile-nav-list > li > .nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--f-serif);
    font-size: 1.0625rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #fff !important;
    padding: 1rem 0;
    text-decoration: none;
    transition: color 0.2s;
}

.vc-header__mobile-nav-list > li > a:hover,
.vc-header__mobile-nav-list > li > .nav-link:hover {
    color: var(--c-gold) !important;
}

/* Chevron arrow for dropdown parent items */
.vc-header__mobile-nav-list > li.dropdown > a .vc-chevron,
.vc-header__mobile-nav-list > li.dropdown > .nav-link .vc-chevron {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    color: var(--c-gold);
    transition: transform 0.25s ease;
}

.vc-header__mobile-nav-list > li.dropdown > a .vc-chevron svg,
.vc-header__mobile-nav-list > li.dropdown > .nav-link .vc-chevron svg {
    width: 0.875rem;
    height: 0.875rem;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vc-header__mobile-nav-list > li.dropdown.is-open > a .vc-chevron,
.vc-header__mobile-nav-list > li.dropdown.is-open > .nav-link .vc-chevron {
    transform: rotate(180deg);
}

/* Submenu — hidden by default */
.vc-header__mobile-nav-list .dropdown-menu {
    position: static !important;
    display: none;
    background: transparent;
    border: none;
    padding: 0 0 0.5rem 1rem;
    box-shadow: none;
    float: none;
}

.vc-header__mobile-nav-list .dropdown-menu.is-open {
    display: block ;
}

.vc-header__mobile-nav-list .dropdown-item {
    font-family: var(--f-serif);
    font-size: 0.875rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.70);
    padding: 0.5625rem 0;
    background: transparent;
    transition: color 0.2s;
    display: block;
}

.vc-header__mobile-nav-list .dropdown-item:hover {
    color: var(--c-gold);
    background: transparent;
}

/* Order Online — sticky at bottom */
.vc-header__order-btn--mobile {
    display: block;
    text-align: center;
    width: calc(100% + var(--side-pad) * 2);
    margin-left: calc(var(--side-pad) * -1);
    margin-right: calc(var(--side-pad) * -1);
    padding: 1.125rem 1rem;
    font-size: 0.9375rem;
    letter-spacing: 0.2em;
    position: sticky;
    bottom: 0;
    margin-top: auto;
}


/* ================================================================
   FOOTER SEPARATOR BAR
   ================================================================ */

.vc-footer__separator {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, #694813bd, rgb(236, 161, 40), #694813bd);
    display: block;
    line-height: 0;
    font-size: 0;
}


/* ================================================================
   FOOTER
   ================================================================ */

#vc-footer {
    background-color: var(--c-footer-bg);
    color: var(--c-footer-text);
    padding-top: var(--footer-pad-y);
    padding-bottom: var(--footer-pad-y);
    width: 100%;
}

.vc-footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: var(--side-pad);
    padding-right: var(--side-pad);
}

.vc-footer__logo       { text-align: center; margin-bottom: 0.5rem; }

.vc-footer__logo-img {
    width: auto;
    height: 5rem;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.55));
}

.vc-footer__logo-text {
    font-family: var(--f-display);
    font-size: 1.375rem;
    color: var(--c-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.vc-footer__divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent 0%, var(--c-gold) 20%, var(--c-gold) 80%, transparent 100%);
    opacity: 0.40;
    margin: 1.75rem 0;
    flex-shrink: 0;
}

.vc-footer__nav        { text-align: center; width: 100%; }

.vc-footer__nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 2.25rem;
}

.vc-footer__nav-list li a {
    font-family: var(--f-serif);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--c-footer-text);
    transition: color 0.25s ease;
}

.vc-footer__nav-list li a:hover { color: var(--c-gold); }

.vc-footer__locations {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1rem;
    width: 100%;
    text-align: center;
}

.vc-footer__location {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
}

.vc-footer__location-name {
    font-family: var(--f-serif);
       font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--c-gold);
    margin: 0 0 0.125rem;
    line-height: 1.35;
}

.vc-footer__location-info,
.vc-footer__location-hours {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4375rem;
    margin: 0;
    font-family: var(--f-body);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--c-footer-text);
    line-height: 1.55;
}

.vc-footer__location-hours { font-weight: 700; }

.vc-footer__location-info a {
    color: var(--c-footer-text);
    transition: color 0.25s ease;
}
.vc-footer__location-info a:hover { color: var(--c-gold); }

.vc-footer__icon {
    color: var(--c-gold);
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
}

.vc-footer__copyright { text-align: center; }

.vc-footer__copyright p {
    margin: 0;
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #9e9690;
}


/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (max-width: 1024px) {
    :root { --side-pad: 1rem; }
}

/* Tablet nav adjustments */
@media (min-width: 768px) and (max-width: 1024px) {
    .vc-header__nav-list > li > a,
    .vc-header__nav-list > li > .nav-link {
        font-size: 0.8rem;
        padding: 0.5rem 0.6rem;
        letter-spacing: 0.12em;
    }

    .vc-header__order-btn {
        padding: 0.625rem 1rem;
        font-size: 0.8rem;
    }

    .vc-footer__locations { gap: 1.5rem 1.75rem; }
    .vc-footer__location-name { font-size: 0.9rem; }
}

/* Mobile */
@media (max-width: 767px) {
    

    /* Hide desktop nav, show hamburger */
    .vc-header__nav  { display: none; }
    .vc-header__toggle { display: flex; }

    /* Hide order btn in actions bar — it lives inside the panel */
    .vc-header__actions .vc-header__order-btn:not(.vc-header__order-btn--mobile) {
        display: none;
    }

    .vc-header__logo-img { height: 4rem; }

    .vc-header__inner { padding: 0.75rem var(--side-pad); }

    /* Show mobile panel as flex column when open */
    .vc-header__mobile-menu { display: flex; }

    /* Footer stacked */
    .vc-footer__locations {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .vc-footer__location {
        padding: 1.75rem 0;
        border-bottom: 1px solid rgba(232, 160, 44, 0.16);
    }
    .vc-footer__location:first-child  { padding-top: 0; }
    .vc-footer__location:last-child   { padding-bottom: 0; border-bottom: none; }

    .vc-footer__nav-list { gap: 0.5rem 1.25rem; }

    /* Hide Bootstrap's default dropdown arrow — our JS chevron replaces it */
.vc-header__mobile-nav-list .dropdown-toggle::after,
.vc-header__mobile-nav-list .dropdown-toggle::before {
    display: none !important;
}


.vc-header__mobile-nav-list .dropdown-menu {
    position: static !important;
    display: none !important;
    float: none !important;
    transform: none !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 0 0.5rem 1.25rem !important;
    margin: 0 !important;
    min-width: 0 !important;
}

.vc-header__mobile-nav-list .dropdown-menu.is-open {
    display: block !important;
}
}

@media (max-width: 576px) {
    :root { --footer-pad-y: 2.25rem; }

    .vc-footer__logo-img { height: 4rem; }

    .vc-footer__nav-list {
        flex-direction: column;
        align-items: center;
        gap: 0.875rem;
    }

    .vc-footer__location-info,
    .vc-footer__location-hours { font-size: 0.75rem; }

    .vc-footer__copyright p { font-size: 0.6875rem; letter-spacing: 0.1em; }
}


/* ================================================================
   vc-default-page.css — Default Page Template
   ================================================================ */

.vc-default-page {
    background: #111;
    min-height: 100vh;
}


/* ================================================================
   HERO
   ================================================================ */
.vc-default-hero {
    position: relative;
    width: 100%;
    height: 100vh;
   
    background: #0d0d0d center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* When no featured image is set — solid dark bg */
.vc-default-hero:not([style]) {
    background: #0d0d0d;
    height: 22rem;
}

.vc-default-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.30) 0%,
        rgba(0,0,0,0.68) 100%
    );
    z-index: 0;
}

.vc-default-hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 0 var(--side-pad);
}

.vc-default-hero__title {
    font-family: 'Anton', sans-serif !important;
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    font-weight: 400;
    color: var(--c-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.05;
    margin: 0;
    text-shadow: 0 2px 30px rgba(0,0,0,0.55);
}

.vc-default-hero__rule {
    width: 3rem;
    height: 1.5px;
    background: var(--c-gold);
    opacity: 0.65;
}


/* ================================================================
   CONTENT AREA — WordPress blocks
   ================================================================ */
.vc-default-body {
    padding: 4rem var(--side-pad) 5rem;
    max-width: 100%;
}

.vc-default-content {
    max-width: 52rem;
    margin: 0 auto;
    color: rgba(215,202,180,0.90);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.125rem;
    line-height: 1.82;
}

/* ── Typography inside content ── */
.vc-default-content h1,
.vc-default-content h2 {
    font-family: 'Anton', sans-serif !important;
    color: var(--c-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 2rem 0 0.875rem;
    line-height: 1.1;
}

.vc-default-content h3,
.vc-default-content h4,
.vc-default-content h5,
.vc-default-content h6 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--c-gold);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 1.5rem 0 0.75rem;
}

.vc-default-content p {
    margin: 0 0 1.125rem;
}

.vc-default-content p:last-child { margin-bottom: 0; }

.vc-default-content a {
    color: var(--c-gold);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s;
}

.vc-default-content a:hover { opacity: 0.75; }

.vc-default-content strong { color: rgba(235,222,200,0.95); font-weight: 700; }

.vc-default-content em { font-style: italic; }

/* Lists */
.vc-default-content ul,
.vc-default-content ol {
    padding-left: 1.5rem;
    margin: 0 0 1.25rem;
}

.vc-default-content li { margin-bottom: 0.5rem; }

/* Blockquote */
.vc-default-content blockquote {
    border-left: 3px solid var(--c-gold);
    padding: 0.75rem 0 0.75rem 1.5rem;
    margin: 1.5rem 0;
    color: rgba(232,160,44,0.85);
    font-style: italic;
    font-size: 1.1875rem;
}

/* Horizontal rule */
.vc-default-content hr {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(232,160,44,0.4), transparent);
    margin: 2rem 0;
}

/* Images inside content */
.vc-default-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1.5rem auto;
}

/* Tables */
.vc-default-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.9375rem;
}

.vc-default-content th {
    font-family: 'Anton', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--c-gold);
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(232,160,44,0.30);
    text-align: left;
}

.vc-default-content td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    color: rgba(215,202,180,0.88);
}

/* WordPress blocks — full-width override */
.vc-default-content .wp-block-image { margin: 2rem 0; }

.vc-default-content .wp-block-image img { margin: 0; }

.vc-default-content .wp-block-image figcaption {
    font-size: 0.8125rem;
    color: rgba(200,188,168,0.55);
    text-align: center;
    margin-top: 0.5rem;
    font-style: italic;
    letter-spacing: 0.04em;
}

/* Allow full-width blocks to break out of the centered column */
.vc-default-content .alignfull {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.vc-default-content .alignwide {
    width: calc(100% + 8rem);
    max-width: calc(100% + 8rem);
    margin-left: -4rem;
    margin-right: -4rem;
}

/* Buttons from block editor */
.vc-default-content .wp-block-button__link {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 0.75rem !important;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--c-gold) !important;
    background: transparent !important;
    border: 1.5px solid var(--c-gold) !important;
    border-radius: 0 !important;
    padding: 0.75rem 2rem !important;
    text-decoration: none !important;
    transition: background 0.25s ease, color 0.25s ease;
}

.vc-default-content .wp-block-button__link:hover {
    background: var(--c-gold) !important;
    color: #111 !important;
}

/* Comments */
.vc-default-comments {
    max-width: 52rem;
    margin: 3rem auto 0;
    padding-top: 3rem;
    border-top: 1px solid rgba(232,160,44,0.15);
    color: rgba(215,202,180,0.88);
    font-family: 'Cormorant Garamond', serif;
}


/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 768px) {
    .vc-default-hero        { height: 100vh; min-height: 20rem; }
    .vc-default-body        { padding: 3rem var(--side-pad) 4rem; }
    .vc-default-content     { font-size: 1.0625rem; }

    .vc-default-content .alignwide {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 576px) {
    .vc-default-hero         { height: 100vh; }
    .vc-default-hero__title  { letter-spacing: 0.03em; }
    .vc-default-content      { font-size: 1rem; }
}