/* ==========================================
   JABULANI PEANUTS TRUCK SHOP
   Theme: Industrial Black, Matte Gold, Charcoal
   "Quality Nuts, Stronger Economy"
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:ital,wght@0,400;0,600;0,700;0,800;1,700&family=Barlow:wght@300;400;500;600&display=swap');

/* ==========================================
   CSS VARIABLES
   ========================================== */
:root {
  /* Core Palette — Black, Gold, Charcoal */
  --black:        #0A0A0A;
  --charcoal:     #1A1A1A;
  --charcoal-mid: #252525;
  --charcoal-lt:  #333333;
  --gold:         #C9A84C;
  --gold-bright:  #E5C26A;
  --gold-dark:    #9E7B2A;
  --gold-muted:   #3D2E0F;
  --gold-light:   #F5E9C8;
  --white:        #FFFFFF;
  --off-white:    #F4F2EE;
  --gray-100:     #EBEBEB;
  --gray-200:     #D4D4D4;
  --gray-300:     #B0B0B0;
  --gray-400:     #8A8A8A;
  --gray-500:     #666666;
  --gray-600:     #444444;
  --gray-700:     #2E2E2E;
  --gray-800:     #1E1E1E;
  --rust:         #8B3A2A;

  /* Semantic */
  --primary:        var(--black);
  --primary-mid:    var(--charcoal);
  --primary-light:  var(--charcoal-lt);
  --accent:         var(--gold);
  --accent-bright:  var(--gold-bright);
  --accent-dark:    var(--gold-dark);
  --accent-light:   var(--gold-light);

  /* Functional */
  --success:     #3D7A50;
  --warning:     var(--gold);
  --error:       var(--rust);

  /* Typography */
  --font-display:   'Bebas Neue', Impact, sans-serif;
  --font-heading:   'Barlow Condensed', sans-serif;
  --font-primary:   'Barlow', -apple-system, sans-serif;

  /* Spacing */
  --container-max:    1280px;
  --section-padding:  100px;
  --nav-height:       70px;
  --band-height:      36px;

  /* Transitions */
  --transition-fast:  0.15s ease;
  --transition-base:  0.3s ease;
  --transition-slow:  0.5s ease;

  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.35);
  --shadow-md:   0 6px 24px rgba(0,0,0,0.45);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.55);
  --shadow-xl:   0 24px 80px rgba(0,0,0,0.65);
  --shadow-gold: 0 6px 28px rgba(201,168,76,0.40);
}

/* ==========================================
   RESET & BASE
   ========================================== */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-600);
  background-color: var(--off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

/* ==========================================
   CONTAINER
   ========================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 28px;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */
h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.1;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.1rem; }

p { color: var(--gray-500); line-height: 1.7; }

.text-gradient {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 60%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.label-text {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray-400);
  font-weight: 700;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 34px;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.btn:hover::before { transform: scaleX(1); }

/* Gold / Primary */
.btn-primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* Outline */
.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}

.btn-outline:hover {
  background: var(--black);
  color: var(--gold);
  transform: translateY(-2px);
}

/* White variant */
.btn-white {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  font-weight: 700;
}

.btn-white:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* Gold on dark bg */
.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  font-weight: 700;
}

.btn-gold:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* Ghost / phone CTA */
.btn-ghost {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-ghost:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-full { width: 100%; }

/* ==========================================
   IDENTITY BAND (top bar)
   ========================================== */
.identity-band {
  height: var(--band-height);
  background: var(--black);
  border-bottom: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  padding: 0 28px;
  flex-wrap: wrap;
}

.identity-band strong { color: var(--gold); }

.identity-band a {
  color: var(--gold);
  transition: opacity var(--transition-fast);
}

.identity-band a:hover { opacity: 0.75; }

.identity-band .chain-icon { font-size: 14px; }
.identity-band .divider { color: var(--gold); opacity: 0.4; }

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
  position: sticky;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: var(--charcoal);
  border-bottom: 3px solid var(--gold);
  z-index: 1000;
  transition: all var(--transition-base);
}

