
/* ===== VARIABLES — exact from about.css ===== */
:root {
    --orange: #d4521a;
    --orange-h: #c24415;
    --orange-glow: rgba(212, 82, 26, 0.25);
    --dark: #111110;
    --dark2: #1a1918;
    --dark3: #222120;
    --white: #ffffff;
    --off: #f7f5f2;
    --gray: #888580;
    --light: #efefed;
    --border: #e8e5e0;
    --font-display: 'Bebas Neue', sans-serif;
    --font-head: "Open Sans", sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --radius: 4px;
    --radius-lg: 10px;
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: #fff;
    color: var(--dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

ul {
    list-style: none;
}

img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ── LOADER ── */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 100000;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .7s .1s ease, visibility .7s .1s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.loader-logo-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    animation: loaderPulse 1.2s ease-in-out infinite;
}

@keyframes loaderPulse {

    0%,
    100% {
        opacity: .4;
        transform: scale(.95)
    }

    50% {
        opacity: 1;
        transform: scale(1)
    }
}

.loader-bar {
    width: 180px;
    height: 3px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
}

.loader-fill {
    height: 100%;
    background: var(--orange);
    border-radius: 2px;
    animation: loaderFill .9s var(--ease-out) forwards;
    width: 0;
}

@keyframes loaderFill {
    to {
        width: 100%
    }
}

/* ── NAVBAR ── */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: transform .4s var(--ease-smooth);
}

#navbar.scrolled .nav-main {
    box-shadow: 0 4px 40px rgba(0, 0, 0, .10);
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(12px);
}

.nav-main {
    background: #fff;
    border-bottom: 1px solid var(--border);
    transition: box-shadow .4s var(--ease-smooth), background .4s;
}

.nav-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 74px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-right: 44px;
    flex-shrink: 0;
    transition: opacity .2s;
    width: 50px;
    height: 60px;
}

.logo:hover {
    opacity: .85;
}

.nav-links {
    display: flex;
    gap: 2px;
    flex: 1;
    align-items: center;
    justify-content: center;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: .88rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #444;
    text-transform: uppercase;
    padding: 7px 13px;
    border-radius: var(--radius);
    transition: color .25s var(--ease-smooth);
    white-space: nowrap;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 13px;
    right: 13px;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform .3s var(--ease-out);
    transform-origin: left;
    border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--orange);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--orange);
    color: #fff;
    padding: 14px 20px;
    flex-shrink: 0;
    transition: background .25s var(--ease-smooth);
    margin-right: -32px;
}

.nav-cta:hover {
    background: var(--orange-h);
}

.cta-body strong {
    font-family: var(--font-body);
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    margin-left: auto;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #333;
    border-radius: 2px;
    transition: all .35s var(--ease-smooth);
}

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

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

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

/* ── HERO ── */
.contact-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-hero-bg {
    position: absolute;
    inset: 0;
}

.contact-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(10, 9, 8, .92) 0%, rgba(10, 9, 8, .65) 50%, rgba(10, 9, 8, .25) 100%);
}

.contact-hero-grain {
    position: absolute;
    inset: 0;
    opacity: .035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px;
}

/* embers */
.embers {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 3;
}

.ember {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--orange);
    animation: emberRise linear infinite;
    opacity: 0;
    box-shadow: 0 0 6px var(--orange);
}

.ember:nth-child(1) {
    left: 8%;
    animation-duration: 7s;
    animation-delay: 0s
}

.ember:nth-child(2) {
    left: 18%;
    animation-duration: 9s;
    animation-delay: 1.5s;
    background: #ff9d00
}

.ember:nth-child(3) {
    left: 32%;
    animation-duration: 6s;
    animation-delay: 3s
}

.ember:nth-child(4) {
    left: 48%;
    animation-duration: 10s;
    animation-delay: .5s;
    width: 2px;
    height: 2px
}

.ember:nth-child(5) {
    left: 60%;
    animation-duration: 8s;
    animation-delay: 2s;
    background: #ffb347
}

.ember:nth-child(6) {
    left: 72%;
    animation-duration: 7s;
    animation-delay: 4s
}

.ember:nth-child(7) {
    left: 82%;
    animation-duration: 9s;
    animation-delay: 1s;
    background: #ff9d00
}

.ember:nth-child(8) {
    left: 92%;
    animation-duration: 6.5s;
    animation-delay: 2.5s
}

@keyframes emberRise {
    0% {
        transform: translateY(110vh);
        opacity: 0
    }

    10% {
        opacity: .9
    }

    90% {
        opacity: .4
    }

    100% {
        transform: translateY(-10vh) translateX(20px);
        opacity: 0
    }
}

