/* ======================================== */
/* GLOBAL RESET & BASE STYLES               */
/* ======================================== */

:root {
    --primary:      #420A07;
    --accent1:      #CC5023;
    --accent2:      #D16C27;
    --dark:         #1a1a1a;
    --text:         #222222;
    --text-muted:   #555555;
    --light-bg:     #f8f4f0;
    --white:        #ffffff;
    --font-heading: 'Montserrat', sans-serif;
    --font-body:    'Open Sans', sans-serif;
    --container:    1300px;
    --header-desk:  120px;
    --header-mob:   74px;
    --topbar:       40px;
    --radius:       6px;
    --shadow:       0 4px 24px rgba(0,0,0,0.10);
    --shadow-lg:    0 8px 40px rgba(0,0,0,0.18);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--white);
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

address {
    font-style: normal;
}

/* ======================================== */
/* REUSABLE UTILITIES                       */
/* ======================================== */

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.eyebrow {
    display: block;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    line-height: 1.4;
    color: var(--accent1);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.eyebrow.centered { text-align: center; }
.eyebrow.light    { color: rgba(255,255,255,0.75); }

.section-heading {
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 20px;
}

.section-heading.centered { text-align: center; }

.body-copy {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.75;
    color: var(--text);
    margin-bottom: 16px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    color: var(--white);
    background: var(--accent1);
    border: 2px solid var(--accent1);
    padding: 14px 30px;
    border-radius: var(--radius);
    text-transform: uppercase;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
    cursor: pointer;
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    color: var(--white);
    background: transparent;
    border: 2px solid var(--white);
    padding: 14px 30px;
    border-radius: var(--radius);
    text-transform: uppercase;
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.btn-outline-white:hover,
.btn-outline-white:focus-visible {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

/* ======================================== */
/* SCROLL ANIMATIONS                        */
/* ======================================== */

.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);
}

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

/* — Top Contact Bar — */
.top-bar {
    width: 100%;
    height: var(--topbar);
    background-color: var(--primary);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 200;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1;
    color: rgba(255,255,255,0.9);
    transition: color 0.2s ease;
}

.top-bar-link:hover {
    color: var(--accent2);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-bar-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.top-bar-social:hover {
    color: var(--white);
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.5);
}

/* — Main Navigation Header — */
.main-header {
    width: 100%;
    height: var(--header-desk);
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    transition: box-shadow 0.3s ease;
}

.main-header.scrolled {
    box-shadow: 0 4px 28px rgba(0,0,0,0.14);
}

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

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

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

/* — Desktop Nav — */
.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

.nav-link {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1;
    color: var(--dark);
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: var(--radius);
    position: relative;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-link::after {
    content: '';
    display: block;
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: var(--accent1);
    border-radius: 2px;
    transition: transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent1);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-social-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 1px solid #e5e5e5;
    padding-left: 24px;
}

.nav-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--dark);
    border: 1px solid #ddd;
    border-radius: 50%;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.nav-social-icon:hover {
    color: var(--accent1);
    border-color: var(--accent1);
    background: rgba(204,80,35,0.06);
}

/* — Hamburger Button — */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: var(--radius);
    transition: background 0.2s ease;
}

.hamburger:hover {
    background: rgba(0,0,0,0.05);
}

.ham-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transform-origin: center;
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
}

.hamburger.active .ham-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.active .ham-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.active .ham-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* — Mobile Navigation Dropdown — */
.mobile-nav {
    width: 100%;
    background: var(--white);
    position: absolute;
    top: var(--header-mob);
    left: 0;
    z-index: 99;
    max-height: 0;
    overflow: hidden;
    border-top: 2px solid transparent;
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
    transition: max-height 0.4s ease, border-color 0.3s ease;
}

.mobile-nav.open {
    max-height: 500px;
    border-top-color: var(--accent1);
}

.mobile-nav-list {
    list-style: none;
    padding: 12px 0 16px;
}