.navbar.scrolled {
  background: var(--black);
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold);
  letter-spacing: 3px;
}

.logo-sub {
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 1px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  padding: 8px 16px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.60);
  transition: all var(--transition-fast);
  border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.nav-link.nav-cta {
  background: var(--gold);
  color: var(--black);
  border: 2px solid var(--gold);
  border-radius: 2px;
  margin-left: 12px;
  padding: 8px 20px;
}

.nav-link.nav-cta:hover,
.nav-link.nav-cta.active {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  color: var(--black);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: all var(--transition-fast);
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .identity-band { font-size: 10px; gap: 12px; }

  .nav-menu {
    position: fixed;
    top: calc(var(--band-height) + var(--nav-height));
    left: 0; right: 0;
    background: var(--black);
    border-bottom: 3px solid var(--gold);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link { width: 100%; text-align: center; border-bottom: 1px solid var(--charcoal-lt); padding: 12px; }
  .nav-link:last-child { border-bottom: none; }
  .nav-link.nav-cta { margin-left: 0; margin-top: 8px; }
}

/* ==========================================
   FLASH MESSAGES
   ========================================== */
.flash-container {
  position: fixed;
  top: calc(var(--band-height) + var(--nav-height) + 16px);
  right: 20px;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
}

.flash-message {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  animation: slideIn 0.3s ease;
  box-shadow: var(--shadow-md);
  border-radius: 2px;
  font-size: 14px;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}

.flash-success { background: #1a2e1f; color: #6fcf97; border-left: 4px solid #6fcf97; }
.flash-error   { background: #2e1a1a; color: #eb5757; border-left: 4px solid #eb5757; }

.flash-close {
  background: none; border: none;
  font-size: 20px; cursor: pointer;
  opacity: 0.6; transition: opacity var(--transition-fast);
  color: inherit;
}
.flash-close:hover { opacity: 1; }

/* ==========================================
   MARQUEE — PEANUT TICKER
   ========================================== */
.marquee-strip {
  background: var(--gold);
  overflow: hidden;
  white-space: nowrap;
  border-top: 2px solid var(--gold-dark);
  border-bottom: 2px solid var(--gold-dark);
  position: relative;
  z-index: 2;
}

.marquee-inner {
  display: inline-flex;
  animation: ticker 40s linear infinite;
}

.marquee-inner:hover { animation-play-state: paused; }

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 36px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  white-space: nowrap;
}

.marquee-item .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--black);
  opacity: 0.4;
  flex-shrink: 0;
}

.marquee-item strong {
  color: var(--black);
  font-weight: 800;
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg,
.hero-bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: -2;
}

/* Default gradient bg — industrial dark */
.hero-bg {
  background: linear-gradient(160deg,
    var(--black) 0%,
    var(--charcoal) 50%,
    #0F0F0F 100%);
}

/* Scratched metal texture overlay */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      92deg,
      rgba(255,255,255,0.015) 0px,
      rgba(255,255,255,0.015) 1px,
      transparent 1px,
      transparent 80px
    );
}

/* Gold glow accent */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 75% 50%, rgba(201,168,76,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(201,168,76,0.06) 0%, transparent 40%);
}

.hero-bg.image-mode,
.carousel-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg.carousel-mode {
  position: relative;
  width: 100%; height: 100%;
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: -2;
}

.carousel-slide.active { opacity: 1; z-index: -1; }

.hero-bg.image-mode::after,
.hero-bg.carousel-mode::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.55) 60%,
    rgba(0,0,0,0.20) 100%);
  z-index: 1;
}

.hero-content { width: 100%; }

.hero-content .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  min-height: 100vh;
  padding-top: 40px;
}

.hero-text { max-width: 640px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 18px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.45);
  border-radius: 2px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
}

.hero-badge::before {
  content: '⛓';
  font-size: 14px;
}