.contact-hero-body {
    position: relative;
    z-index: 5;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 52px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    padding-top: 100px;
}

.contact-hero-left {
    flex: 1;
}

/* eyebrow */
.eyebrow-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: 14px;
    padding-left: 28px;
    position: relative;
}

.eyebrow-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 2px;
    background: var(--orange);
}

.eyebrow-tag.center {
    display: block;
    text-align: center;
    padding-left: 0;
}

.eyebrow-tag.center::before {
    display: none;
}

.eyebrow-tag.light {
    color: rgba(255, 255, 255, .6);
}

.eyebrow-tag.light::before {
    background: rgba(255, 255, 255, .4);
}

.contact-hero-h1 {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: clamp(3rem, 6vw, 6rem);
    line-height: 1.0;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -.5px;
    margin-bottom: 22px;
}

.contact-hero-h1 .line {
    display: block;
    overflow: hidden;
}

.ch-l1 {
    animation: fadeSlideUp .9s .25s var(--ease-out) both;
}

.ch-l2 {
    animation: fadeSlideUp .9s .38s var(--ease-out) both;
}

.ch-l3 {
    animation: fadeSlideUp .9s .51s var(--ease-out) both;
}

.accent-orange {
    color: var(--orange);
    text-shadow: 0 0 60px rgba(212, 82, 26, .5);
    animation: accentPulse 3s ease-in-out infinite;
}

@keyframes accentPulse {

    0%,
    100% {
        text-shadow: 0 0 60px rgba(212, 82, 26, .5)
    }

    50% {
        text-shadow: 0 0 90px rgba(212, 82, 26, .9)
    }
}

.contact-hero-p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .62);
    line-height: 1.75;
    max-width: 500px;
    margin-bottom: 36px;
    animation: fadeSlideUp .9s .65s var(--ease-out) both;
    font-weight: 300;
}

.contact-hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    animation: fadeSlideUp .9s .78s var(--ease-out) both;
}

/* Hero right info badges */
.contact-hero-right {
    flex-shrink: 0;
    animation: fadeSlideUp .9s .9s var(--ease-out) both;
}

.hero-info-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hinfo-badge {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(10px);
    padding: 20px 28px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 220px;
    transition: background .3s, border-color .3s, transform .3s var(--ease-spring);
}

.hinfo-badge:hover {
    background: rgba(212, 82, 26, .15);
    border-color: rgba(212, 82, 26, .4);
    transform: translateX(6px);
}

.hib-icon {
    font-size: 1.8rem;
    color: var(--orange);
    flex-shrink: 0;
}

.hib-lbl {
    display: block;
    font-family: var(--font-body);
    font-size: .72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .55);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.hib-val {
    display: block;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-top: 2px;
}

/* ── TICKER ── */
.ticker-wrap {
    background: var(--orange);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
    z-index: 10;
    box-shadow: 0 4px 24px rgba(212, 82, 26, .22);
}

.ticker-wrap::before,
.ticker-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 1;
    pointer-events: none;
}

.ticker-wrap::before {
    left: 0;
    background: linear-gradient(90deg, var(--orange), transparent);
}

.ticker-wrap::after {
    right: 0;
    background: linear-gradient(-90deg, var(--orange), transparent);
}

.ticker-track {
    display: inline-flex;
    gap: 48px;
    animation: tickerScroll 28s linear infinite;
}

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

.ticker-item {
    font-family: var(--font-head);
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: 3.5px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 16px;
    white-space: nowrap;
}

.tdot {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, .5);
    border-radius: 50%;
    flex-shrink: 0;
}

@keyframes tickerScroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

/* ── BUTTONS ── */
.btn-fire {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--orange);
    color: #fff;
    padding: 14px 34px;
    font-family: var(--font-head);
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: background .3s var(--ease-smooth), transform .3s var(--ease-spring), box-shadow .3s;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-fire::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .12);
    transform: translateX(-100%);
    transition: transform .4s var(--ease-smooth);
}

.btn-fire:hover::before {
    transform: translateX(0);
}

.btn-fire:hover {
    background: var(--orange-h);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px var(--orange-glow);
}

.btn-fire i {
    transition: transform .3s var(--ease-spring);
}

.btn-fire:hover i {
    transform: translateX(4px);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: rgba(255, 255, 255, .85);
    padding: 14px 28px;
    font-family: var(--font-head);
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, .3);
    transition: all .3s var(--ease-smooth);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .6);
    transform: translateY(-2px);
}