.mobile-nav-link {
    display: block;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1;
    color: var(--dark);
    text-transform: uppercase;
    padding: 14px 24px;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.2s ease, background 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--accent1);
    background: rgba(204,80,35,0.04);
}

.mobile-nav-social-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px 4px;
}

.mobile-nav-social-row a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: var(--dark);
    border: 1px solid #ddd;
    border-radius: 50%;
    transition: color 0.2s, border-color 0.2s;
}

.mobile-nav-social-row a:hover {
    color: var(--accent1);
    border-color: var(--accent1);
}

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

.hero-section {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 1;
    transition: opacity 2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(
        135deg,
        rgba(66, 10, 7, 0.72) 0%,
        rgba(26, 10, 5, 0.55) 50%,
        rgba(0, 0, 0, 0.35) 100%
    );
}

.hero-content {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-top: 0;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 54px;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.08;
    color: var(--white);
    max-width: 700px;
    margin-bottom: 18px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
    animation: heroUp 0.9s cubic-bezier(0.25, 1, 0.5, 1) 0.2s both;
}

.hero-sub {
    font-family: var(--font-body);
    font-size: 19px;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.5;
    color: rgba(255,255,255,0.88);
    max-width: 560px;
    margin-bottom: 34px;
    text-shadow: 0 1px 10px rgba(0,0,0,0.35);
    animation: heroUp 0.9s cubic-bezier(0.25, 1, 0.5, 1) 0.45s both;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1;
    color: var(--white);
    background: var(--accent1);
    padding: 18px 36px;
    border-radius: var(--radius);
    text-transform: uppercase;
    box-shadow: 0 4px 24px rgba(204, 80, 35, 0.45);
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    animation: heroUp 0.9s cubic-bezier(0.25, 1, 0.5, 1) 0.7s both;
}

.hero-btn:hover,
.hero-btn:focus-visible {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(66, 10, 7, 0.45);
}

@keyframes heroUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slide Dots */
.hero-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    border: 2px solid rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.hero-dot.active {
    background: var(--white);
    transform: scale(1.3);
}

/* ======================================== */
/* SECTION 1: FEATURE ICONS                 */
/* ======================================== */

.features-section {
    width: 100%;
}

.features-band {
    width: 100%;
    background: var(--dark);
    padding: 52px 0 56px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 24px;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.feature-card:hover {
    background: rgba(204, 80, 35, 0.08);
    border-color: rgba(204, 80, 35, 0.25);
    transform: translateY(-4px);
}

.feature-icon-wrap {
    width: 90px;
    height: 90px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 14px rgba(209, 108, 39, 0.35));
    transition: filter 0.3s ease;
}

.feature-card:hover .feature-icon-wrap {
    filter: drop-shadow(0 0 20px rgba(209, 108, 39, 0.55));
}

.feature-svg {
    width: 100%;
    height: 100%;
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1.2;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.feature-desc {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.6;
    color: rgba(255,255,255,0.55);
}

/* Feature showcase image below icon band */
.features-showcase {
    width: 100%;
    background: #111;
    padding: 50px 20px 56px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.features-showcase img {
    max-width: 600px;
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.92;
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.5);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.features-showcase img:hover {
    opacity: 1;
    transform: scale(1.015);
}

/* ======================================== */
/* SECTION 2: SERVICES TICKER               */
/* ======================================== */

.services-ticker {
    width: 100%;
    background: var(--primary);
    padding: 14px 0;
    overflow: hidden;
}

.ticker-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0 14px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.6;
    color: rgba(255,255,255,0.88);
    text-transform: uppercase;
    text-align: center;
    padding: 0 20px;
}

.ticker-dot {
    color: var(--accent2);
    font-size: 14px;
    line-height: 1;
}

/* ======================================== */
/* SECTION 3: ABOUT / BODY                  */
/* ======================================== */

.about-section {
    width: 100%;
    padding: 90px 0 100px;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-text {
    padding-right: 20px;
}

.services-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
    margin-bottom: 36px;
    margin-top: 4px;
}

.services-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: normal;
    line-height: 1.4;
    color: var(--text);
}

