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

:root {
  --gold:        #E6D382;
  --gold-dark:   #c9b85a;
  --dark:        #171616;
  --body-text:   #1B1B1B;
  --text-soft:   #444444;
  --light-bg:    #F4F3EE;
  --white:       #FFFFFF;
  --font-head:   'Oswald', 'Segoe UI', sans-serif;
  --font-body:   'Open Sans', 'Segoe UI', system-ui, sans-serif;
  --nav-h:       160px;
  --nav-h-mob:   74px;
  --topbar-h:    40px;
  --radius:      4px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

address {
  font-style: normal;
}

/* ======================================== */
/* GLOBAL UTILITIES                         */
/* ======================================== */

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ─── Buttons ─────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  padding: 16px 40px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background-color: #C8A828;
  color: var(--dark);
  border-color: #C8A828;
}

.btn-gold:hover {
  background-color: #1B1B1B;
  color: #C8A828;
  border-color: #1B1B1B;
}

.btn-dark {
  background-color: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.btn-dark:hover {
  background-color: transparent;
  color: var(--dark);
}

.btn-outline-dark {
  background-color: transparent;
  color: var(--body-text);
  border-color: var(--body-text);
}

.btn-outline-dark:hover {
  background-color: var(--body-text);
  color: var(--white);
}

/* ── Section header reusable ─────────── */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

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

/* ── Top Bar ─────────────────────────── */
.top-bar {
  width: 100%;
  height: auto;
  padding: 10px 0;
  background-color: var(--dark);
  position: relative;
  z-index: 50;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.65);
}

.top-bar-item svg {
  flex-shrink: 0;
  color: var(--gold);
}

.top-bar-item a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--gold);
  transition: opacity 0.3s;
}

.top-bar-item a:hover {
  opacity: 0.75;
}

/* ── Main Nav ────────────────────────── */
.main-nav {
  position: sticky;
  top: 0;
  width: 100%;
  height: var(--nav-h);
  background: transparent;
  z-index: 100;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.main-nav.scrolled {
  background-color: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.12);
}

/* Non-home pages: always solid off-white nav */
body:not(.page-home) .main-nav {
  background-color: #F4F2EE;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.1);
}

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

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

.nav-logo img {
  height: 144px;
  width: auto;
  transition: opacity 0.3s;
}

.nav-logo:hover img {
  opacity: 0.85;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 44px;
}

.nav-links a {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1;
  color: var(--body-text);
  text-transform: uppercase;
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}

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

/* Sub-pages: white nav — dark text, gold hover */
body:not(.page-home) .main-nav .nav-links a {
  color: var(--body-text);
}

body:not(.page-home) .main-nav .nav-links a:hover,
body:not(.page-home) .main-nav .nav-links a.active {
  color: #C8A828;
  border-bottom-color: #C8A828;
}

/* Homepage scrolled: white nav bg — keep dark text, use darker gold on hover */
.main-nav.scrolled .nav-links a:hover,
.main-nav.scrolled .nav-links a.active {
  color: #C8A828;
  border-bottom-color: #C8A828;
}

/* Homepage transparent nav: dark charcoal hover (gold blends into hero image) */
.page-home .main-nav:not(.scrolled) .nav-links a:hover,
.page-home .main-nav:not(.scrolled) .nav-links a.active {
  color: var(--dark);
  border-bottom-color: var(--dark);
}

/* ── Hamburger ───────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 110;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--body-text);
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
  transform-origin: center;
}

body:not(.page-home) .main-nav .hamburger span {
  background-color: var(--body-text);
}

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

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

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

/* ── Mobile Dropdown ─────────────────── */
.mobile-menu {
  display: none;
  position: absolute;
  top: var(--nav-h-mob);
  left: 0;
  right: 0;
  background-color: rgba(23, 22, 22, 0.98);
  z-index: 99;
  border-top: 2px solid var(--gold);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu ul li a {
  display: block;
  padding: 16px 24px;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1;
  color: #ffffff;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.3s, background-color 0.3s;
}

.mobile-menu ul li a:hover {
  color: var(--gold);
  background-color: rgba(255, 255, 255, 0.04);
}

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

.hero {
  width: 100%;
  height: 760px;
  background-image: url('images/hero-home.jpg');
  background-attachment: fixed;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  margin-top: calc(var(--nav-h) * -1);
  z-index: 1;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 2;
  padding-bottom: 60px;
}

.hero-content {
  text-align: center;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 44px 72px;
}

.hero-eyebrow {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 1;
  color: var(--body-text);
  text-transform: uppercase;
  margin-bottom: 14px;
  text-shadow: none;
}

.hero-headline {
  font-family: var(--font-head);
  font-size: 64px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--dark);
  text-transform: uppercase;
  white-space: nowrap;
  margin-bottom: 36px;
  text-shadow: none;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.hero-sub {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.6;
  color: var(--body-text);
  text-shadow: none;
}

.hero-sub a {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.6;
  color: #9A7209;
  border-bottom: 1px solid #9A7209;
  transition: opacity 0.3s;
  text-shadow: none;
}

.hero-sub a:hover {
  opacity: 0.75;
}

/* ======================================== */
/* SECTION 1: WE BUY, SELL & LOAN           */
/* ======================================== */

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

.two-col-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 70px;
  align-items: center;
}

