/* ======================================== */
/* GLOBAL RESET & CSS VARIABLES             */
/* ======================================== */

:root {
    --primary:          #3D882A;
    --primary-dark:     #2d6a1e;
    --primary-light:    #4fa335;
    --accent:           #E2B53E;
    --accent-dark:      #c49a2a;
    --accent-hover:     #f0c84a;
    --dark:             #080808;
    --dark-mid:         #111111;
    --dark-card:        #161616;
    --text-dark:        #222222;
    --text-muted:       #555555;
    --text-light:       #f0f0f0;
    --text-light-muted: #999999;
    --white:            #ffffff;
    --container:        1300px;
    --hdr-h:            116px;
    --hdr-h-mob:        78px;
    --topbar-h:         40px;
    --radius:           4px;
    --transition:       0.28s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.72;
    color: #222222;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

/* ======================================== */
/* UTILITY: CONTAINER & LAYOUT             */
/* ======================================== */

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

/* ======================================== */
/* UTILITY: TYPOGRAPHY DEFAULTS            */
/* ======================================== */

h1, h2, h3, h4, h5 {
    font-family: 'Oswald', sans-serif;
}

a {
    font-size: inherit;
    font-weight: 400;
    letter-spacing: normal;
    line-height: inherit;
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition), opacity var(--transition);
}

a:hover {
    color: var(--accent);
}

p {
    font-size: 17px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.78;
    color: #444444;
    margin-bottom: 18px;
}

p:last-child {
    margin-bottom: 0;
}

strong {
    font-weight: 700;
}

/* ======================================== */
/* UTILITY: SECTION LABELS & HEADINGS      */
/* ======================================== */

.sec-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    line-height: 1;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.gold-label {
    color: var(--accent);
}

.sec-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 1.5px;
    line-height: 1.12;
    color: var(--text-dark);
    text-transform: uppercase;
    margin-bottom: 22px;
}

.light-heading {
    color: var(--white);
    text-shadow: 0 0 40px rgba(61, 136, 42, 0.45);
}

.gold-heading {
    color: var(--primary);
    text-shadow: none;
}

/* ======================================== */
/* UTILITY: FADE-IN-UP ANIMATION           */
/* ======================================== */

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

/* ======================================== */
/* UTILITY: BUTTONS                        */
/* ======================================== */

.btn-primary {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1;
    color: var(--white);
    background-color: var(--primary);
    padding: 17px 34px;
    border-radius: var(--radius);
    text-transform: uppercase;
    border: 2px solid var(--primary);
    transition: background-color var(--transition),
                border-color var(--transition),
                transform 0.2s ease,
                box-shadow var(--transition);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(61, 136, 42, 0.4);
}

.btn-accent {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1;
    color: var(--dark);
    background-color: var(--accent);
    padding: 17px 34px;
    border-radius: var(--radius);
    text-transform: uppercase;
    border: 2px solid var(--accent);
    transition: background-color var(--transition),
                transform 0.2s ease,
                box-shadow var(--transition);
}

.btn-accent:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(226, 181, 62, 0.5);
}

/* ======================================== */
/* NEON PULSE ANIMATION                    */
/* ======================================== */

@keyframes neonPulse {
    0%, 100% {
        text-shadow: 0 0 8px rgba(226, 181, 62, 0.8),
                     0 0 20px rgba(226, 181, 62, 0.5),
                     0 0 40px rgba(226, 181, 62, 0.2);
    }
    50% {
        text-shadow: 0 0 16px rgba(226, 181, 62, 1),
                     0 0 40px rgba(226, 181, 62, 0.7),
                     0 0 80px rgba(226, 181, 62, 0.4);
    }
}

@keyframes greenNeonPulse {
    0%, 100% {
        text-shadow: 0 0 8px rgba(61, 136, 42, 0.8),
                     0 0 20px rgba(61, 136, 42, 0.5);
    }
    50% {
        text-shadow: 0 0 16px rgba(61, 136, 42, 1),
                     0 0 40px rgba(61, 136, 42, 0.7);
    }
}

/* ======================================== */
/* HEADER SECTION: TOP BAR                 */
/* ======================================== */