.services-list li svg {
    flex-shrink: 0;
    color: var(--accent1);
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.about-image::before {
    content: '';
    display: block;
    position: absolute;
    inset: 0;
    border-radius: 10px;
    background: linear-gradient(to bottom right, rgba(66,10,7,0.12), transparent);
    z-index: 1;
    pointer-events: none;
}

.about-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

/* ======================================== */
/* SECTION 4: BRANDS SLIDER                 */
/* ======================================== */

.brands-section {
    width: 100%;
    padding: 70px 0 80px;
    background: var(--light-bg);
    overflow: hidden;
}

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

.brands-track-wrapper {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.brands-track {
    display: flex;
    align-items: center;
    gap: 0;
    width: max-content;
    animation: brandScroll 28s linear infinite;
}

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

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

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 50px;
    height: 80px;
    flex-shrink: 0;
}

.brand-item img {
    max-height: 55px;
    max-width: 160px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.5);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.brand-item img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

/* ======================================== */
/* SECTION 5: TESTIMONIAL                   */
/* ======================================== */

.testimonial-section {
    width: 100%;
    padding: 80px 0;
    background: var(--primary);
}

.testimonial-card {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.stars-img {
    height: 38px;
    width: auto;
    margin: 0 auto 24px;
    display: block;
}

.testimonial-quote {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.7;
    color: rgba(255,255,255,0.92);
    font-style: italic;
    margin-bottom: 24px;
    position: relative;
}

.testimonial-quote::before {
    content: '\201C';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 80px;
    color: rgba(255,255,255,0.1);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

.testimonial-author {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1;
    color: var(--accent2);
    text-transform: uppercase;
    font-style: normal;
    display: block;
}

/* ======================================== */
/* SECTION 6: PARALLAX                      */
/* ======================================== */

.parallax-section {
    width: 100%;
    position: relative;
    padding: 110px 0 120px;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(66, 10, 7, 0.82) 0%,
        rgba(26, 10, 5, 0.70) 100%
    );
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.parallax-heading {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 16px;
    text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.parallax-text {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
    margin-bottom: 38px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

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

.fat-footer {
    width: 100%;
    background: #111111;
    padding: 70px 0 60px;
    border-top: 4px solid var(--accent1);
}

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

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.3;
    color: var(--accent2);
    text-transform: uppercase;
    margin-bottom: 18px;
}

/* — Footer Column 1: Contact — */
.footer-logo {
    max-height: 64px;
    width: auto;
    margin-bottom: 20px;
}

.footer-phone {
    display: block;
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 900;
    letter-spacing: 0.06em;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 14px;
    transition: color 0.2s ease;
}

.footer-phone:hover {
    color: var(--accent2);
}

.footer-address {
    margin-bottom: 12px;
}

.footer-address p {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
}

.footer-email {
    display: block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: normal;
    line-height: 1;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
    transition: color 0.2s ease;
}

.footer-email:hover {
    color: var(--accent2);
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.footer-social-icon:hover {
    color: var(--white);
    border-color: var(--accent1);
    background: rgba(204,80,35,0.18);
}

.footer-license-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1;
    color: var(--accent2);
    text-transform: uppercase;
    border: 1px solid rgba(209,108,39,0.35);
    border-radius: 3px;
    padding: 6px 12px;
}

/* — Footer Column 2: Map — */
.map-wrapper {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.08);
    margin-bottom: 12px;
    height: 220px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.map-address-label {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.5;
    color: rgba(255,255,255,0.5);
    text-align: center;
}

/* — Footer Column 3: Hours — */
.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 6px;
}

.hours-table td {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.5;
    color: rgba(255,255,255,0.7);
    padding: 7px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.hours-table td:last-child {
    text-align: right;
    color: rgba(255,255,255,0.5);
}

.hours-table .closed-row td {
    color: rgba(204, 80, 35, 0.7);
}

.license-list {
    list-style: none;
}

.license-list li {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
    padding: 5px 0;
    padding-left: 16px;
    position: relative;
}

.license-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent1);
    font-size: 12px;
}

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

.copyright-bar {
    width: 100%;
    background: #000000;
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

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

.copyright-text {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.5;
    color: rgba(255,255,255,0.4);
}

.powered-by {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.5;
    color: rgba(255,255,255,0.35);
}

.powered-by a {
    color: var(--accent2);
    font-weight: 500;
    transition: color 0.2s ease;
}

.powered-by a:hover {
    color: var(--white);
}

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

.mobile-phone-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--primary);
    border-top: 2px solid var(--accent1);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
}

.mobile-phone-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1;
    color: var(--white);
    text-transform: uppercase;
    transition: background 0.2s ease;
}