.btn-ghost-light {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: rgba(255, 255, 255, .8);
    padding: 14px 28px;
    font-family: var(--font-head);
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, .25);
    transition: all .3s var(--ease-smooth);
}

.btn-ghost-light:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .5);
    transform: translateY(-2px);
}

/* ── SECTION HEADING ── */
.section-h2 {
    font-family: var(--font-body);
    font-size: 50px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--dark);
    line-height: 1.12;
    letter-spacing: -.3px;
    margin-bottom: 20px;
}

.section-h2.center {
    text-align: center;
}

.cat-title-accent {
    color: var(--orange);
}

.section-sub {
    font-size: .95rem;
    color: #666;
    line-height: 1.75;
    max-width: 450px;
    font-weight: 300;
    text-align: right;
    margin-bottom: 32px;
}

.why-sub {
    font-size: 1rem;
    color: #666;
    line-height: 1.75;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
    text-align: center;
}

/* ── ANIMATIONS ── */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(36px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.fade-up,
.fade-left,
.fade-right {
    opacity: 0;
    transition: opacity .85s var(--ease-out), transform .85s var(--ease-out);
}

.fade-up {
    transform: translateY(50px);
}

.fade-left {
    transform: translateX(-48px);
}

.fade-right {
    transform: translateX(48px);
}

.fade-up.in,
.fade-left.in,
.fade-right.in {
    opacity: 1;
    transform: translate(0);
}

/* ── CONTACT SECTION ── */
.contact-section {
    padding: 100px 0 110px;
    background: var(--off);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(212, 82, 26, .08) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    opacity: .5;
}

.contact-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 28px;
    align-items: start;
}

/* Form panel */
.form-panel {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 44px 48px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .07);
}

.form-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), #e87b3a);
}

.form-panel-header {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}

.fp-icon {
    width: 52px;
    height: 52px;
    background: rgba(212, 82, 26, .08);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--orange);
    flex-shrink: 0;
}

.form-panel-header h3 {
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 4px;
    letter-spacing: .3px;
}

.form-panel-header p {
    font-size: .85rem;
    color: #888;
    font-weight: 300;
    line-height: 1.55;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: var(--font-body);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: var(--off);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 13px 16px;
    color: var(--dark);
    font-family: var(--font-body);
    font-size: .92rem;
    outline: none;
    transition: all .3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--orange);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(212, 82, 26, .08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #bbb;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.select-wrap {
    position: relative;
}

.select-wrap select {
    width: 100%;
    background: var(--off);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 13px 40px 13px 16px;
    color: var(--dark);
    font-family: var(--font-body);
    font-size: .92rem;
    outline: none;
    transition: all .3s;
    -webkit-appearance: none;
    cursor: pointer;
}

.select-wrap select:focus {
    border-color: var(--orange);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(212, 82, 26, .08);
}

.select-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: .8rem;
    color: #aaa;
    pointer-events: none;
}

.form-submit-btn {
    width: 100%;
    margin-top: 8px;
    justify-content: center;
}

/* Info cards */
.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: transform .4s var(--ease-spring), box-shadow .4s var(--ease-smooth), border-color .3s;
    cursor: default;
}

.info-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--orange);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .4s var(--ease-out);
}

.info-card:hover {
    transform: translateX(6px);
    box-shadow: 0 12px 40px rgba(212, 82, 26, .12);
    border-color: rgba(212, 82, 26, .3);
}

.info-card:hover::before {
    transform: scaleY(1);
}

.ic-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 14px;
}

.ic-icon {
    width: 46px;
    height: 46px;
    background: rgba(212, 82, 26, .08);
    border: 1px solid rgba(212, 82, 26, .2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--orange);
    transition: all .35s;
}

.info-card:hover .ic-icon {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 4px 16px var(--orange-glow);
}

.ic-num {
    font-family: var(--font-body);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(212, 82, 26, .35);
}

.ic-label {
    font-family: var(--font-body);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 4px;
}

.ic-title {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.ic-vals {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.ic-vals a,
.ic-vals span {
    font-size: .88rem;
    color: #666;
    text-decoration: none;
    transition: color .3s;
    line-height: 1.6;
    font-weight: 300;
}

.ic-vals a:hover {
    color: var(--orange);
}

.ic-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    font-family: var(--font-body);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--orange);
    border-top: 1px solid var(--border);
    padding-top: 12px;
    width: 100%;
    transition: gap .3s var(--ease-spring);
}

.ic-cta i {
    transition: transform .3s var(--ease-spring);
}

.info-card:hover .ic-cta i {
    transform: translateX(5px);
}