.top-bar {
    width: 100%;
    min-height: var(--topbar-h);
    background-color: #f4f4f4;
    border-bottom: 1px solid #dedede;
    display: flex;
    align-items: center;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 8px;
    padding-bottom: 8px;
}

.top-bar-left a,
.top-bar-right a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.3px;
    line-height: 1;
    color: #666666;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.top-bar-left a:hover,
.top-bar-right a:hover {
    color: var(--primary);
}

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

.top-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    fill: currentColor;
}

.fb-link {
    color: #666666 !important;
}

.fb-link:hover {
    color: #1877f2 !important;
}

/* ======================================== */
/* HEADER SECTION: MAIN NAV HEADER         */
/* ======================================== */

.main-header {
    width: 100%;
    height: var(--hdr-h);
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 900;
    display: flex;
    align-items: center;
    border-bottom: 3px solid var(--primary);
    transition: box-shadow 0.35s ease;
}

.main-header.scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10),
                0 1px 0 rgba(61, 136, 42, 0.15);
}

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

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

.logo-img {
    height: 115px;
    width: auto;
    max-height: 115px;
    object-fit: contain;
    display: block;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-link {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    line-height: 1;
    color: var(--text-dark);
    text-transform: uppercase;
    padding: 10px 16px;
    border-radius: var(--radius);
    position: relative;
    transition: color var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary);
    border-radius: 1px;
    transition: width 0.3s ease;
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 55%;
}

/* Hamburger Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 46px;
    height: 46px;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.18);
    border-radius: var(--radius);
    cursor: pointer;
    padding: 10px;
    flex-shrink: 0;
    transition: border-color var(--transition);
}

.hamburger:hover {
    border-color: var(--primary);
}

.ham-line {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: transform 0.32s ease, opacity 0.32s ease, background-color var(--transition);
}

.hamburger.open .ham-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--primary);
}

.hamburger.open .ham-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open .ham-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--primary);
}

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

.hero {
    width: 100%;
    height: 800px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('images/hero1.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        150deg,
        rgba(4, 4, 4, 0.58) 0%,
        rgba(8, 20, 5, 0.45) 55%,
        rgba(61, 136, 42, 0.12) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 880px;
    padding: 0 30px;
}

.hero-eyebrow {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 5px;
    line-height: 1;
    color: #111111;
    text-transform: uppercase;
    margin-bottom: 26px;
    padding: 11px 28px;
    background-color: var(--accent);
    display: inline-block;
    border-radius: 2px;
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: 86px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.0;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 22px;
    text-shadow: 2px 4px 30px rgba(0, 0, 0, 0.8),
                 0 0 60px rgba(226, 181, 62, 0.15);
}

.hero-sub {
    font-size: 19px;
    font-weight: 300;
    letter-spacing: 0.4px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.86);
    margin-bottom: 38px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1;
    color: var(--dark);
    background-color: var(--accent);
    padding: 22px 42px;
    border-radius: var(--radius);
    text-transform: uppercase;
    border: 2px solid var(--accent);
    transition: all 0.3s ease;
    box-shadow: 0 0 0 rgba(226, 181, 62, 0);
}

.btn-hero-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(226, 181, 62, 0.65),
                0 0 30px rgba(226, 181, 62, 0.35);
}

.btn-hero-secondary {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1;
    color: var(--white);
    background-color: transparent;
    padding: 20px 40px;
    border-radius: var(--radius);
    text-transform: uppercase;
    border: 2px solid rgba(255, 255, 255, 0.45);
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(226, 181, 62, 0.25);
}

/* No slide dots — single static hero */

/* ======================================== */
/* SECTION 1: ACTION BAR                   */
/* ======================================== */

.action-bar {
    width: 100%;
    background-color: var(--primary);
    border-top: 3px solid var(--accent);
    border-bottom: 3px solid var(--accent);
    padding: 26px 20px;
    text-align: center;
}

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

.action-headline {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 5px;
    line-height: 1;
    color: var(--white);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 16px;
}

.action-text {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 5px;
    line-height: 1;
    color: var(--white);
}

.action-diamond {
    color: var(--accent);
    font-size: 18px;
    display: inline-block;
}

.action-sub {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 4px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.80);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.action-sep {
    color: var(--accent);
    font-size: 18px;
    line-height: 1;
}