.hero-text h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-family: var(--font-display);
  letter-spacing: 2px;
  line-height: 1.0;
}

.hero-text h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-text p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.60);
  margin-bottom: 44px;
  line-height: 1.85;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Visual — Emblem */
.hero-visual {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-emblem {
  position: relative;
  width: 260px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.emblem-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid;
  animation: spin-slow 20s linear infinite;
}

.emblem-ring-1 {
  width: 240px; height: 240px;
  border-color: rgba(201,168,76,0.35);
  animation-direction: normal;
  border-style: dashed;
}

.emblem-ring-2 {
  width: 200px; height: 200px;
  border-color: rgba(201,168,76,0.60);
  animation-direction: reverse;
  animation-duration: 12s;
}

@keyframes spin-slow {
  to { transform: rotate(360deg); }
}

.emblem-core {
  width: 160px; height: 160px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold), 0 0 60px rgba(201,168,76,0.25);
  z-index: 1;
}

.emblem-nut { font-size: 52px; line-height: 1; }
.emblem-chain { font-size: 22px; margin-top: 4px; }

.hero-stat-float {
  position: absolute;
  background: var(--charcoal);
  border: 1px solid var(--gold);
  padding: 14px 20px;
  text-align: center;
  border-radius: 2px;
}

.hero-stat-1 { top: 20px; right: 10px; }
.hero-stat-2 { bottom: 30px; left: 10px; }

.stat-val {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--gold);
  letter-spacing: 2px;
}

.stat-lbl {
  display: block;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.50);
  margin-top: 2px;
}

@media (max-width: 992px) {
  .hero-content .container {
    grid-template-columns: 1fr;
    text-align: center;
    align-content: center;
  }
  .hero-text { max-width: 100%; }
  .hero-buttons { justify-content: center; }
  .hero-visual { display: none; }
}

/* ==========================================
   SECTION COMPONENTS
   ========================================== */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 16px;
  background: var(--gold-light);
  color: var(--gold-dark);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  border-radius: 2px;
  border-left: 3px solid var(--gold);
}

.section-header h2 { margin-bottom: 14px; }
.section-header p { font-size: 1.05rem; line-height: 1.8; }

/* ==========================================
   FEATURES SECTION
   ========================================== */
.features {
  padding: var(--section-padding) 0;
  background: var(--off-white);
  border-top: 3px solid var(--gold);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  padding: 40px 28px;
  text-align: center;
  transition: all var(--transition-base);
  border: 1px solid var(--gray-200);
  border-top: 3px solid transparent;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--gold);
}

.feature-icon {
  width: 64px; height: 64px;
  margin: 0 auto 22px;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
}

.feature-icon svg {
  width: 28px; height: 28px;
  stroke: var(--gold);
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: var(--black);
}

.feature-card p { font-size: 14px; line-height: 1.75; }

@media (max-width: 992px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .features-grid { grid-template-columns: 1fr; } }

/* ==========================================
   STATS SECTION
   ========================================== */
.stats {
  padding: 90px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg,
      rgba(201,168,76,0.05) 0px,
      rgba(201,168,76,0.05) 1px,
      transparent 1px,
      transparent 60px),
    repeating-linear-gradient(0deg,
      rgba(255,255,255,0.02) 0px,
      rgba(255,255,255,0.02) 1px,
      transparent 1px,
      transparent 40px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
}

.stat-item { text-align: center; }

.stat-number {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.stat-number::after { content: '+'; }

.stat-label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.50);
  text-transform: uppercase;
  letter-spacing: 2px;
}

@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================
   ABOUT PREVIEW
   ========================================== */
.about-preview {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-preview-image { position: relative; }

.image-frame {
  position: relative;
  overflow: hidden;
  background: var(--gray-100);
  aspect-ratio: 4/3;
  border-radius: 2px;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--gold);
}

.image-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--charcoal);
}

.image-placeholder svg {
  width: 80px; height: 80px;
  stroke: var(--gold-dark);
  opacity: 0.6;
}

