:root {
    /* Logo colors */
    --fire:         #D94F2A;
    --ember:        #E8722A;
    --saffron:      #F0A500;
    --lemon:        #F5C842;
    --herb:         #3A7D44;
    --leaf:         #5BA85A;
    --pepper:       #C0392B;
    --aubergine:    #6B3FA0;

    /* Warm neutrals */
    --chalk:        #FDFAF4;
    --parchment:    #F5EDD8;
    --wheat:        #EAD9B8;
    --clay:         #C4A06A;
    --soil:         #5C3D1E;
    --char:         #2A1A0A;

    /* Surfaces */
    --surface-page: #FDFAF4;
    --surface-card: #FFFFFF;
    --surface-warm: #FFF8EE;

    /* Text */
    --text-primary:   #2A1A0A;
    --text-secondary: #5C3D1E;
    --text-muted:     #8C6A45;

    /* Borders */
    --border-light:  rgba(196,160,106,0.2);
    --border-mid:    rgba(196,160,106,0.4);
    --border-strong: rgba(196,160,106,0.7);

    /* Fonts */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'DM Sans', sans-serif;

    /* Spacing */
    --sp-xs:  4px;
    --sp-sm:  8px;
    --sp-md:  16px;
    --sp-lg:  24px;
    --sp-xl:  40px;
    --sp-2xl: 72px;

    /* Radius */
    --r-sm:   4px;
    --r-md:   8px;
    --r-lg:   16px;
    --r-xl:   24px;
    --r-pill: 100px;
}

/* Override Bootstrap theme tokens with Emesa design tokens */
:root {
    --primary:   var(--fire);
    --secondary: var(--herb);
}

body {
    font-family: var(--font-body);
    color: var(--text-secondary);
    background-color: var(--chalk);
}

/* Bootstrap utility class overrides */
.text-primary  { color: var(--char) !important; }
.text-muted    { color: var(--text-muted) !important; }
.bg-primary    { background-color: var(--fire) !important; }
.bg-secondary  { background-color: var(--herb) !important; }

.btn-primary {
    background-color: var(--fire);
    border-color: var(--fire);
    color: white;
}
.btn-primary:hover, .btn-primary:focus {
    background-color: var(--ember);
    border-color: var(--ember);
    color: white;
}
.btn-secondary {
    background-color: var(--herb);
    border-color: var(--herb);
    color: white;
}
.btn-secondary:hover, .btn-secondary:focus {
    background-color: var(--leaf);
    border-color: var(--leaf);
    color: white;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
    font-family: var(--font-display);
    line-height: 1.1;
    font-weight: 700;
    color: var(--char);
}
h1 em, h2 em, h3 em, .h1 em, .h2 em, .h3 em {
    color: var(--ember);
    font-style: italic;
}
h1, .h1 {
    font-size: 75px;
}
h2, .h2 {
    font-size: 60px;
}
h3, .h3 {
    font-size: 48px;
}
h4, .h4 {
    font-size: 42px;
}

.text-tertiary {
    color: var(--saffron) !important;
}

.font-tan {
    font-family: var(--font-display);
}

.font-tan .tan-wide {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.font-lato {
    font-family: var(--font-body);
}

.lead {
    font-size: 1.25rem;
    line-height: 1.6;
}

/* Eyebrow label */
.eyebrow {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--fire);
    margin-bottom: var(--sp-sm);
}

/* ── Contact page ────────────────────────────────────── */

.contact-banner {
    position: relative;
    height: 320px;
    overflow: hidden;
}
.contact-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 55%;
}
.contact-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
        rgba(42,26,10,0.78) 0%,
        rgba(42,26,10,0.45) 55%,
        rgba(42,26,10,0.08) 100%);
    display: flex;
    align-items: flex-end;
    padding: var(--sp-2xl) var(--sp-xl);
}
.contact-banner-text h1 {
    color: white;
    font-size: 54px;
    line-height: 1.05;
    margin: var(--sp-xs) 0 0;
}
.contact-banner-text .eyebrow {
    color: var(--lemon);
}