/* ======================================== */
/* SECTION 2: WE PURCHASE EVERYTHING       */
/* ======================================== */

.sec-purchase {
    padding: 100px 0;
    background-color: var(--white);
}

/* Top 2-col: text + image */
.purchase-top-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    margin-bottom: 60px;
}

/* Image at natural aspect ratio */
.purchase-img-wrap {
    overflow: hidden;
    border-radius: var(--radius);
}

.purchase-photo {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius);
    transition: transform 0.5s ease;
}

.purchase-img-wrap:hover .purchase-photo {
    transform: scale(1.02);
}

/* Items row below */
.purchase-items-row {
    border-top: 2px solid #f0f0f0;
    padding-top: 50px;
}

.purchase-text .sec-heading {
    font-size: 40px;
}

.purchase-lead {
    font-size: 19px !important;
    font-weight: 600 !important;
    color: var(--text-dark) !important;
    line-height: 1.65 !important;
    margin-bottom: 20px !important;
}

.purchase-text .btn-primary {
    margin-top: 14px;
}

/* Items Grid */
.items-title {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1.5px;
    line-height: 1;
    color: var(--dark);
    text-transform: uppercase;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--accent);
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.item-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #f9f9f9;
    border: 1px solid #ebebeb;
    border-left: 3px solid var(--primary);
    border-radius: var(--radius);
    padding: 13px 15px;
    transition: border-left-color var(--transition),
                background-color var(--transition),
                transform 0.2s ease;
    cursor: default;
}

.item-card:hover {
    border-left-color: var(--accent);
    background-color: #fffdf4;
    transform: translateX(4px);
}

.item-icon {
    font-size: 22px;
    flex-shrink: 0;
    line-height: 1;
}

.item-name {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    line-height: 1.3;
    color: var(--text-dark);
}

.item-card-plus {
    border-left-color: var(--accent);
    background-color: #fffbee;
}

.item-card-plus .item-name {
    color: var(--primary);
}

/* ======================================== */
/* SECTION 3: EASY LOANS / HOW IT WORKS    */
/* ======================================== */

.sec-loans {
    width: 100%;
    padding: 100px 0;
    background: linear-gradient(
        135deg,
        #1a4a0e 0%,
        #2d6a1e 30%,
        #3D882A 65%,
        #2d6a1e 100%
    );
}

.loans-container {
    position: relative;
    z-index: 1;
}

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

.loans-box {
    max-width: 100%;
}

.loans-img-wrap {
    border-radius: var(--radius);
    overflow: hidden;
}

.loans-photo {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius);
}

.loans-box p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.75;
    color: rgba(240, 240, 240, 0.80);
    margin-bottom: 16px;
}

/* Steps */
.steps-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin: 32px 0;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-num {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: normal;
    line-height: 1;
    color: var(--accent);
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent);
    border-radius: 50%;
    text-shadow: 0 0 12px rgba(226, 181, 62, 0.6);
    box-shadow: 0 0 15px rgba(226, 181, 62, 0.2),
                inset 0 0 15px rgba(226, 181, 62, 0.05);
}

.step-title {
    font-family: 'Oswald', sans-serif;
    font-size: 19px;
    font-weight: 600;
    letter-spacing: 1.5px;
    line-height: 1.2;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.step-desc {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.65;
    color: rgba(240, 240, 240, 0.73);
    margin-bottom: 0 !important;
}

.loans-callout {
    background: rgba(61, 136, 42, 0.14);
    border-left: 4px solid var(--primary);
    padding: 16px 22px;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.7;
    color: rgba(240, 240, 240, 0.82);
    margin-bottom: 16px;
}

.loans-callout strong {
    color: var(--accent);
    font-weight: 700;
}

.loans-close {
    margin-bottom: 24px !important;
}

/* ======================================== */
/* SECTION 4: WE BUY GOLD                  */
/* ======================================== */

.sec-gold {
    padding: 100px 0;
    background-color: #f6f6f6;
}

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

.gold-img-wrap {
    position: relative;
}

.gold-img-wrap img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid #e0e0e0;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
}

.gold-img-wrap::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 2px solid rgba(61, 136, 42, 0.2);
    border-radius: 6px;
    z-index: -1;
    pointer-events: none;
}