.two-col-grid-reverse {
  grid-template-columns: 42% 58%;
}

/* ─── Section 1 text ─────────────────── */
.col-text h2 {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.1;
  color: var(--body-text);
  margin-bottom: 12px;
}

.col-text h2::after {
  content: '';
  display: block;
  width: 56px;
  height: 4px;
  background-color: var(--gold);
  margin-top: 18px;
  margin-bottom: 28px;
}

.lead-text {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: normal;
  line-height: 1.5;
  color: var(--body-text);
  margin-bottom: 16px;
}

.highlight-block {
  background-color: var(--gold);
  padding: 14px 22px;
  margin-bottom: 24px;
  border-left: 5px solid var(--dark);
}

.highlight-block p {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.4;
  color: var(--dark);
  margin: 0;
}

.col-text p {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.75;
  color: var(--text-soft);
  margin-bottom: 16px;
}

.trust-bar {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.5;
  color: var(--body-text);
  border-left: 5px solid var(--gold);
  padding-left: 18px;
  margin-bottom: 36px !important;
}

/* ─── Section 1 images ───────────────── */
.image-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.img-top {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
}

.img-bottom {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ======================================== */
/* SECTION 2: FIREARM SERVICES              */
/* ======================================== */

.section-2 {
  width: 100%;
  padding: 100px 0;
  background-color: var(--light-bg);
}

/* ─── Firearm image ──────────────────── */
.firearm-hero-img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* ─── Firearm text ───────────────────── */
.col-firearm-text h2 {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.1;
  color: var(--body-text);
  margin-bottom: 10px;
}

.col-firearm-text h2::after {
  content: '';
  display: block;
  width: 56px;
  height: 4px;
  background-color: var(--gold);
  margin-top: 18px;
  margin-bottom: 28px;
}

.firearm-list {
  margin-bottom: 24px;
}

.firearm-list li {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid #E0DDD3;
}

.firearm-list li:first-child {
  border-top: 1px solid #E0DDD3;
}

.svc-name {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: normal;
  line-height: 1.4;
  color: var(--body-text);
  flex: 1;
  min-width: 160px;
}

.svc-price {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--dark);
  background-color: rgba(230, 211, 130, 0.35);
  padding: 4px 10px;
  white-space: nowrap;
}

.svc-note {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.4;
  color: #888888;
  font-style: italic;
  width: 100%;
  padding-left: 2px;
}

.firearm-policy {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: normal;
  line-height: 1.5;
  color: #b91c1c;
  padding: 12px 16px;
  background-color: #fef2f2;
  border-left: 4px solid #b91c1c;
  margin-bottom: 28px;
}

/* ======================================== */
/* SECTION 3: WHY CHOOSE AZ PAWN            */
/* ======================================== */

.section-3 {
  width: 100%;
  padding: 100px 0;
  background-color: var(--dark);
}

.section-3 .section-header h2 {
  font-family: var(--font-head);
  font-size: 54px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.05;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-3 .section-header p {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

.why-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-bottom: 70px;
}

.why-card {
  width: 380px;
  max-width: 100%;
  padding: 36px 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(230, 211, 130, 0.18);
  border-radius: var(--radius);
  transition: background-color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(230, 211, 130, 0.45);
  transform: translateY(-6px);
}

.why-icon {
  width: 46px;
  height: 46px;
  color: var(--gold);
  margin-bottom: 22px;
}

.why-icon svg {
  width: 100%;
  height: 100%;
}

.why-card h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
}