.mobile-phone-link:hover,
.mobile-phone-link:active {
    background: var(--accent1);
}

/* ======================================== */
/* SUBPAGE STYLES                           */
/* ======================================== */

/* — Sub-page Hero Banner — */
.subpage-hero {
    width: 100%;
    height: 340px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.subpage-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(66, 10, 7, 0.78) 0%,
        rgba(26, 10, 5, 0.45) 55%,
        rgba(0, 0, 0, 0.20) 100%
    );
    z-index: 1;
}

.subpage-hero-content {
    position: relative;
    z-index: 2;
}

.subpage-hero-title {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--white);
    text-shadow: 0 2px 16px rgba(0,0,0,0.4);
    margin-bottom: 10px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1;
    color: rgba(255,255,255,0.65);
}

.breadcrumb a {
    color: rgba(255,255,255,0.65);
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: var(--accent2);
}

.breadcrumb span[aria-hidden] {
    color: rgba(255,255,255,0.4);
}

/* — Sub-page accent divider bar — */
.accent-divider {
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary) 0%, var(--accent1) 50%, var(--accent2) 100%);
}

/* — Sub-page Content Section — */
.subpage-content-section {
    width: 100%;
    padding: 80px 0 90px;
    background: var(--white);
}

.subpage-content-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 64px;
    align-items: start;
}

.subpage-copy {
    min-width: 0;
}

/* Why Choose Us heading */
.why-heading {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.01em;
    line-height: 1.3;
    color: var(--primary);
    text-transform: uppercase;
    margin-top: 28px;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0e8e5;
}

/* Why list items */
.why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 32px;
}

.why-list li {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.7;
    color: var(--text);
    padding-left: 18px;
    border-left: 3px solid var(--accent1);
}

.why-list li strong {
    font-weight: 700;
    color: var(--dark);
}

/* Callout line above CTA */
.subpage-cta-line {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: normal;
    line-height: 1.3;
    color: var(--accent1);
    margin-bottom: 10px;
    margin-top: 28px;
}

/* Sub-page right-column image */
.subpage-image {
    position: sticky;
    top: calc(var(--header-desk) + 24px);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.subpage-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.5s ease;
}

.subpage-image:hover img {
    transform: scale(1.025);
}

/* ======================================== */
/* CONTACT PAGE STYLES                      */
/* ======================================== */

/* Full-width map at page top */
.contact-map-section {
    width: 100%;
    border-bottom: 4px solid var(--primary);
}

.contact-map-frame {
    width: 100%;
    height: 300px;
}