.gold-img-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--accent);
    color: var(--dark);
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1;
    text-transform: uppercase;
    padding: 10px 16px;
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(226, 181, 62, 0.4);
}

.gold-lead {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: normal;
    line-height: 1.65;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.gold-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 22px;
}

.gold-list li {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: normal;
    line-height: 1.5;
    color: var(--text-dark);
    padding-left: 22px;
    position: relative;
}

.gold-list li::before {
    content: '\25C6';
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--accent);
    font-size: 10px;
}

.gold-body {
    font-size: 15px !important;
    color: var(--text-muted) !important;
    margin-bottom: 26px !important;
}

/* ======================================== */
/* SECTION 5: HOURS BAR                    */
/* ======================================== */

.hours-bar {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
    border-top: 3px solid var(--accent);
    border-bottom: 3px solid var(--accent);
    padding: 40px 20px;
}

.hours-inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hours-block {
    text-align: center;
}

.hours-label {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 4px;
    line-height: 1;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 16px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.35);
}

.hours-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
}

.hours-entry {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.8px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
}

.hours-entry strong {
    color: var(--accent);
    font-weight: 700;
}

.hours-divider {
    font-size: 26px;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1;
}

/* ======================================== */
/* SECTION 5: PHOTO GALLERY                */
/* ======================================== */

.sec-gallery {
    background-color: #f4f6f3;
    padding: 80px 0;
}

.gallery-heading {
    text-align: center;
    margin-bottom: 10px;
}

.gallery-sub {
    font-family: 'Open Sans', sans-serif;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.5;
    color: #666666;
    text-align: center;
    margin-bottom: 48px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: 12px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    background: #111;
    padding: 0;
    border: none;
    outline: none;
    display: block;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1),
                filter 0.35s ease;
    filter: brightness(0.92);
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
    transform: scale(1.07);
    filter: brightness(0.65);
}

.gallery-zoom {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.gallery-zoom svg {
    width: 40px;
    height: 40px;
    color: #ffffff;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}

.gallery-item:hover .gallery-zoom,
.gallery-item:focus-visible .gallery-zoom {
    opacity: 1;
}

/* Make first item span 2 rows for visual interest */
.gallery-item:first-child {
    grid-row: span 2;
}

/* ---- LIGHTBOX ---- */

.lightbox {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.94);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 18px;
    animation: lbFadeIn 0.25s ease;
}

.lightbox[hidden] {
    display: none;
}

@keyframes lbFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.lb-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 90vw;
    max-height: 80vh;
}

.lb-img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 3px;
    box-shadow: 0 20px 80px rgba(0,0,0,0.7);
    display: block;
    animation: lbImgIn 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes lbImgIn {
    from { opacity: 0; transform: scale(0.95); }
    to   { opacity: 1; transform: scale(1); }
}

.lb-close {
    position: fixed;
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    padding: 0;
}

.lb-close:hover {
    background: rgba(255,255,255,0.25);
}

.lb-close svg {
    width: 20px;
    height: 20px;
    color: #ffffff;
}

.lb-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    padding: 0;
}

.lb-arrow:hover {
    background: rgba(255,255,255,0.22);
}

.lb-arrow svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
}

.lb-prev { left: 20px; }
.lb-next { right: 20px; }

.lb-caption {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1.5px;
    line-height: 1;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    text-align: center;
    margin: 0;
}

/* Gallery responsive */
@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 180px);
    }

    .gallery-item:first-child {
        grid-row: span 1;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 160px);
    }

    .lb-prev { left: 8px; }
    .lb-next { right: 8px; }
}

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

.fat-footer {
    width: 100%;
    background: linear-gradient(
        160deg,
        #080808 0%,
        #0e0e0e 40%,
        #0a160a 80%,
        #080808 100%
    );
    padding: 80px 0;
    border-top: 3px solid var(--accent);
}

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

.footer-img-col img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    border-radius: 4px;
    display: block;
}

.footer-col-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2.5px;
    line-height: 1;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(226, 181, 62, 0.18);
}

.footer-biz-name {
    font-family: 'Oswald', sans-serif;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 8px;
}

.footer-address {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.8;
    color: var(--text-light-muted);
    margin-bottom: 20px;
}