.experience-badge {
  position: absolute;
  bottom: -16px; right: -16px;
  background: var(--gold);
  color: var(--black);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-gold);
  border-radius: 2px;
}

.exp-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--black);
  line-height: 1;
  letter-spacing: 2px;
}

.exp-text {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--black);
  opacity: 0.75;
}

.about-preview-content h2 { margin-bottom: 20px; }

.about-preview-content > p {
  font-size: 1.05rem;
  margin-bottom: 30px;
  line-height: 1.85;
}

.about-list { margin-bottom: 36px; }

.about-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 0;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
  font-size: 15px;
}

.about-list li:last-child { border-bottom: none; }

.about-list svg {
  width: 20px; height: 20px;
  fill: var(--gold);
  flex-shrink: 0;
  background: var(--gold-light);
  border-radius: 50%;
  padding: 2px;
}

@media (max-width: 992px) {
  .about-preview-grid { grid-template-columns: 1fr; gap: 60px; }
  .experience-badge { bottom: 16px; right: 16px; }
}

/* ==========================================
   SERVICES / PRODUCTS PREVIEW
   ========================================== */
.services-preview {
  padding: var(--section-padding) 0;
  background: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--gold);
  border-radius: 2px;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-left-color: var(--black);
}

.service-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: 2px;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
  color: var(--black);
}

.service-card p { margin-bottom: 22px; line-height: 1.75; font-size: 14px; }

.service-link {
  color: var(--gold-dark);
  font-weight: 800;
  font-size: 13px;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color var(--transition-fast);
}

.service-link:hover { color: var(--black); }

.services-cta { text-align: center; margin-top: 52px; }

@media (max-width: 992px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .services-grid { grid-template-columns: 1fr; } }

/* ==========================================
   BLOG PREVIEW
   ========================================== */
.blog-preview {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--off-white);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid var(--gray-200);
  border-radius: 2px;
  border-top: 3px solid var(--gold);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.blog-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card-image img { transform: scale(1.04); }

.blog-placeholder {
  width: 100%; height: 100%;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-placeholder svg {
  width: 56px; height: 56px;
  stroke: var(--gold-dark);
  opacity: 0.5;
}

.blog-card-content { padding: 28px; }

.blog-date {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.blog-card-content h3 {
  margin: 10px 0 12px;
  font-size: 1.1rem;
  line-height: 1.35;
}

.blog-card-content h3 a {
  color: var(--black);
  transition: color var(--transition-fast);
}

.blog-card-content h3 a:hover { color: var(--gold-dark); }

.blog-card-content p {
  font-size: 14px;
  margin-bottom: 14px;
  line-height: 1.75;
}

.blog-link {
  color: var(--black);
  font-weight: 800;
  font-size: 12px;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.blog-link:hover { color: var(--gold-dark); }

.blog-cta { text-align: center; margin-top: 52px; }

@media (max-width: 992px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .blog-grid { grid-template-columns: 1fr; } }

/* ==========================================
   HOURS BANNER
   ========================================== */
.hours-banner {
  background: var(--charcoal);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  padding: 36px 0;
}

.hours-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.hours-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.hours-day {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.hours-time {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 2px;
}

.hours-time.closed {
  color: rgba(255,255,255,0.25);
  font-size: 1.2rem;
}

.hours-divider {
  font-size: 20px;
  opacity: 0.30;
  color: var(--gold);
}

@media (max-width: 576px) {
  .hours-grid { gap: 28px; flex-direction: column; }
  .hours-divider { transform: rotate(90deg); }
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
  padding: 100px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(201,168,76,0.04) 0px,
      rgba(201,168,76,0.04) 1px,
      transparent 1px,
      transparent 32px
    );
}

.cta-content {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-chain-deco {
  font-size: 24px;
  margin-bottom: 24px;
  opacity: 0.4;
  letter-spacing: 8px;
  color: var(--gold);
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 18px;
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.cta-content p {
  color: rgba(255,255,255,0.55);
  font-size: 1.1rem;
  margin-bottom: 44px;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: var(--black);
  color: var(--gray-400);
  border-top: 3px solid var(--gold);
}

.footer-content { padding: 70px 0 32px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.85;
  margin-bottom: 28px;
  color: rgba(255,255,255,0.40);
}

.footer-social { display: flex; gap: 10px; }

.footer-social a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  border-radius: 2px;
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer-social svg {
  width: 16px; height: 16px;
  fill: rgba(255,255,255,0.45);
  transition: fill var(--transition-fast);
}

.footer-social a:hover svg { fill: var(--black); }

.footer-links h4,
.footer-contact h4 {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 28px;
  font-weight: 800;
  position: relative;
  display: inline-block;
}

.footer-links h4::after,
.footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: -8px; left: 0;
  width: 24px; height: 2px;
  background: var(--gold);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.40);
  font-size: 15px;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color var(--transition-fast);
}

.footer-links a:hover { color: var(--gold); }

.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.40);
}

.footer-contact svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  stroke: var(--gold);
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(201,168,76,0.15);
  padding-top: 28px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.22);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 576px) {
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ==========================================
   PAGE HEADER (inner pages)
   ========================================== */
.page-header {
  position: relative;
  padding: 160px 0 90px;
  text-align: center;
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--black) 0%, var(--charcoal) 60%, var(--charcoal-mid) 100%);
  z-index: -1;
}