.why-accent {
  display: flex;
  justify-content: center;
}

.why-accent img {
  max-width: 360px;
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.5);
}

/* ======================================== */
/* SECTION 4: GALLERY                       */
/* ======================================== */

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

.section-4 .section-header h2 {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 600;
  letter-spacing: normal;
  line-height: 1.3;
  color: var(--body-text);
}

.section-4 .section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--gold);
  margin: 18px auto 0;
}

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

.gallery-item {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background-color: #f0ede6;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
  pointer-events: none;
}

.gallery-item:hover img {
  transform: scale(1.07);
}

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

.fat-footer {
  width: 100%;
  padding: 80px 0;
  background-color: #1a1919;
}

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

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 26px;
  padding-bottom: 14px;
  border-bottom: 2px solid rgba(230, 211, 130, 0.25);
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 14px;
}

.footer-contact p svg {
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--gold);
}

.footer-contact a {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: normal;
  line-height: 1.7;
  color: var(--gold);
  transition: opacity 0.3s;
}

.footer-contact a[href^="tel:"] {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.3;
  color: var(--gold);
}

.footer-contact a:hover {
  opacity: 0.75;
}

.footer-hours {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(230, 211, 130, 0.15);
}

.footer-hours p {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 4px;
}

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

.footer-promo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-promo-img {
  width: 100%;
  max-width: 340px;
  border-radius: var(--radius);
}

.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(230, 211, 130, 0.2);
}

.map-wrapper iframe {
  display: block;
}

/* ======================================== */
/* SECTION: COPYRIGHT FOOTER BAR            */
/* ======================================== */

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

.copyright-bar p {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
}

.copyright-bar a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.5;
  color: var(--gold);
  transition: opacity 0.3s;
}

.copyright-bar a:hover {
  opacity: 0.75;
}

/* ======================================== */
/* 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);
}

/* ======================================== */
/* LIGHTBOX                                 */
/* ======================================== */

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.96);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

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

.lb-img {
  max-width: 90vw;
  max-height: 86vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.8);
  transition: opacity 0.2s ease;
  display: block;
}

.lb-img.fading {
  opacity: 0;
}

.lb-close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  cursor: pointer;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: opacity 0.2s, background-color 0.2s;
  z-index: 1;
}

.lb-close:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.2);
}

.lb-prev,
.lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  cursor: pointer;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.2s, background-color 0.2s;
  z-index: 1;
}

.lb-prev {
  left: 20px;
}

.lb-next {
  right: 20px;
}

.lb-prev:hover,
.lb-next:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.18);
}

.lb-counter {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.15em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
}

@media (max-width: 600px) {
  .lb-prev { left: 8px; width: 42px; height: 42px; }
  .lb-next { right: 8px; width: 42px; height: 42px; }
  .lb-img { max-width: 96vw; max-height: 80vh; }
}

/* ======================================== */
/* SUB-PAGE HERO                            */
/* ======================================== */

.subpage-hero {
  width: 100%;
  height: 460px;
  background-attachment: fixed;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  border-bottom: 4px solid #C8A828;
}

.hero-wbg  { background-image: url('images/hero-we-buy-gold.jpg'); }
.hero-fire { background-image: url('images/hero-firearms.jpg'); }
.hero-cash { background-image: url('images/hero-cash-loans.jpg'); }

.subpage-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 50px;
}

.subpage-hero-content {
  text-align: center;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 30px 70px;
}

.subpage-hero-content h1 {
  font-family: var(--font-head);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.1;
  color: var(--dark);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.subpage-hero-content p {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.6;
  color: var(--body-text);
}

.subpage-hero-content a {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.6;
  color: #9A7209;
  border-bottom: 1px solid #9A7209;
  transition: opacity 0.3s;
}

.subpage-hero-content a:hover {
  opacity: 0.75;
}

/* ======================================== */
/* SUB-PAGE CONTENT                         */
/* ======================================== */

.subpage-content {
  width: 100%;
  padding: 90px 0;
  background-color: var(--white);
}

.subpage-content h2 {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.15;
  color: var(--body-text);
  margin-bottom: 10px;
}

.subpage-content h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 4px;
  background-color: #C8A828;
  margin-top: 14px;
  margin-bottom: 24px;
}