.footer-phone {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.1;
    color: var(--accent);
    text-shadow: 0 0 20px rgba(226, 181, 62, 0.5),
                 0 0 40px rgba(226, 181, 62, 0.25);
    margin-bottom: 14px;
    transition: text-shadow var(--transition);
}

.footer-phone:hover {
    color: var(--accent);
    text-shadow: 0 0 30px rgba(226, 181, 62, 0.85),
                 0 0 70px rgba(226, 181, 62, 0.5);
}

.footer-email {
    display: block;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.5;
    color: var(--text-light-muted);
    margin-bottom: 22px;
}

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

.footer-hours {
    margin-bottom: 26px;
}

.footer-hours p {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.85;
    color: var(--text-light-muted);
    margin-bottom: 0;
}

.footer-hours p strong {
    color: rgba(240, 240, 240, 0.65);
    font-weight: 600;
}

.footer-fb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1;
    color: var(--text-light-muted);
    background: rgba(24, 119, 242, 0.1);
    border: 1px solid rgba(24, 119, 242, 0.25);
    padding: 12px 18px;
    border-radius: var(--radius);
    transition: all var(--transition);
}

.footer-fb:hover {
    color: var(--white);
    background: rgba(24, 119, 242, 0.28);
    border-color: #4f96e8;
}

/* Map */
.map-frame {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(226, 181, 62, 0.18);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
    margin-bottom: 12px;
}

.map-frame iframe {
    display: block;
}

.map-caption {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.5;
    color: #666666;
    text-align: center;
}

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

.copyright-bar {
    width: 100%;
    background-color: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 20px 0;
}

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

.copyright-inner p {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.3px;
    line-height: 1.5;
    color: #555555;
    margin-bottom: 0;
}

.copyright-inner a {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: normal;
    line-height: 1.5;
    color: var(--primary);
}

.copyright-inner a:hover {
    color: var(--accent);
}

/* ======================================== */
/* MOBILE STICKY CALL BAR                  */
/* ======================================== */

.mobile-sticky-call {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}

.sticky-call-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background-color: var(--primary);
    color: var(--white) !important;
    font-family: 'Oswald', sans-serif;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 1.5px;
    line-height: 1;
    text-transform: uppercase;
    padding: 17px 20px;
    border-top: 2px solid var(--accent);
    transition: background-color var(--transition);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}

.sticky-call-link:hover {
    background-color: var(--primary-dark);
    color: var(--white) !important;
}

/* ======================================== */
/* RESPONSIVE: LARGE TABLET (max 1100px)   */
/* ======================================== */

@media (max-width: 1100px) {

    .hero-title {
        font-size: 70px;
    }

    .purchase-top-grid,
    .gold-grid {
        gap: 50px;
    }

    .footer-grid {
        gap: 50px;
    }

}

/* ======================================== */
/* RESPONSIVE: TABLET (max 900px)          */
/* ======================================== */