.contact-info-card {
    padding-top: var(--sp-lg);
}
.contact-info-block {
    margin-bottom: var(--sp-xl);
}
.contact-info-block:last-of-type {
    margin-bottom: var(--sp-lg);
}
.contact-info-value {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: var(--sp-sm);
    line-height: 1.8;
}

.contact-hours .hours-row {
    color: var(--text-secondary);
}
.contact-hours .tan-wide {
    color: var(--clay);
    margin-left: 0.35rem;
    margin-right: 0.35rem;
}

.contact-link {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: var(--sp-sm);
    transition: color 0.15s ease;
}
.contact-link i {
    color: var(--fire);
    width: 18px;
    margin-right: var(--sp-xs);
    text-align: center;
}
.contact-link:hover {
    color: var(--fire);
    text-decoration: none;
}

.contact-map {
    margin-top: var(--sp-lg);
    border-radius: var(--r-md);
    overflow: hidden;
    border: 1px solid var(--border-mid);
}

.contact-form-heading {
    font-size: 42px;
    line-height: 1.1;
    color: var(--char);
    margin-bottom: var(--sp-md);
}
.contact-form-intro {
    color: var(--text-muted);
    margin-bottom: var(--sp-xl);
    line-height: 1.7;
}

/* CF7 form inputs */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea,
.wpcf7-form select {
    width: 100%;
    background-color: var(--surface-warm);
    border: 1.5px solid var(--border-mid);
    border-radius: var(--r-sm);
    padding: var(--sp-md);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-primary);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    display: block;
}
.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: var(--fire);
    box-shadow: 0 0 0 3px rgba(217,79,42,0.1);
}

.wpcf7-form input[type="submit"] {
    background-color: var(--herb);
    color: white;
    border: none;
    border-top-left-radius: 0;
    border-top-right-radius: 1.5rem;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 1.5rem;
    padding: 0.6rem 1.5rem;
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.15s ease;
    margin-top: var(--sp-sm);
}

.wpcf7-form input[type="submit"]:hover {
    background-color: var(--leaf);
}

@media (max-width: 960px) {
    .contact-banner {
        height: 220px;
    }
    .contact-banner-text h1 {
        font-size: 36px;
    }
    .contact-banner-overlay {
        padding: var(--sp-xl) var(--sp-lg);
    }
    .contact-form-heading {
        font-size: 32px;
    }
}

nav.navbar {
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    z-index: 100;
}

nav .nav-link {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--char) !important;
}

nav .nav-item {
    margin-left: 2rem;
    margin-right: 2rem;
}

.hf-full-vh {
	height: 100vh;
	min-height: 600px;
}

.navbar-brand img {
    height: 110px;
    width: auto;
}
#header-deco {
    margin-left: 2rem;
}

.social-icon {
    margin-right: 1rem;
    margin-left: 1rem;
}

footer {
    background-color: var(--soil) !important;
    color: var(--wheat);
}
footer h3 {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 11px;
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--ember);
}
footer li {
    margin-top: 1rem;
}
footer li a, footer p {
    font-weight: 300;
    letter-spacing: 1px;
    color: var(--wheat);
}
footer li a:hover {
    color: var(--lemon);
    text-decoration: none;
}
footer #shout-out {
    font-size: 1.2rem;
    font-weight: 300;
}
footer #shout-out a {
    font-weight: 500;
    text-decoration: underline;
}
footer hr {
    border-color: rgba(196,160,106,0.3);
    margin-left: -1rem;
    margin-right: -1rem;
}

.btn {
    font-weight: 300;
    letter-spacing: 1px;
}

.btn-xl {
    padding: 0.6rem 1.5rem;
    font-size: 1.1rem;
    line-height: 1.5;
}

.rounded-pointed {
    border-top-left-radius: 0;
    border-top-right-radius: 1.5rem;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 1.5rem;
}