.contact-map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Contact content section */
.contact-content-section {
    width: 100%;
    padding: 80px 0 90px;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.contact-heading {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 14px;
}

.contact-service-area {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.6;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 28px;
}

/* Saturday appointment callout */
.contact-appt-block {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff8f5;
    border: 1px solid #f0ddd5;
    border-left: 4px solid var(--accent1);
    border-radius: var(--radius);
    padding: 14px 18px;
    margin-bottom: 20px;
}

.contact-appt-block svg {
    flex-shrink: 0;
    color: var(--accent1);
}

.contact-appt-line {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: normal;
    line-height: 1.2;
    color: var(--dark);
    margin: 0;
}

.contact-phone-line {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 28px;
}

.contact-phone-link {
    font-weight: 700;
    color: var(--accent1);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-phone-link:hover {
    color: var(--primary);
}

/* Contact detail rows */
.contact-details-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
    padding: 20px;
    background: var(--light-bg);
    border-radius: var(--radius);
}

.contact-detail-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.5;
    color: var(--text);
}

.contact-detail-row svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--accent1);
}

.contact-detail-row a {
    color: var(--text);
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-detail-row a:hover {
    color: var(--accent1);
}

.contact-detail-row small {
    font-size: 13px;
    color: var(--text-muted);
}

/* Closing line */
.contact-closing {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: normal;
    line-height: 1.4;
    color: var(--primary);
    font-style: italic;
}

/* Contact right-column image */
.contact-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact-image img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.contact-image:hover img {
    transform: scale(1.025);
}

/* ======================================== */
/* STOVE & HEARTH PAGE STYLES               */
/* ======================================== */

/* Stove & Hearth two-column grid */
.sh-content-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 60px;
    align-items: start;
}

/* Stove type sub-headings in main copy */
.sh-sub-heading {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.01em;
    line-height: 1.3;
    color: var(--primary);
    text-transform: uppercase;
    margin-top: 32px;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f0e8e5;
}

/* Stove type definition list */
.stove-types-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 8px;
}

.stove-type-entry {
    padding-left: 16px;
    border-left: 3px solid var(--accent1);
}

.stove-type-entry dt {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: normal;
    line-height: 1.4;
    color: var(--dark);
    margin-bottom: 4px;
}

.stove-type-entry dd {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.7;
    color: var(--text);
    margin-left: 0;
}

/* Beyond Sales list */
.beyond-sales-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.beyond-sales-list li {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.7;
    color: var(--text);
    padding-left: 16px;
    border-left: 3px solid var(--accent2);
}

.beyond-sales-list li strong {
    font-weight: 700;
    color: var(--dark);
}

/* — Sidebar — */
.sh-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: calc(var(--header-desk) + 24px);
}

/* Stove type nav widget */
.stove-nav-widget {
    background: var(--light-bg);
    border-radius: 10px;
    padding: 22px 24px;
    border: 1px solid #e8ddd9;
}

.stove-nav-title {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.3;
    color: var(--accent1);
    text-transform: uppercase;
    margin-bottom: 14px;
}

.stove-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.stove-nav-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1;
    color: var(--dark);
    padding: 11px 0;
    border-bottom: 1px solid #e8ddd9;
    transition: color 0.2s ease;
}

.stove-nav-list li:last-child {
    border-bottom: none;
}

/* Sidebar images */
.sh-sidebar-img {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.sh-sidebar-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.sh-sidebar-img:hover img {
    transform: scale(1.04);
}

/* Showroom card */
.showroom-card {
    background: var(--primary);
    border-radius: 10px;
    padding: 24px;
    color: var(--white);
}

.showroom-card-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1.3;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.showroom-card p {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.65;
    color: rgba(255,255,255,0.80);
    margin-bottom: 10px;
}

.showroom-tagline {
    font-weight: 600 !important;
    color: var(--accent2) !important;
    font-size: 12px !important;
    text-transform: uppercase;
    letter-spacing: 0.06em !important;
    margin-bottom: 16px !important;
}

.showroom-card-link {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: var(--radius);
    padding: 10px 18px;
    text-transform: uppercase;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.showroom-card-link:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.7);
}

/* Parallax tax credit line */
.sh-tax-credit {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1.3;
    color: var(--accent2);
    margin-bottom: 32px;
    text-transform: uppercase;
}