.page-header-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg,
      rgba(201,168,76,0.04) 0px,
      rgba(201,168,76,0.04) 1px,
      transparent 1px,
      transparent 60px);
}

.page-header-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 2px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
}

.page-header-content h1 {
  color: var(--white);
  margin-bottom: 18px;
}

.page-header-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
}

/* ==========================================
   ABOUT PAGE
   ========================================== */
.about-story { padding: var(--section-padding) 0; background: var(--white); }

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-content h2 { margin-bottom: 22px; }

.story-content p {
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 18px;
}

.mission-vision { padding: 80px 0; background: var(--off-white); }

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.mv-card {
  background: var(--white);
  padding: 50px 40px;
  text-align: center;
  border: 1px solid var(--gray-200);
  border-top: 4px solid var(--gold);
  border-radius: 2px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base);
}

.mv-card:hover { box-shadow: var(--shadow-md); }

.mv-icon {
  width: 72px; height: 72px;
  margin: 0 auto 22px;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
}

.mv-icon svg {
  width: 32px; height: 32px;
  stroke: var(--gold);
}

.mv-card h3 {
  margin-bottom: 14px;
  font-size: 1.4rem;
}

.mv-card p { font-size: 15px; line-height: 1.85; }

.core-values { padding: var(--section-padding) 0; background: var(--white); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  padding: 38px;
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--gold);
  border-radius: 2px;
  transition: all var(--transition-base);
  background: var(--off-white);
}

.value-card:hover {
  border-left-color: var(--black);
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.value-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold-light);
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.value-card h3 {
  margin-bottom: 10px;
}

.value-card p { font-size: 15px; line-height: 1.75; }

.team-section { padding: var(--section-padding) 0; background: var(--off-white); }

@media (max-width: 992px) {
  .story-grid, .mv-grid { grid-template-columns: 1fr; }
}
@media (max-width: 576px) { .values-grid { grid-template-columns: 1fr; } }

/* ==========================================
   SERVICES / PRODUCTS PAGE
   ========================================== */
.services-full { padding: var(--section-padding) 0; background: var(--white); }

.services-list { display: flex; flex-direction: column; gap: 60px; }

.service-full-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 48px;
  align-items: start;
}

.service-full-card.reverse { direction: rtl; }
.service-full-card.reverse > * { direction: ltr; }

.service-full-icon {
  width: 100px; height: 100px;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 2px;
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-md);
}

.service-full-icon svg {
  width: 44px; height: 44px;
  stroke: var(--gold);
}