.subpage-content h3 {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.2;
  color: var(--body-text);
  margin-top: 36px;
  margin-bottom: 16px;
}

.subpage-content p {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.8;
  color: var(--text-soft);
  margin-bottom: 16px;
}

.subpage-content p strong {
  color: var(--body-text);
  font-weight: 700;
}

.bullet-list {
  list-style: none;
  margin-bottom: 24px;
}

.bullet-list li {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.7;
  color: var(--text-soft);
  padding: 5px 0 5px 24px;
  position: relative;
}

.bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 8px;
  height: 8px;
  background-color: #C8A828;
  border-radius: 50%;
}

.steps-list {
  list-style: none;
  margin-bottom: 28px;
  counter-reset: steps;
}

.steps-list li {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.7;
  color: var(--text-soft);
  padding: 8px 0 8px 52px;
  position: relative;
  counter-increment: steps;
}

.steps-list li::before {
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 6px;
  width: 34px;
  height: 34px;
  background-color: #C8A828;
  color: var(--dark);
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.subpage-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.subpage-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid #E8E5DC;
}

.subpage-img-wrap img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.subpage-img-caption {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--text-soft);
  text-align: center;
  padding: 10px;
  background: #F8F7F2;
  border-top: 1px solid #E8E5DC;
}

/* ======================================== */
/* FIREARMS PAGE                            */
/* ======================================== */


.section-fire-services {
  background-color: var(--white);
}

.section-fire-body {
  background-color: var(--light-bg);
}

.firearm-page-images {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.firearm-page-images .subpage-img-wrap img {
  height: 220px;
}

.subpage-img-natural img {
  height: auto !important;
  object-fit: contain !important;
}

/* ======================================== */
/* RESPONSIVE MEDIA QUERIES                 */
/* ======================================== */

/* ─── Tablet: ≤1100px ────────────────── */
@media (max-width: 1100px) {
  .hero-headline {
    font-size: 64px;
  }

  .two-col-grid,
  .two-col-grid-reverse {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .why-card {
    width: calc(50% - 14px);
  }
}

/* ─── Tablet/Mobile: ≤860px ─────────── */
@media (max-width: 860px) {
  .two-col-grid,
  .two-col-grid-reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .two-col-grid-reverse .col-firearm-image {
    order: -1;
  }

  .firearm-hero-img {
    height: 340px;
  }

  .hero-headline {
    font-size: 52px;
    white-space: normal;
  }

  .section-3 .section-header h2 {
    font-size: 42px;
  }
}

/* ─── Mobile: ≤768px ─────────────────── */
@media (max-width: 768px) {

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

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

  .top-bar-address,
  .top-bar-email {
    display: none;
  }

  /* Nav */
  .main-nav {
    height: var(--nav-h-mob);
  }

  .nav-logo img {
    height: 68px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Hero */
  .hero {
    height: 480px;
    background-attachment: scroll;
    margin-top: calc(var(--nav-h-mob) * -1);
  }

  .hero-eyebrow {
    font-size: 14px;
    letter-spacing: 0.2em;
  }

  .hero-headline {
    font-size: 44px;
    white-space: normal;
    margin-bottom: 32px;
  }

  .hero-content {
    padding: 32px 28px;
  }

  .btn {
    padding: 14px 28px;
    font-size: 14px;
  }

  /* Sections */
  .section-1,
  .section-2,
  .section-3,
  .section-4 {
    padding: 70px 0;
  }

  .col-text h2,
  .col-firearm-text h2 {
    font-size: 38px;
  }

  /* Gallery: 2 columns */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  /* Why cards: full width */
  .why-card {
    width: 100%;
  }

  /* Fat footer: 1 col */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

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

  .section-3 .section-header h2 {
    font-size: 38px;
  }

  .section-4 .section-header h2 {
    font-size: 30px;
  }

  /* Sub-page hero */
  .subpage-hero {
    height: 320px;
    background-attachment: scroll;
  }

  .subpage-hero-content {
    padding: 24px 28px;
  }

  .subpage-hero-content h1 {
    font-size: 30px;
  }

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

/* ─── Small Mobile: ≤480px ─────────── */
@media (max-width: 480px) {
  .hero {
    height: 520px;
  }

  .hero-headline {
    font-size: 36px;
    white-space: normal;
    margin-bottom: 28px;
  }

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

  .why-accent img {
    max-width: 280px;
  }
}