.ic-map-dots {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 90px;
    height: 90px;
    background-image: radial-gradient(circle, rgba(212, 82, 26, .18) 1px, transparent 1px);
    background-size: 14px 14px;
    pointer-events: none;
}

/* Hours card */
.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: .86rem;
}

.hour-row:last-child {
    border-bottom: none;
}

.hour-day {
    color: #666;
    font-weight: 500;
}

.hour-time {
    font-weight: 700;
    color: var(--dark);
    font-size: .84rem;
}

.hour-time.emrg {
    color: var(--orange);
}

.hour-badge {
    font-size: .72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: var(--off);
    color: #aaa;
    padding: 2px 10px;
    border: 1px solid var(--border);
    border-radius: 100px;
}

/* ── STATS ── */
.stats-contact {
    position: relative;
    padding: 30px 0;
    overflow: hidden;
}

.stats-bg-img {
    position: absolute;
    inset: 0;
}

.stats-bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stats-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 9, 8, .87);
}

.stats-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.stat-item {
    text-align: center;
    padding: 52px 20px;
    border-right: 1px solid rgba(255, 255, 255, .06);
    position: relative;
    transition: background .35s var(--ease-smooth);
    cursor: default;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    right: 20%;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform .45s var(--ease-out);
    border-radius: 2px;
}

.stat-item:hover {
    background: rgba(255, 255, 255, .03);
}

.stat-item:hover::after {
    transform: scaleX(1);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 14px;
    display: block;
    color: var(--orange);
    opacity: .8;
    transition: transform .4s var(--ease-spring), opacity .3s;
}

.stat-item:hover .stat-icon {
    transform: scale(1.2) translateY(-4px);
    opacity: 1;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 3.6rem;
    color: var(--orange);
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-lbl {
    font-family: var(--font-head);
    font-size: .82rem;
    color: rgba(255, 255, 255, .45);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ── MAP ── */
.map-section {
    padding: 90px 0;
    background: #fff;
}

.map-header {
    text-align: center;
    margin-bottom: 44px;
}

.map-embed {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
    border: 1px solid var(--border);
}

.map-embed iframe {
    display: block;
}

.map-pin-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
}

.map-pin-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
    min-width: 240px;
}

.map-pin-card i {
    font-size: 1.4rem;
    color: var(--orange);
    flex-shrink: 0;
    margin-top: 2px;
}

.map-pin-card strong {
    display: block;
    font-family: var(--font-body);
    font-size: .9rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.map-pin-card span {
    font-size: .82rem;
    color: #666;
    line-height: 1.55;
}

/* ── CTA BAND ── */
.cta-band {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 9, 8, .84);
}

.cta-embers {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 2;
}

.c-ember {
    position: absolute;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: var(--orange);
    animation: emberRise linear infinite;
    opacity: 0;
}

.c-ember:nth-child(1) {
    left: 10%;
    animation-duration: 6s;
    animation-delay: 0s
}

.c-ember:nth-child(2) {
    left: 25%;
    animation-duration: 8s;
    animation-delay: 1.5s;
    background: #ff9d00
}

.c-ember:nth-child(3) {
    left: 40%;
    animation-duration: 5s;
    animation-delay: 3s
}

.c-ember:nth-child(4) {
    left: 55%;
    animation-duration: 9s;
    animation-delay: .5s
}

.c-ember:nth-child(5) {
    left: 70%;
    animation-duration: 7s;
    animation-delay: 2s;
    background: #ffb347
}

.c-ember:nth-child(6) {
    left: 82%;
    animation-duration: 6.5s;
    animation-delay: 4s
}

.cta-body {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 980px;
    margin: 0 auto;
    padding: 0 32px;
}

.cta-body h2 {
    font-family: var(--font-body);
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.cta-body h2 em {
    color: var(--orange);
    font-style: normal;
}

.cta-body p {
    color: rgba(255, 255, 255, .55);
    font-size: 1rem;
    margin-bottom: 36px;
    line-height: 1.7;
    font-weight: 300;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ── FOOTER ── */
.footer {
    background: var(--dark2);
}

.footer-top {
    padding: 76px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 52px;
}

.footer-logo {
    margin-bottom: 18px;
    width: 60px;
    height: 70px;
    display: block;
}

.footer-about p {
    color: rgba(255, 255, 255, .38);
    font-size: .87rem;
    line-height: 1.75;
    font-weight: 300;
}

.f-socials {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.f-socials a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    color: rgba(255, 255, 255, .4);
    transition: background .25s var(--ease-smooth), color .25s, border-color .25s, transform .3s var(--ease-spring);
}

.f-socials a:hover {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
    transform: translateY(-3px);
}

.footer-col h5 {
    font-family: var(--font-body);
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--orange);
    display: inline-block;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, .38);
    font-size: .87rem;
    transition: color .25s, padding-left .3s var(--ease-smooth);
    font-weight: 300;
}