.service-full-content { position: relative; }

.service-full-number {
  position: absolute;
  top: -20px; right: 0;
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--gray-100);
  line-height: 1;
  z-index: -1;
  letter-spacing: 4px;
}

.service-full-content h3 {
  font-size: 1.7rem;
  margin-bottom: 14px;
}

.service-full-content > p {
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 22px;
}

.service-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-600);
  font-size: 15px;
}

.service-features li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  flex-shrink: 0;
  border-radius: 1px;
}

.process-section { padding: var(--section-padding) 0; background: var(--off-white); }

.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 40px;
  padding: 40px 0;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 35px; top: 100px; bottom: -40px;
  width: 2px;
  background: var(--gray-200);
}

.process-number {
  width: 70px; height: 70px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  border-radius: 2px;
  box-shadow: var(--shadow-gold);
  letter-spacing: 2px;
}

.process-content h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.process-content p { font-size: 1.05rem; line-height: 1.75; }

@media (max-width: 768px) {
  .service-full-card { grid-template-columns: 1fr; gap: 24px; }
  .service-full-card.reverse { direction: ltr; }
  .service-full-icon { width: 72px; height: 72px; }
  .service-full-number { display: none; }
  .service-features { grid-template-columns: 1fr; }
  .process-step { gap: 24px; }
  .process-number { width: 52px; height: 52px; font-size: 1.3rem; }
  .process-step:not(:last-child)::after { left: 25px; top: 80px; }
}

/* ==========================================
   CONTACT PAGE
   ========================================== */
.contact-section { padding: var(--section-padding) 0; background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}

.contact-info h2 { margin-bottom: 14px; }

.contact-info > p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 38px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 38px;
}

.contact-item { display: flex; gap: 16px; }

.contact-icon {
  width: 48px; height: 48px;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 2px;
  border: 1px solid var(--gold);
}

.contact-icon svg {
  width: 22px; height: 22px;
  stroke: var(--gold-dark);
}

.contact-text h4 {
  font-family: var(--font-heading);
  font-size: 10px;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 4px;
  font-weight: 800;
}

.contact-text p { color: var(--gray-700); font-size: 15px; }

.contact-social h4 {
  font-family: var(--font-heading);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
  font-weight: 800;
  color: var(--gray-500);
}

.social-links { display: flex; gap: 10px; }

.social-links a {
  width: 44px; height: 44px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  border-radius: 2px;
  border: 1px solid var(--gray-200);
}

.social-links a:hover {
  background: var(--black);
  transform: translateY(-3px);
  border-color: var(--gold);
}

.social-links svg {
  width: 19px; height: 19px;
  fill: var(--gray-500);
  transition: fill var(--transition-fast);
}

.social-links a:hover svg { fill: var(--gold); }

.contact-form-wrapper {
  background: var(--off-white);
  padding: 50px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  border-top: 4px solid var(--gold);
  border-radius: 2px;
}

.contact-form h3 {
  margin-bottom: 28px;
  font-size: 1.5rem;
}

.form-group { margin-bottom: 22px; }

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-primary);
  font-size: 15px;
  border: 2px solid var(--gray-200);
  transition: all var(--transition-fast);
  background: var(--white);
  border-radius: 2px;
  color: var(--gray-800);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,168,76,0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-300); }

.form-group textarea { resize: vertical; min-height: 120px; }

.map-section { height: 400px; }

.map-placeholder {
  width: 100%; height: 100%;
  background: var(--charcoal);
  position: relative;
}

.map-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-content { text-align: center; color: var(--gray-500); }

.map-content svg {
  width: 56px; height: 56px;
  margin-bottom: 16px;
  stroke: var(--gold-dark);
}

@media (max-width: 992px) {
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .contact-form-wrapper { padding: 40px; }
}

@media (max-width: 576px) { .contact-form-wrapper { padding: 28px 20px; } }

/* ==========================================
   BLOG PAGE
   ========================================== */