#home-menu-images img {
    height: 400px;
    width: 100%;
    object-fit: cover;
}
#menu-images img {
    height: 500px;
    width: 100%;
    object-fit: cover;
}

#menu-tabs {
    background-color: var(--soil);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
}
#menu-tabs button {
    background-color: transparent;
    border: none;
    color: var(--wheat);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.15s ease;
}
#menu-tabs button:hover {
    color: white;
}
#menu-tabs button.active {
    color: white;
    text-decoration: underline;
    text-underline-position: under;
    text-decoration-thickness: 2px;
    text-decoration-color: var(--ember);
}
#menu-tabs-content h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-style: italic;
    color: var(--ember);
    margin-bottom: 1.5rem;
}
#menu-tabs-content .tab-pane {
    padding: 5rem 1.5rem 1.5rem;
}
.menu-item {
    padding-bottom: var(--sp-lg);
    margin-bottom: var(--sp-lg);
    border-bottom: 1px solid var(--border-light);
}
.menu-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
.item-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 17px;
    color: var(--fire);
    margin-bottom: var(--sp-xs);
}
.item-description {
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.65;
}
.item-subtext {
    font-weight: 300;
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    margin-top: var(--sp-xs);
}

#post-content {
    font-size: 1.25rem;
    font-weight: 300;
}
#post-content h1 {
    font-size: 3.5rem;
}
#post-content h2 {
    font-size: 1.5rem;
}
#post-content h2, #post-content h3, #post-content h4, #post-content h5 {
    font-family: var(--font-display);
    color: var(--char);
}

#faqs {
    font-size: 1.25rem;
    font-weight: 300;
}
#faqs [data-bs-toggle="collapse"] {
    background-color: var(--secondary);
    color: white;
    font-weight: 500;
}
#faqs [data-bs-toggle="collapse"] div {
    position: relative;
}
#faqs [data-bs-toggle="collapse"] div:before {
    position: absolute;
    color: white;
    content: '\f068';
    font-family: "Font Awesome\ 5 Pro";
    font-weight: 300;
    font-size: 1.25rem;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
#faqs [data-bs-toggle="collapse"].collapsed {
    background-color: white;
    color: var(--secondary);
}
#faqs [data-bs-toggle="collapse"].collapsed div:before {
    content: '\f067';
    color: var(--secondary);
}

#faqs .collapse:not(.show) + div {
    border-bottom: 1px solid #707070;
    opacity: 0.25;
}

.featured-post img, .blog-post img {
    object-fit: cover;
}
.featured-post img, #retail-img {
    height: 600px;
}
.blog-post img {
    height: 300px;
}
#pay-it-fwd-image {
    height: 500px;
}

#gold-banner-scroll {
    grid-column: 1 / 15;
    line-height:1;
    overflow: hidden;
}
@media only screen and (max-width: 699px) {

    #gold-banner-scroll {
        grid-column: 1 / 7;
        margin-bottom:56px;
    }

}
#gold-banner-scroll div {
    background-image: url("/wp-content/themes/basic-hunchfree/img/gold-banner.svg");
    aspect-ratio: 12.0528661;
    background-size:cover;
    background-repeat: repeat-x;
    background-position: center;
    position:relative;
    width: 150%;
}

#gold-banner-scroll svg {
    position:absolute;
    top:0;
    left:0;
    width:100%;
}

#gold-banner-scroll textPath {
    font-size: 24px;
    font-family: "TAN - MON CHERI REGULAR", serif;
}

.bg-light + #gold-banner-container {
    position: relative;
}
.bg-light + #gold-banner-container:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background-color: var(--light);
}

.text-gray {
    color: var(--text-muted) !important;
}

#mobile-navbar {
    z-index: 99999;
    width: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--chalk);
}

#mobile-nav {
    height: 100vh;
    z-index: 1000;
    background-color: var(--chalk);
    padding-top: 6rem;
    padding-bottom: 4rem;
    justify-content: center;
}