@media (max-width: 900px) {

    .purchase-top-grid,
    .loans-layout,
    .gold-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .hero-title {
        font-size: 60px;
    }

    .sec-heading {
        font-size: 36px;
    }

    .action-headline,
    .action-text {
        font-size: 28px;
        letter-spacing: 3px;
    }

    .items-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

/* ======================================== */
/* RESPONSIVE: MOBILE (max 768px)          */
/* ======================================== */

@media (max-width: 768px) {

    /* Top Bar — hidden on mobile */
    .top-bar {
        display: none;
    }

    /* Header */
    .main-header {
        height: var(--hdr-h-mob);
        /* 84px mobile header */
    }

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

    .hamburger {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: var(--hdr-h-mob);
        left: 0;
        right: 0;
        background-color: #ffffff;
        border-bottom: 3px solid var(--primary);
        border-top: 1px solid #eeeeee;
        padding: 10px 0 20px;
        transform: translateY(-110%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.38s cubic-bezier(0.25, 1, 0.5, 1),
                    opacity 0.32s ease;
        z-index: 1000;
        box-shadow: 0 8px 24px rgba(0,0,0,0.10);
    }

    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0 24px;
    }

    .nav-link {
        display: block;
        font-size: 15px;
        padding: 15px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.07);
        letter-spacing: 2px;
        color: var(--text-dark);
    }

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

    .nav-link::after {
        display: none;
    }

    /* Hero */
    .hero {
        height: 560px;
    }

    .hero-eyebrow {
        font-size: 11px;
        letter-spacing: 3.5px;
    }

    .hero-title {
        font-size: 46px;
        letter-spacing: 1px;
        margin-bottom: 16px;
    }

    .hero-sub {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        font-size: 15px;
        padding: 17px 30px;
    }

    /* Action Bar */
    .action-headline,
    .action-text {
        font-size: 22px;
        letter-spacing: 2px;
    }

    .action-headline {
        flex-direction: column;
        gap: 10px;
    }

    .action-sub {
        font-size: 12px;
        letter-spacing: 2.5px;
        flex-wrap: wrap;
        gap: 10px;
    }

    /* Sections */
    .sec-purchase,
    .sec-loans,
    .sec-gold {
        padding: 70px 0;
    }

    .sec-heading {
        font-size: 30px;
    }

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

    .purchase-top-grid {
        margin-bottom: 40px;
    }

    .purchase-items-row {
        padding-top: 36px;
    }

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

    .loans-box {
        max-width: 100%;
    }

    .gold-img-wrap img {
        height: 300px;
    }

    /* Hours */
    .hours-label {
        font-size: 24px;
        letter-spacing: 2.5px;
    }

    .hours-row {
        flex-direction: column;
        gap: 8px;
    }

    .hours-divider {
        display: none;
    }

    .hours-entry {
        font-size: 16px;
    }

    /* Footer */
    .fat-footer {
        padding: 60px 0;
    }

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

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

    /* Mobile sticky bar */
    .mobile-sticky-call {
        display: block;
    }

    body {
        padding-bottom: 56px;
    }

}

/* ======================================== */
/* RESPONSIVE: SMALL MOBILE (max 480px)    */
/* ======================================== */

@media (max-width: 480px) {

    .hero {
        height: 500px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        text-align: center;
        justify-content: center;
    }

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

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

    .footer-grid {
        gap: 40px;
    }

    .hours-label {
        font-size: 20px;
    }

}

/* ======================================== */
/* SHARED SUB-PAGE STYLES                  */
/* ======================================== */

/* Sub-page title bar */
.subpage-hero {
    width: 100%;
    height: 160px;
    position: relative;
    background: linear-gradient(
        135deg,
        #162e0a 0%,
        #2d6a1e 40%,
        #3D882A 70%,
        #2d6a1e 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom: 4px solid var(--accent);
}

.subpage-hero-overlay {
    display: none;
}

.subpage-hero-content {
    position: relative;
    z-index: 1;
    padding: 0 24px;
}

.subpage-title {
    font-family: 'Oswald', sans-serif;
    font-size: 58px;
    font-weight: 700;
    letter-spacing: 5px;
    line-height: 1;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 14px;
    text-shadow: 2px 3px 20px rgba(0, 0, 0, 0.6);
}

.subpage-accent-line {
    display: inline-block;
    width: 60px;
    height: 3px;
    background-color: var(--accent);
    border-radius: 2px;
}

/* Page callout band */
.page-callout {
    width: 100%;
    background-color: #ffffff;
    padding: 52px 24px;
    text-align: center;
    border-bottom: 3px solid #f0f0f0;
}

.page-callout-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 46px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.1;
    color: var(--text-dark);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.page-callout-sub {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1;
    color: var(--accent);
    text-transform: uppercase;
}

/* Sub-page section: light (white) */
.sec-subpage-light {
    padding: 90px 0;
    background-color: #ffffff;
}

/* Sub-page section: tinted */
.sec-subpage-tint {
    padding: 90px 0;
    background-color: #f6f6f6;
}

/* Generic two-column layout */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}

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

/* Sub-page headings */
.sp-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.1;
    color: var(--text-dark);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.sp-subheading {
    font-family: 'Oswald', sans-serif;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.2;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--accent);
}

/* Coin / item bullet list */
.sp-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin: 18px 0;
}

.sp-list li {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.55;
    color: var(--text-dark);
    padding-left: 22px;
    position: relative;
}

.sp-list li::before {
    content: '\25C6';
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--accent);
    font-size: 10px;
}