.blog-section { padding: var(--section-padding) 0; background: var(--white); }

.blog-grid-full {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.blog-card-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--off-white);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--gold);
  transition: all var(--transition-base);
  border-radius: 2px;
}

.blog-card-full:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.blog-card-full .blog-card-image {
  aspect-ratio: unset;
  height: 100%;
  min-height: 250px;
}

.blog-card-full .blog-card-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.blog-meta { margin-bottom: 10px; }

.blog-card-full h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  line-height: 1.35;
}

.blog-card-full h2 a { color: var(--black); transition: color var(--transition-fast); }
.blog-card-full h2 a:hover { color: var(--gold-dark); }

.blog-card-full p {
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 18px;
  flex-grow: 1;
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 60px;
}

.pagination-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-600);
  transition: all var(--transition-fast);
  border-radius: 2px;
}

.pagination-link:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.pagination-link svg { width: 16px; height: 16px; }

.pagination-numbers { display: flex; gap: 6px; }

.pagination-number {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--gray-600);
  transition: all var(--transition-fast);
  border-radius: 2px;
  border: 1px solid transparent;
}

.pagination-number:hover { background: var(--gray-100); }

.pagination-number.active {
  background: var(--black);
  color: var(--gold);
  border-color: var(--black);
}

.pagination-ellipsis {
  width: 40px;
  text-align: center;
  color: var(--gray-400);
}

/* Blog Empty State */
.blog-empty { text-align: center; padding: 80px 20px; }

.empty-icon {
  width: 100px; height: 100px;
  margin: 0 auto 24px;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  border: 2px solid var(--gold);
}

.empty-icon svg { width: 50px; height: 50px; stroke: var(--gold); }

.blog-empty h2 { margin-bottom: 12px; }
.blog-empty p { font-size: 1.05rem; }

/* Newsletter */
.newsletter-section { padding: 0 0 var(--section-padding); background: var(--white); }

.newsletter-card {
  background: var(--black);
  border: 2px solid var(--gold);
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.newsletter-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg,
      rgba(201,168,76,0.04) 0px,
      rgba(201,168,76,0.04) 1px,
      transparent 1px,
      transparent 40px);
}

.newsletter-content h2 {
  color: var(--white);
  margin-bottom: 8px;
}

.newsletter-content p { color: rgba(255,255,255,0.55); font-size: 1.05rem; }

.newsletter-form { display: flex; gap: 12px; flex-shrink: 0; position: relative; }

.newsletter-form input {
  padding: 14px 20px;
  border: 2px solid rgba(201,168,76,0.30);
  background: rgba(255,255,255,0.05);
  color: var(--white);
  font-size: 15px;
  width: 280px;
  transition: all var(--transition-fast);
  border-radius: 2px;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }

.newsletter-form input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.08);
}

@media (max-width: 992px) {
  .blog-grid-full { grid-template-columns: 1fr; }

  .newsletter-card {
    flex-direction: column;
    text-align: center;
    padding: 48px 36px;
  }

  .newsletter-form { flex-direction: column; width: 100%; max-width: 400px; }
  .newsletter-form input { width: 100%; }
}

@media (max-width: 768px) {
  .blog-card-full { grid-template-columns: 1fr; }
  .blog-card-full .blog-card-image { min-height: 200px; }
}

/* ==========================================
   BLOG POST PAGE
   ========================================== */
.post-header {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--black) 0%, var(--charcoal) 60%, var(--charcoal-mid) 100%);
  border-bottom: 3px solid var(--gold);
}

.post-header-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.40);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 22px;
  transition: color var(--transition-fast);
}

.back-link:hover { color: var(--gold); }
.back-link svg { width: 17px; height: 17px; }

.post-header-content h1 {
  color: var(--white);
  margin-bottom: 22px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.post-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.post-meta > span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.40);
  font-size: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.post-meta svg { width: 15px; height: 15px; }

.post-content-section { padding: var(--section-padding) 0; background: var(--white); }