#mobile-nav .nav-item {
    border-bottom: 1px solid var(--border-light);
    margin: 0 var(--sp-xl);
}

#mobile-nav .nav-item:first-child {
    border-top: 1px solid var(--border-light);
}

#mobile-nav .nav-link {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--char);
    text-align: center;
    padding: var(--sp-lg) 0;
    margin-right: unset;
    transition: color 0.15s ease;
}

#mobile-nav .nav-link:hover {
    color: var(--fire);
    text-decoration: none;
}

.mobile-nav-social {
    border: none !important;
    padding-top: var(--sp-xl);
}

.mobile-nav-follow {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    display: block;
    text-align: center;
    transition: color 0.15s ease;
}

.mobile-nav-follow i {
    margin-right: var(--sp-xs);
}

.mobile-nav-follow:hover {
    color: var(--fire);
    text-decoration: none;
}

#store-details-banner .hours-list div {
    display: inline;
    line-height: 1.6;
}
#store-details-banner .hours-list div:not(:last-child):after {
    content: ', ';
}

#store-images-desktop img {
    width: 100%;
    object-fit: cover;
}

#store-images-mobile img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

#about-title {
    font-size: 32px !important;
    line-height: 55px;
}

.wpcf7-form {
    position: relative;
}
.wpcf7-form span {
    position: relative;
    display: block;
}
.wpcf7-form span .wpcf7-not-valid-tip {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    color: white;
    font-size: 0.8rem;
}
.wpcf7 form .wpcf7-response-output {
    position: absolute;
    right: 0;
    bottom: 1.5rem;
    width: 60%;
    font-size: 0.9rem;
    margin: 0 !important;
}

@media only screen and (max-width: 699px) {
    #gold-banner-scroll div {
        width: 250%;
    }
}

/* mobile-ish */
@media (max-width: 960px) {
    h1, .h1 {
        font-size: 40px;
    }
    h2, .h2 {
        font-size: 32px;
    }
    h3, .h3 {
        font-size: 24px;
    }
    h4, .h4 {
        font-size: 20px;
    }
    #post-content h1 {
        font-size: 1.5rem;
    }

    #about-title {
        font-size: 20px !important;
        line-height: 35px;
    }

    footer {
        text-align: center;
        font-size: 1.2rem;
    }
    footer h3 {
        display: none;
    }
    footer ul {
        margin-bottom: 0;
    }
    footer li a {
        font-weight: 400;
    }

    #menu-tabs-content .tab-pane {
        padding-top: 1.5rem;
    }

    #menu-tabs-content > .tab-pane {
        display: flex !important;
        opacity: initial !important;
    }
    .menu-subsection {
        border-bottom: 2px solid var(--wheat);
    }
    .menu-subsection:not(:last-child) {
        margin-bottom: 2.5rem;
    }

    #home-menu-images img {
        height: 200px;
    }

    #menu-images img {
        height: 200px;
    }

    .featured-post img, #retail-img {
        height: 300px;
    }

    #store-details-banner .hours-list div {
        display: block;
    }
    #store-details-banner .hours-list div:not(:last-child):after {
        content: none;
    }

    .bg-light.only-show-desktop + #gold-banner-scroll:before {
        display: none;
    }

    .bg-light + #gold-banner-container:before {
        height: 40%;
    }

    #gold-banner-container {
        width: 100vw;
        overflow-x: hidden;
    }

    #gold-banner-scroll {
        width: 200%;
    }

    #pay-it-fwd-image {
        height: 300px;
    }

    .wpcf7 form .wpcf7-response-output {
        bottom: 0.5rem;
    }
}

/* smaller desktop-ish */
@media (max-width: 1300px) {
    nav .nav-link {
        font-size: 18px;
    }
    nav .nav-item {
        margin-right: 1rem;
        margin-left: 1rem;
    }
}

.bg-light {
    background-color: var(--parchment) !important;
}

label {
    width: 100%;
}