/* ======================================== */
/* RESPONSIVE — TABLET (≤1024px)            */
/* ======================================== */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 44px;
    }

    .subpage-content-grid {
        grid-template-columns: 1fr 340px;
        gap: 44px;
    }

    .subpage-image {
        position: static;
    }

    .sh-content-grid {
        grid-template-columns: 1fr 260px;
        gap: 40px;
    }

    .sh-sidebar {
        position: static;
    }

    .about-grid {
        gap: 44px;
    }

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

    .footer-col:last-child {
        grid-column: 1 / -1;
    }
}

/* ======================================== */
/* RESPONSIVE — MOBILE (≤768px)             */
/* ======================================== */

@media (max-width: 768px) {

    /* Top bar adjustments */
    .top-bar {
        height: auto;
        padding: 8px 0;
    }

    .top-bar-inner {
        flex-direction: column;
        align-items: center;
        gap: 6px;
        text-align: center;
    }

    .top-bar-left {
        flex-direction: column;
        gap: 4px;
    }

    /* Main header mobile height */
    .main-header {
        height: var(--header-mob);
    }

    .logo-img {
        max-height: 50px;
    }

    /* Hide desktop nav, show hamburger */
    .main-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

    .hero-title {
        font-size: 30px;
        letter-spacing: -0.02em;
    }

    .hero-sub {
        font-size: 15px;
    }

    .hero-btn {
        font-size: 13px;
        padding: 14px 24px;
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .features-showcase {
        max-height: 260px;
    }

    .features-showcase img {
        height: 260px;
    }

    /* Ticker */
    .ticker-inner {
        justify-content: flex-start;
        gap: 0 10px;
        font-size: 11px;
    }

    /* Contact page */
    .contact-map-frame {
        height: 220px;
    }

    .contact-content-section {
        padding: 50px 0 60px;
    }

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

    .contact-heading {
        font-size: 28px;
    }

    .contact-image img {
        height: 260px;
    }

    /* Stove & Hearth */
    .sh-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sh-sidebar {
        position: static;
    }

    /* Subpage hero */
    .subpage-hero {
        height: 220px;
    }

    .subpage-hero-title {
        font-size: 28px;
    }

    .subpage-content-section {
        padding: 50px 0 60px;
    }

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

    .subpage-image {
        position: static;
    }

    .subpage-image img {
        height: 280px;
        object-position: center 20%;
    }

    /* About */
    .about-section {
        padding: 60px 0 70px;
    }

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

    .about-text {
        padding-right: 0;
    }

    .services-list {
        grid-template-columns: 1fr;
    }

    .about-image img {
        height: 280px;
    }

    .section-heading {
        font-size: 26px;
    }

    /* Brands */
    .brands-section {
        padding: 50px 0 60px;
    }

    /* Testimonial */
    .testimonial-section {
        padding: 60px 0;
    }

    .testimonial-quote {
        font-size: 17px;
    }

    /* Parallax — disable fixed on mobile (iOS issue) */
    .parallax-section {
        background-attachment: scroll;
        padding: 80px 0 90px;
    }

    .parallax-heading {
        font-size: 28px;
    }

    .parallax-text {
        font-size: 16px;
    }

    /* Fat Footer */
    .fat-footer {
        padding: 50px 0 40px;
    }

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

    .footer-phone {
        font-size: 26px;
    }

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

    /* Show mobile sticky bar — add body padding */
    .mobile-phone-bar {
        display: block;
    }

    body {
        padding-bottom: 54px;
    }
}

/* ======================================== */
/* RESPONSIVE — SMALL MOBILE (≤480px)       */
/* ======================================== */

@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
    }

    .hero-section {
        height: 440px;
    }

    .hero-btn {
        padding: 13px 20px;
        font-size: 12px;
    }

    .top-bar-link:nth-child(2) {
        display: none;
    }
}