.post-article { max-width: 800px; margin: 0 auto; }

.post-featured-image {
  margin-bottom: 50px;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--gold);
}

.post-body {
  font-size: 1.05rem;
  line-height: 1.95;
  color: var(--gray-600);
}

.post-body h2, .post-body h3, .post-body h4 { margin-top: 40px; margin-bottom: 18px; }
.post-body p { margin-bottom: 22px; color: var(--gray-600); }

.post-body ul, .post-body ol { margin-bottom: 22px; padding-left: 24px; }
.post-body li { margin-bottom: 8px; list-style: disc; }
.post-body ol li { list-style: decimal; }
.post-body a { color: var(--gold-dark); text-decoration: underline; }

.post-body blockquote {
  margin: 32px 0;
  padding: 24px 32px;
  border-left: 4px solid var(--gold);
  background: var(--gold-light);
  font-style: italic;
  border-radius: 0 2px 2px 0;
}

.post-footer {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px solid var(--gold);
}

.post-share { display: flex; align-items: center; gap: 16px; }

.post-share > span {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.share-links { display: flex; gap: 10px; }

.share-links a {
  width: 40px; height: 40px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  border-radius: 2px;
  border: 1px solid var(--gray-200);
}

.share-links a:hover { background: var(--black); border-color: var(--gold); }

.share-links svg { width: 17px; height: 17px; fill: var(--gray-500); transition: fill var(--transition-fast); }
.share-links a:hover svg { fill: var(--gold); }

.post-navigation { text-align: center; margin-top: 60px; }

/* ==========================================
   TEAM CAROUSEL
   ========================================== */
.team-grid {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  overflow-x: auto !important;
  gap: 24px !important;
  padding: 20px 0 40px !important;
  scrollbar-width: none !important;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth !important;
}

.team-grid::-webkit-scrollbar { display: none !important; }

.team-card {
  flex: 0 0 calc(33.333% - 16px) !important;
  min-width: calc(33.333% - 16px) !important;
  max-width: calc(33.333% - 16px) !important;
  margin-bottom: 0 !important;
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--gold);
  border-radius: 2px;
  overflow: hidden;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.team-image {
  width: 100% !important;
  height: 300px !important;
  overflow: hidden !important;
}

.team-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.team-placeholder {
  width: 100%; height: 100%;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-placeholder svg {
  width: 70px; height: 70px;
  stroke: var(--gold-dark);
  opacity: 0.5;
}

.team-info { padding: 28px; text-align: center; }
.team-info h3 { margin-bottom: 8px; }

.team-role {
  color: var(--gold-dark);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.team-info > p:last-child { font-size: 14px; line-height: 1.75; }

/* Carousel Controls */
.carousel-container {
  position: relative !important;
  padding: 0 50px !important;
  overflow: visible !important;
}

.nav-btn {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 48px !important;
  height: 48px !important;
  background-color: var(--white) !important;
  border: 2px solid var(--gold) !important;
  color: var(--black) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  z-index: 1000 !important;
  box-shadow: var(--shadow-md) !important;
  transition: all 0.3s ease !important;
  border-radius: 2px !important;
}

.nav-btn:hover {
  background-color: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--black) !important;
}

.nav-btn svg {
  width: 24px !important;
  height: 24px !important;
  stroke: currentColor !important;
}

.prev-btn { left: -25px !important; }
.next-btn { right: -25px !important; }

@media (max-width: 768px) {
  .carousel-container { padding: 0 44px !important; }
  .nav-btn { width: 40px !important; height: 40px !important; }
  .nav-btn svg { width: 20px !important; height: 20px !important; }

  .team-card {
    flex: 0 0 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
  }

  .team-grid { gap: 10px !important; }
  .prev-btn { left: 2px !important; }
  .next-btn { right: 2px !important; }
}

/* ==========================================
   UTILITY
   ========================================== */
.section-cta { text-align: center; margin-top: 2.5rem; }