.footer-col ul li a:hover {
    color: var(--orange);
    padding-left: 8px;
}

.f-emg {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(212, 82, 26, .1);
    border: 1px solid rgba(212, 82, 26, .25);
    border-radius: var(--radius-lg);
    padding: 14px 16px;
    margin-bottom: 22px;
    transition: background .3s, border-color .3s;
}

.f-emg:hover {
    background: rgba(212, 82, 26, .15);
    border-color: rgba(212, 82, 26, .4);
}

.f-emg i {
    font-size: 1.2rem;
    color: var(--orange);
}

.f-emg small {
    display: block;
    font-size: .72rem;
    color: rgba(255, 255, 255, .4);
}

.f-emg strong {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--orange);
    letter-spacing: 1px;
}

.f-news-lbl {
    font-family: var(--font-body);
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 10px;
}

.f-news {
    display: flex;
}

.f-news input {
    flex: 1;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-right: none;
    color: #fff;
    padding: 11px 14px;
    border-radius: var(--radius) 0 0 var(--radius);
    font-size: .85rem;
    outline: none;
    font-family: var(--font-body);
    transition: border-color .3s, background .3s;
}

.f-news input:focus {
    border-color: var(--orange);
    background: rgba(255, 255, 255, .09);
}

.f-news input::placeholder {
    color: rgba(255, 255, 255, .2);
}

.f-news button {
    background: var(--orange);
    border: none;
    color: #fff;
    padding: 11px 18px;
    border-radius: 0 var(--radius) var(--radius) 0;
    cursor: pointer;
    font-size: .9rem;
    transition: background .25s;
}

.f-news button:hover {
    background: var(--orange-h);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding: 22px 0;
}

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

.f-bot-inner p {
    color: rgba(255, 255, 255, .25);
    font-size: .8rem;
}

/* ── SCROLL TOP ── */
.scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 46px;
    height: 46px;
    background: var(--orange);
    color: #fff;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .4s var(--ease-smooth), transform .4s var(--ease-spring), background .25s;
    z-index: 999;
    box-shadow: 0 8px 24px var(--orange-glow);
}

.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-5px);
    background: var(--orange-h);
}

/* ── TOAST ── */
.toast-msg {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    z-index: 5000;
    background: var(--orange);
    color: #fff;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 28px var(--orange-glow);
    opacity: 0;
    transition: all .4s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.toast-msg.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.toast-msg i {
    font-size: 1rem;
}

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
    .contact-hero-body {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
        padding: 120px 32px 80px;
    }

    .hero-info-stack {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .hinfo-badge {
        min-width: 180px;
    }

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

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

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

@media(max-width:768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 22px;
        position: fixed;
        top: 74px;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid var(--border);
        padding: 32px;
        transform: translateX(-100%);
        transition: transform .4s var(--ease-smooth);
        z-index: 999;
    }

    .nav-links.open {
        transform: translateX(0);
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .contact-hero-body {
        padding: 100px 24px 80px;
    }

    .contact-hero-h1 {
        font-size: 2.6rem;
    }

    .contact-hero-actions {
        flex-wrap: wrap;
    }

    .hero-info-stack {
        display: none;
    }

    .form-panel {
        padding: 28px 20px;
    }

    .form-row-2 {
        grid-template-columns: 1fr;
    }

    .contact-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .section-sub {
        text-align: left;
        max-width: 100%;
    }

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

    .f-bot-inner {
        flex-direction: column;
        text-align: center;
    }

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

    .cta-body h2 {
        font-size: 2rem;
    }
}

@media(max-width:480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Content size polish */
.contact-hero-p,
.section-sub,
.form-panel-header p,
.cta-body p {
    font-size: clamp(1.08rem, 1.05vw, 1.2rem);
    line-height: 1.85;
}

.form-group label,
.form-group input,
.form-group textarea,
.select-wrap select,
.ic-vals a,
.ic-vals span,
.hour-row,
.map-pin-card span {
    font-size: 1rem;
}

.ic-cta,
.footer-about p,
.footer-col ul li a {
    font-size: 1.05rem;
    line-height: 1.8;
}

.f-emg small,
.f-news-lbl,
.f-news input,
.f-news button,
.f-bot-inner p {
    font-size: 0.95rem;
}