/* Sub-page body paragraphs */
.sp-body p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.78;
    color: #444444;
    margin-bottom: 16px;
}

.sp-body p:last-child {
    margin-bottom: 0;
}

.sp-body strong {
    color: var(--text-dark);
    font-weight: 700;
}

/* Sub-page image */
.sp-img-wrap {
    border-radius: var(--radius);
    overflow: hidden;
}

.sp-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius);
}

/* Dark column (gold/green accent col on tinted section) */
.sp-col-accent {
    border-left: 4px solid var(--accent);
    padding-left: 28px;
}

.sp-col-accent .sp-heading {
    color: var(--primary);
}

/* Step list for precious metals how-it-works */
.sp-steps {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 20px 0 24px;
}

.sp-step {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.sp-step-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--accent);
    flex-shrink: 0;
    margin-top: 6px;
}

.sp-step p {
    margin-bottom: 0 !important;
}

.sp-callout {
    background-color: rgba(61, 136, 42, 0.08);
    border-left: 4px solid var(--primary);
    padding: 16px 20px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin-bottom: 16px;
}

.sp-callout p {
    font-size: 15px !important;
    color: var(--text-dark) !important;
    margin-bottom: 0 !important;
}

.sp-callout strong {
    color: var(--primary);
}

/* Responsive sub-page */
@media (max-width: 900px) {
    .two-col,
    .two-col-center {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .subpage-title {
        font-size: 40px;
        letter-spacing: 3px;
    }

    .page-callout-heading {
        font-size: 32px;
    }

    .page-callout-sub {
        font-size: 18px;
    }

    .sp-col-accent {
        border-left: none;
        padding-left: 0;
        border-top: 4px solid var(--accent);
        padding-top: 28px;
    }
}

/* ======================================== */
/* FOR SALE PAGE                           */
/* ======================================== */

.fs-categories {
    padding: 80px 0;
    background-color: #ffffff;
}

.fs-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 50px;
    align-items: start;
    padding: 50px 0;
    border-bottom: 1px solid #eeeeee;
}

.fs-row:first-child {
    padding-top: 0;
}

.fs-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.fs-row-img-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 6px;
}

.fs-row-img {
    width: 100%;
    max-width: 180px;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.10));
}

.fs-row-title {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1;
    color: var(--text-dark);
    text-transform: uppercase;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--accent);
    display: inline-block;
}

.fs-row-body p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.78;
    color: #444444;
    margin-bottom: 14px;
}

.fs-row-body p:last-child {
    margin-bottom: 0;
}

.fs-tagline {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--primary) !important;
    font-style: italic;
}

@media (max-width: 900px) {
    .fs-row {
        grid-template-columns: 140px 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .fs-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .fs-row-img-wrap {
        justify-content: flex-start;
    }

    .fs-row-img {
        max-width: 100px;
    }

    .fs-categories {
        padding: 50px 0;
    }

    .fs-row {
        padding: 36px 0;
    }
}

@media (max-width: 768px) {
    .subpage-hero {
        height: 130px;
    }

    .subpage-title {
        font-size: 32px;
        letter-spacing: 2px;
    }

    .page-callout-heading {
        font-size: 26px;
    }

    .sec-subpage-light,
    .sec-subpage-tint {
        padding: 60px 0;
    }

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

/* ======================================== */
/* HOW TO PAWN PAGE                        */
/* ======================================== */

/* Intro section */
.sec-htp-intro {
    background-color: #ffffff;
    padding: 80px 0;
}

.htp-cta-btn {
    display: inline-block;
    margin-top: 28px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 1.5px;
    line-height: 1;
    color: #ffffff;
    padding: 16px 34px;
    background-color: var(--primary);
    border-radius: 3px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.htp-cta-btn:hover {
    background-color: #2d6a1e;
    transform: translateY(-2px);
}

/* 3-Step section */
.sec-htp-steps {
    background-color: #f4f6f3;
    padding: 80px 0;
}

.htp-steps-heading {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.1;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 10px;
}

.htp-steps-sub {
    font-family: 'Open Sans', sans-serif;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.5;
    color: #555555;
    text-align: center;
    margin-bottom: 54px;
}

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

.htp-card {
    background-color: #ffffff;
    border-radius: var(--radius);
    overflow: hidden;
    border-top: 5px solid var(--primary);
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}

.htp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.11);
}

.htp-step-num {
    font-family: 'Oswald', sans-serif;
    font-size: 56px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1;
    color: var(--accent);
    padding: 24px 28px 0;
    opacity: 0.85;
}

.htp-card-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 28px 4px;
}

.htp-icon {
    width: 100px;
    height: 100px;
    display: block;
}

.htp-card-title {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1.5px;
    line-height: 1;
    color: var(--text-dark);
    text-transform: uppercase;
    padding: 22px 28px 10px;
}

.htp-card-body {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.72;
    color: #444444;
    padding: 0 28px 28px;
    flex-grow: 1;
}

/* Green CTA band */
.sec-htp-cta {
    background: linear-gradient(135deg, #162e0a 0%, #2d6a1e 40%, #3D882A 70%, #2d6a1e 100%);
    padding: 70px 0;
    text-align: center;
}

.htp-cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.htp-cta-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.1;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.htp-cta-body {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
    max-width: 560px;
}

.htp-cta-big {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1.5px;
    line-height: 1;
    color: #111111;
    padding: 18px 44px;
    background-color: var(--accent);
    border-radius: 3px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.2s ease, transform 0.2s ease;
    margin-top: 6px;
}

.htp-cta-big:hover {
    background-color: #f0c835;
    transform: translateY(-2px);
}

.htp-cta-hours {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
}

/* Responsive: How to Pawn */
@media (max-width: 900px) {
    .htp-grid {
        grid-template-columns: 1fr 1fr;
        gap: 22px;
    }
}

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

    .htp-steps-heading {
        font-size: 28px;
    }

    .htp-cta-heading {
        font-size: 28px;
    }

    .htp-cta-big {
        font-size: 18px;
        padding: 16px 30px;
    }

    .sec-htp-intro {
        padding: 50px 0;
    }

    .sec-htp-steps {
        padding: 50px 0;
    }

    .sec-htp-cta {
        padding: 50px 0;
    }

}

/* ======================================== */
/* DIRECTIONS PAGE                         */
/* ======================================== */

.dir-map-wrap {
    width: 100%;
    line-height: 0;
    border-bottom: 4px solid var(--accent);
}

.sec-directions {
    background-color: #ffffff;
    padding: 80px 0;
}

.dir-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Info column */
.dir-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1;
    color: var(--text-dark);
    text-transform: uppercase;
    margin-bottom: 36px;
    padding-bottom: 14px;
    border-bottom: 3px solid var(--accent);
    display: inline-block;
}

.dir-block {
    margin-bottom: 28px;
}

.dir-block:last-of-type {
    margin-bottom: 36px;
}

.dir-icon-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.dir-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    fill: var(--primary);
    margin-top: 2px;
}

.dir-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.dir-value {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.65;
    color: #333333;
    margin-bottom: 4px;
}

.dir-note {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.6;
    color: #777777;
    font-style: italic;
    margin-top: 6px;
}

.dir-phone {
    font-family: 'Oswald', sans-serif;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-block;
}

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

.dir-email {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: normal;
    line-height: 1;
    color: var(--primary);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.dir-email:hover {
    opacity: 0.75;
}

.btn-get-directions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1.5px;
    line-height: 1;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    background-color: var(--primary);
    padding: 16px 28px;
    border-radius: 3px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-get-directions:hover {
    background-color: #2d6a1e;
    transform: translateY(-2px);
}

/* Photos column */
.dir-photos {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dir-store-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: var(--radius);
    display: block;
    box-shadow: 0 6px 24px rgba(0,0,0,0.10);
}

/* Responsive: Directions */
@media (max-width: 900px) {
    .dir-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .dir-photos {
        flex-direction: row;
    }

    .dir-store-img {
        height: 200px;
        flex: 1;
    }
}

@media (max-width: 600px) {
    .dir-map-wrap iframe {
        height: 300px;
    }

    .dir-photos {
        flex-direction: column;
    }

    .dir-store-img {
        height: 220px;
    }

    .sec-directions {
        padding: 50px 0;
    }

    .dir-phone {
        font-size: 24px;
    }
}
