/* ==========================================================================
   Guardian Gunz — main stylesheet (React design parity)
   ========================================================================== */

:root {
  --paper: #F7F6F2;
  --tactical: #0D1B2A;
  --tactical-deep: #080F18;
  --gold: #B8860B;
  --gold-soft: #D4A82B;
  --urgent: #C0392B;
  --foreground: #1A1A1A;
  --muted-foreground: #555555;
  --border: #E5E3DD;
  --muted: #EEEDE8;
  --white: #FFFFFF;
  --font-display: 'Sora', sans-serif;
  --font-label: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 0.625rem;
  --shadow-card: 0 12px 48px rgba(0, 0, 0, 0.08);
  --shadow-card-hover: 0 20px 60px rgba(0, 0, 0, 0.14);
  --shadow-elevated: 0 16px 56px rgba(0, 0, 0, 0.18);
}

/* -------------------------------------------------------------------------- */
/* Base                                                                       */
/* -------------------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background-color: var(--paper);
  color: var(--foreground);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-transform: none;
}

h1.uppercase, h2.uppercase, h3.uppercase, h4.uppercase { text-transform: none; }

a { color: inherit; text-decoration: none; }

img, svg, video { display: block; max-width: 100%; }

button, input, select, textarea { font: inherit; }

/* -------------------------------------------------------------------------- */
/* Components                                                                 */
/* -------------------------------------------------------------------------- */

.font-display { font-family: var(--font-display); }
.font-label   { font-family: var(--font-label); }
.font-body    { font-family: var(--font-body); }

.eyebrow {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
}

.cta-label {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 15px;
  font-weight: 700;
}

.overlay-dark  { background-color: rgba(13, 27, 42, 0.62); }
.overlay-darker { background-color: rgba(13, 27, 42, 0.75); }

.btn-gold {
  background: var(--gold);
  color: var(--tactical);
  padding: 16px 36px;
  border-radius: 6px;
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 15px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(184, 134, 11, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  border: none;
  isolation: isolate;
}

.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-soft);
  transform: translateX(-100%);
  transition: transform 0.35s ease;
  z-index: -1;
}

.btn-gold:hover::before { transform: translateX(0); }

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(184, 134, 11, 0.55);
}

.btn-outline-white {
  background: transparent;
  color: white;
  padding: 16px 36px;
  border-radius: 6px;
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn-outline-white::before {
  content: '';
  position: absolute;
  inset: 0;
  background: white;
  transform: translateX(-100%);
  transition: transform 0.35s ease;
  z-index: -1;
}

.btn-outline-white:hover::before { transform: translateX(0); }
.btn-outline-white:hover { color: var(--tactical); border-color: white; }

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  padding: 14px 30px;
  border-radius: 6px;
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 14px;
  border: 2px solid var(--gold);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.btn-outline-gold:hover { background: var(--gold); color: var(--tactical); }

.card-premium {
  background: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(13, 27, 42, 0.07);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  border: 1px solid rgba(13, 27, 42, 0.06);
  border-top: 2px solid var(--gold);
}

.card-premium:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 56px rgba(13, 27, 42, 0.16);
  border-color: rgba(184, 134, 11, 0.55);
  border-top-color: var(--gold);
}

.card-service {
  background: #f8f8f8;
  border-radius: 8px;
  border: 1px solid rgba(13, 27, 42, 0.06);
  border-left: 3px solid var(--gold);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.card-service:hover {
  transform: translateY(-3px);
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(13, 27, 42, 0.12);
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: linear-gradient(140deg, var(--gold), var(--gold-soft));
  color: var(--tactical);
  box-shadow: 0 8px 22px rgba(184, 134, 11, 0.35);
}

.icon-badge.navy {
  background: var(--tactical);
  color: var(--gold);
  box-shadow: 0 8px 22px rgba(13, 27, 42, 0.35);
}

.duration-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  font-weight: 700;
  color: var(--tactical);
  background: rgba(184, 134, 11, 0.14);
  border: 1px solid rgba(184, 134, 11, 0.35);
  padding: 5px 10px;
  border-radius: 999px;
}

.stats-pattern {
  background-color: #1a1a1a;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 3px 3px, 7px 7px;
  background-position: 0 0, 1px 2px;
}

.card-img-bright { filter: brightness(1.05) contrast(1.05); }
.service-card-img { filter: saturate(0.82) brightness(0.96) contrast(1.04) hue-rotate(6deg); }

.placeholder-block {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(228, 230, 233, 0.95), rgba(208, 212, 217, 0.95));
  color: rgba(13, 27, 42, 0.64);
  border: 1px dashed rgba(13, 27, 42, 0.18);
  border-radius: 8px;
  text-align: center;
  min-height: 12rem;
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 0.8rem;
}

.ken-burns { animation: kenBurns 14s ease-in-out infinite alternate; }

@keyframes kenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal.is-visible { opacity: 1; transform: translateY(0); }

.hero-drop { animation: heroDrop 0.8s ease-out both; }

@keyframes heroDrop {
  from { opacity: 0; transform: translateY(-24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.delay-150 { animation-delay: 0.15s; }
.delay-300 { animation-delay: 0.3s; }

.marquee-track { animation: marquee 35s linear infinite; display: flex; width: max-content; }
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.logo-mono {
  filter: grayscale(1);
  opacity: 0.65;
  transition: filter 0.3s ease, opacity 0.3s ease, color 0.3s ease;
}

.logo-mono:hover {
  opacity: 1;
  filter: grayscale(0) sepia(0.4) hue-rotate(355deg) saturate(2);
}

.scroll-snap-x { scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.scroll-snap-x > * { scroll-snap-align: start; }
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

.diagonal-clip-top { clip-path: polygon(0 4%, 100% 0, 100% 100%, 0 100%); }
.diagonal-clip-bottom { clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%); }

.noise-overlay {
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.04) 0 2px, transparent 2px 6px);
}

/* -------------------------------------------------------------------------- */
/* Header (.gg-header)                                                         */
/* -------------------------------------------------------------------------- */

.gg-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
  background: transparent;
}

.gg-header.is-scrolled,
.gg-header.is-inner,
.gg-header.is-menu-open {
  background: rgba(13, 27, 42, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.gg-header__topbar {
  display: none;
  background: var(--tactical-deep);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.gg-header__topbar-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0.375rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.025em;
}

.gg-header__topbar a:hover { color: var(--gold); transition: color 0.2s ease; }

.gg-header__bar {
  max-width: 80rem;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: padding 0.3s ease;
}

.gg-header.is-scrolled .gg-header__bar,
.gg-header.is-inner .gg-header__bar,
.gg-header.is-menu-open .gg-header__bar {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.gg-header__logo img { height: 2.5rem; width: auto; object-fit: contain; }

.gg-header__nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.gg-header__nav a,
.gg-header__nav-toggle {
  font-family: var(--font-label);
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s ease;
}

.gg-header__nav a:hover,
.gg-header__nav-toggle:hover { color: var(--gold); }

.gg-header__cta { display: none; }

.gg-header__menu-btn {
  display: inline-flex;
  color: var(--gold);
  padding: 0.5rem;
  margin-right: -0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.gg-header__dropdown { position: relative; }

.gg-header__dropdown-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 0.75rem;
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.gg-header__dropdown.is-open .gg-header__dropdown-panel,
.gg-header__dropdown:hover .gg-header__dropdown-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.gg-header__dropdown-menu {
  background: var(--tactical);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.375rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  padding: 0.5rem 0;
}

.gg-header__dropdown-menu a {
  display: block;
  padding: 0.625rem 1.25rem;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-label);
  letter-spacing: 0.025em;
}

.gg-header__dropdown-menu a:hover {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.05);
}

#gg-mobile-menu {
  display: none;
  background: rgba(13, 27, 42, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-height: calc(100vh - 64px);
  overflow-y: auto;
}

#gg-mobile-menu.is-open { display: block; }

.gg-mobile-nav {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.gg-mobile-nav > a,
.gg-mobile-nav__toggle {
  font-family: var(--font-label);
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gg-mobile-nav > a:hover,
.gg-mobile-nav__toggle:hover { color: var(--gold); }

.gg-mobile-nav__sub {
  display: none;
  padding-bottom: 0.75rem;
  padding-left: 0.75rem;
  flex-direction: column;
}

.gg-mobile-nav__sub.is-open { display: flex; }

.gg-mobile-nav__sub a {
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-label);
  letter-spacing: 0.025em;
}

.gg-mobile-nav__sub a:hover { color: var(--gold); }

.gg-mobile-nav__chevron { transition: transform 0.2s ease; }
.gg-mobile-nav__toggle.is-open .gg-mobile-nav__chevron { transform: rotate(180deg); }

body.gg-menu-open { overflow: hidden; }

@media (min-width: 768px) {
  .gg-header__cta { display: inline-flex; }
}

@media (min-width: 1024px) {
  .gg-header__topbar { display: block; }
  .gg-header__nav { display: flex; }
  .gg-header__menu-btn { display: none; }
  .gg-header__logo img { height: 3rem; }
  .gg-header__bar { padding-left: 3rem; padding-right: 3rem; }
  .gg-header__topbar-inner { padding-left: 3rem; padding-right: 3rem; }
}

@media (min-width: 1280px) {
  .gg-header__nav { gap: 2rem; }
}

/* -------------------------------------------------------------------------- */
/* Reviews carousel                                                           */
/* -------------------------------------------------------------------------- */

#gg-reviews-carousel .gg-reviews-track {
  display: flex;
  transition: transform 0.5s ease-out;
  margin-left: -0.875rem;
  margin-right: -0.875rem;
}

#gg-reviews-carousel .gg-review-slide {
  flex: 0 0 100%;
  padding-left: 0.875rem;
  padding-right: 0.875rem;
}

#gg-reviews-carousel .gg-reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

#gg-reviews-carousel .gg-reviews-btn {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

#gg-reviews-carousel .gg-reviews-btn:hover {
  background: var(--gold);
  color: var(--tactical);
}

#gg-reviews-carousel .gg-reviews-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

#gg-reviews-carousel .gg-reviews-dot {
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 999px;
  background: rgba(13, 27, 42, 0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}

#gg-reviews-carousel .gg-reviews-dot.is-active {
  width: 1.75rem;
  background: var(--gold);
}

#gg-reviews-carousel .gg-reviews-dot:hover { background: rgba(13, 27, 42, 0.4); }

@media (min-width: 768px) {
  #gg-reviews-carousel .gg-review-slide { flex: 0 0 50%; }
}

@media (min-width: 1024px) {
  #gg-reviews-carousel .gg-review-slide { flex: 0 0 33.333333%; }
}

/* -------------------------------------------------------------------------- */
/* Accordion (.gg-accordion)                                                  */
/* -------------------------------------------------------------------------- */

.gg-accordion-item { border-bottom: 1px solid var(--border); }
.gg-accordion-item:last-child { border-bottom: none; }

.gg-accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--tactical);
  text-align: left;
}

.gg-accordion-trigger svg { transition: transform 0.2s ease; flex-shrink: 0; }
.gg-accordion-item.is-open .gg-accordion-trigger svg { transform: rotate(180deg); }

.gg-accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.gg-accordion-panel-inner {
  padding-bottom: 1.25rem;
  color: var(--muted-foreground);
  line-height: 2;
  font-size: 15px;
}

/* -------------------------------------------------------------------------- */
/* Toast notifications                                                        */
/* -------------------------------------------------------------------------- */

.gg-toast-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}

.gg-toast {
  pointer-events: auto;
  min-width: 280px;
  max-width: 420px;
  padding: 0.875rem 1.125rem;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: white;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.gg-toast.is-visible { opacity: 1; transform: translateY(0); }
.gg-toast--success { background: var(--tactical); border-left: 4px solid var(--gold); }
.gg-toast--error   { background: var(--urgent); }

/* -------------------------------------------------------------------------- */
/* Form fields (inquiry)                                                      */
/* -------------------------------------------------------------------------- */

.gg-field { display: flex; flex-direction: column; gap: 0.375rem; }

.gg-field label {
  font-family: var(--font-label);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(13, 27, 42, 0.7);
  font-weight: 700;
}

.gg-field input,
.gg-field select,
.gg-field textarea {
  height: 2.75rem;
  border-radius: 0.375rem;
  border: 1px solid var(--border);
  background: white;
  padding: 0 0.75rem;
  font-size: 15px;
  color: var(--foreground);
}

.gg-field textarea {
  height: auto;
  min-height: 8rem;
  padding: 0.625rem 0.75rem;
  resize: vertical;
}

.gg-field input:focus,
.gg-field select:focus,
.gg-field textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(184, 134, 11, 0.6);
}

/* ========================================================================== */
/* Utility classes (Tailwind parity for PHP templates)                        */
/* ========================================================================== */

/* --- Display & layout --- */
.block { display: block; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }
.contents { display: contents; }

.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1 1 0%; }
.flex-shrink-0, .shrink-0 { flex-shrink: 0; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.items-stretch { align-items: stretch; }
.items-baseline { align-items: baseline; }
.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.self-start { align-self: flex-start; }
.self-center { align-self: center; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.inset-0 { inset: 0; }
.top-0 { top: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

.overflow-hidden { overflow: hidden; }
.overflow-x-hidden { overflow-x: hidden; }
.overflow-y-auto { overflow-y: auto; }
.pointer-events-none { pointer-events: none; }

/* --- Spacing --- */
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-7 { gap: 1.75rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-x-8 { column-gap: 2rem; }
.gap-x-10 { column-gap: 2.5rem; }
.gap-y-3 { row-gap: 0.75rem; }
.gap-y-5 { row-gap: 1.25rem; }
.gap-y-6 { row-gap: 1.5rem; }
.gap-y-10 { row-gap: 2.5rem; }

.space-y-3 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.75rem; }
.space-y-4 > :not([hidden]) ~ :not([hidden]) { margin-top: 1rem; }

.p-2 { padding: 0.5rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-7 { padding: 1.75rem; }
.p-8 { padding: 2rem; }
.p-9 { padding: 2.25rem; }
.p-10 { padding: 2.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-7 { padding-left: 1.75rem; padding-right: 1.75rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-3 { padding-top: 0.75rem; }
.pt-10 { padding-top: 2.5rem; }
.pt-16 { padding-top: 4rem; }
.pt-24 { padding-top: 6rem; }
.pt-32 { padding-top: 8rem; }
.pb-3 { padding-bottom: 0.75rem; }
.pb-5 { padding-bottom: 1.25rem; }
.pb-8 { padding-bottom: 2rem; }
.pb-16 { padding-bottom: 4rem; }
.pb-24 { padding-bottom: 6rem; }
.pb-32 { padding-bottom: 8rem; }
.pl-3 { padding-left: 0.75rem; }
.pl-6 { padding-left: 1.5rem; }
.pr-6 { padding-right: 1.5rem; }

.m-0 { margin: 0; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-1 { margin-top: 0.25rem; }
.mt-1\.5 { margin-top: 0.375rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-9 { margin-top: 2.25rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-14 { margin-top: 3.5rem; }
.mt-16 { margin-top: 4rem; }
.mt-20 { margin-top: 5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-14 { margin-bottom: 3.5rem; }
.mb-16 { margin-bottom: 4rem; }
.ml-1 { margin-left: 0.25rem; }
.-mx-3\.5 { margin-left: -0.875rem; margin-right: -0.875rem; }
.-mt-14 { margin-top: -3.5rem; }
.-mb-8 { margin-bottom: -2rem; }
.-top-4 { top: -1rem; }
.-bottom-5 { bottom: -1.25rem; }
.left-6 { left: 1.5rem; }

/* --- Sizing --- */
.w-auto { width: auto; }
.w-full { width: 100%; }
.w-1\.5 { width: 0.375rem; }
.w-2 { width: 0.5rem; }
.w-3\.5 { width: 0.875rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-7 { width: 1.75rem; }
.w-10 { width: 2.5rem; }
.w-11 { width: 2.75rem; }
.w-24 { width: 6rem; }
.w-\[60px\] { width: 60px; }
.w-\[56px\] { width: 56px; }
.w-\[44px\] { width: 44px; }
.w-\[36px\] { width: 36px; }
.w-\[18px\] { width: 18px; }
.w-1\/2 { width: 50%; }
.w-1\/3 { width: 33.333333%; }

.h-auto { height: auto; }
.h-full { height: 100%; }
.h-2 { height: 0.5rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-7 { height: 1.75rem; }
.h-10 { height: 2.5rem; }
.h-11 { height: 2.75rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-32 { height: 8rem; }
.h-\[60px\] { height: 60px; }
.h-\[56px\] { height: 56px; }
.h-\[44px\] { height: 44px; }
.h-\[36px\] { height: 36px; }
.h-\[18px\] { height: 18px; }
.h-\[280px\] { height: 280px; }

.min-h-screen { min-height: 100vh; }
.min-h-\[440px\] { min-height: 440px; }
.min-h-\[260px\] { min-height: 260px; }
.min-h-\[58vh\] { min-height: 58vh; }
.min-h-\[620px\] { min-height: 620px; }
.min-w-\[80px\] { min-width: 80px; }
.min-w-\[100px\] { min-width: 100px; }

.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-\[240px\] { max-width: 240px; }

.aspect-\[16\/10\] { aspect-ratio: 16 / 10; }
.aspect-\[4\/3\] { aspect-ratio: 4 / 3; }
.aspect-\[4\/5\] { aspect-ratio: 4 / 5; }

.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }

/* --- Typography --- */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-\[11px\] { font-size: 11px; }
.text-\[12px\] { font-size: 12px; }
.text-\[13px\] { font-size: 13px; }
.text-\[14px\] { font-size: 14px; }
.text-\[15px\] { font-size: 15px; }
.text-\[16px\] { font-size: 16px; }
.text-\[18px\] { font-size: 18px; }
.text-\[22px\] { font-size: 22px; }
.text-\[28px\] { font-size: 28px; }
.text-\[34px\] { font-size: 34px; }
.text-\[42px\] { font-size: 42px; }
.text-\[44px\] { font-size: 44px; }
.text-\[46px\] { font-size: 46px; }
.text-\[50px\] { font-size: 50px; }
.text-\[54px\] { font-size: 54px; }
.text-\[58px\] { font-size: 58px; }
.text-\[60px\] { font-size: 60px; }
.text-\[70px\] { font-size: 70px; }
.text-\[72px\] { font-size: 72px; }
.text-\[82px\] { font-size: 82px; }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.font-normal { font-weight: 400; }

.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-relaxed { line-height: 1.625; }
.leading-7 { line-height: 1.75rem; }
.leading-8 { line-height: 2rem; }
.leading-\[1\.04\] { line-height: 1.04; }
.leading-\[1\.06\] { line-height: 1.06; }
.leading-\[1\.08\] { line-height: 1.08; }
.leading-\[1\.7\] { line-height: 1.7; }
.leading-\[1\.9\] { line-height: 1.9; }

.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-\[0\.14em\] { letter-spacing: 0.14em; }
.tracking-\[0\.16em\] { letter-spacing: 0.16em; }
.tracking-\[0\.18em\] { letter-spacing: 0.18em; }
.tracking-\[0\.2em\] { letter-spacing: 0.2em; }
.tracking-\[0\.22em\] { letter-spacing: 0.22em; }

.uppercase { text-transform: uppercase; }
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.whitespace-nowrap { white-space: nowrap; }
.break-all { word-break: break-all; }

.underline-offset-4 { text-underline-offset: 4px; }

/* --- Colors --- */
.text-white { color: #fff; }
.text-foreground { color: var(--foreground); }
.text-muted-foreground { color: var(--muted-foreground); }
.text-gold { color: var(--gold); }
.text-gold-soft { color: var(--gold-soft); }
.text-tactical { color: var(--tactical); }
.text-urgent { color: var(--urgent); }

.text-white\/60 { color: rgba(255, 255, 255, 0.6); }
.text-white\/65 { color: rgba(255, 255, 255, 0.65); }
.text-white\/70 { color: rgba(255, 255, 255, 0.7); }
.text-white\/75 { color: rgba(255, 255, 255, 0.75); }
.text-white\/80 { color: rgba(255, 255, 255, 0.8); }
.text-white\/85 { color: rgba(255, 255, 255, 0.85); }
.text-foreground\/85 { color: rgba(26, 26, 26, 0.85); }
.text-tactical\/60 { color: rgba(13, 27, 42, 0.6); }
.text-muted-foreground\/70 { color: rgba(85, 85, 85, 0.7); }

.bg-white { background-color: #fff; }
.bg-paper { background-color: var(--paper); }
.bg-tactical { background-color: var(--tactical); }
.bg-tactical-deep { background-color: var(--tactical-deep); }
.bg-gold { background-color: var(--gold); }
.bg-gold-soft { background-color: var(--gold-soft); }
.bg-muted { background-color: var(--muted); }
.bg-transparent { background-color: transparent; }
.bg-\[\#f8f8f8\] { background-color: #f8f8f8; }
.bg-\[\#0D1B2A\] { background-color: #0D1B2A; }
.bg-\[\#080F18\] { background-color: #080F18; }

.bg-tactical\/45 { background-color: rgba(13, 27, 42, 0.45); }
.bg-tactical\/50 { background-color: rgba(13, 27, 42, 0.5); }
.bg-tactical\/70 { background-color: rgba(13, 27, 42, 0.7); }
.bg-tactical\/25 { background-color: rgba(13, 27, 42, 0.25); }
.bg-tactical-deep\/45 { background-color: rgba(8, 15, 24, 0.45); }
.bg-tactical-deep\/50 { background-color: rgba(8, 15, 24, 0.5); }
.bg-tactical-deep\/55 { background-color: rgba(8, 15, 24, 0.55); }
.bg-tactical-deep\/65 { background-color: rgba(8, 15, 24, 0.65); }
.bg-tactical-deep\/85 { background-color: rgba(8, 15, 24, 0.85); }
.bg-white\/10 { background-color: rgba(255, 255, 255, 0.1); }

.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.from-tactical-deep\/55 { --tw-gradient-from: rgba(8, 15, 24, 0.55); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.from-tactical-deep\/45 { --tw-gradient-from: rgba(8, 15, 24, 0.45); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.via-transparent { --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, transparent); }
.to-tactical-deep\/65 { --tw-gradient-to: rgba(8, 15, 24, 0.65); }
.to-tactical-deep\/70 { --tw-gradient-to: rgba(8, 15, 24, 0.7); }
.from-blue-500 { --tw-gradient-from: #3b82f6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.via-red-500 { --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, transparent); }
.to-yellow-500 { --tw-gradient-to: #eab308; }

.fill-gold { fill: var(--gold); }

.border { border-width: 1px; border-style: solid; }
.border-0 { border-width: 0; }
.border-2 { border-width: 2px; border-style: solid; }
.border-4 { border-width: 4px; border-style: solid; }
.border-\[6px\] { border-width: 6px; border-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-y { border-top-width: 1px; border-bottom-width: 1px; border-style: solid; }
.border-border { border-color: var(--border); }
.border-gold { border-color: var(--gold); }
.border-gold\/40 { border-color: rgba(184, 134, 11, 0.4); }
.border-gold\/60 { border-color: rgba(184, 134, 11, 0.6); }
.border-white { border-color: #fff; }
.border-white\/5 { border-color: rgba(255, 255, 255, 0.05); }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.border-white\/15 { border-color: rgba(255, 255, 255, 0.15); }

.divide-x > :not([hidden]) ~ :not([hidden]) { border-left-width: 1px; border-left-style: solid; }
.divide-y > :not([hidden]) ~ :not([hidden]) { border-top-width: 1px; border-top-style: solid; }
.divide-gold\/30 > :not([hidden]) ~ :not([hidden]) { border-color: rgba(184, 134, 11, 0.3); }
.divide-white\/10 > :not([hidden]) ~ :not([hidden]) { border-color: rgba(255, 255, 255, 0.1); }

.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-full { border-radius: 9999px; }
.rounded-none { border-radius: 0; }
.rounded-\[18px\] { border-radius: 18px; }

.ring-4 { box-shadow: 0 0 0 4px var(--tw-ring-color, rgba(255, 255, 255, 1)); }
.ring-white { --tw-ring-color: #fff; }

.shadow { box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06); }
.shadow-lg { box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05); }
.shadow-card { box-shadow: var(--shadow-card); }
.shadow-elevated { box-shadow: var(--shadow-elevated); }
.shadow-\[0_8px_24px_rgba\(0\,0\,0\,0\.08\)\] { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08); }
.shadow-\[0_16px_56px_rgba\(0\,0\,0\,0\.18\)\] { box-shadow: 0 16px 56px rgba(0, 0, 0, 0.18); }
.shadow-\[0_24px_72px_rgba\(0\,0\,0\,0\.30\)\] { box-shadow: 0 24px 72px rgba(0, 0, 0, 0.3); }
.shadow-\[0_4px_12px_rgba\(184\,134\,11\,0\.4\)\] { box-shadow: 0 4px 12px rgba(184, 134, 11, 0.4); }
.shadow-gold\/40 { box-shadow: 0 10px 25px rgba(184, 134, 11, 0.4); }

.opacity-70 { opacity: 0.7; }

.backdrop-blur-sm { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.backdrop-blur-md { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }

.transition-all { transition: all 0.2s ease; }
.transition-colors { transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease; }
.transition-transform { transition: transform 0.2s ease; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.ease-out { transition-timing-function: ease-out; }

.translate-x-0 { transform: translateX(0); }
.-translate-x-1\/2 { transform: translateX(-50%); }
.rotate-180 { transform: rotate(180deg); }

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-cols-\[160px_1fr\] { grid-template-columns: 160px 1fr; }
.grid-cols-\[260px_1fr\] { grid-template-columns: 260px 1fr; }
.grid-cols-\[320px_1fr\] { grid-template-columns: 320px 1fr; }
.grid-cols-\[0\.85fr_1\.15fr\] { grid-template-columns: 0.85fr 1.15fr; }
.grid-cols-\[1\.2fr_0\.8fr\] { grid-template-columns: 1.2fr 0.8fr; }
.grid-cols-\[0\.9fr_1\.1fr\] { grid-template-columns: 0.9fr 1.1fr; }

.gap-x-10 { column-gap: 2.5rem; }

.left-1\/2 { left: 50%; }

.disabled\:opacity-60:disabled { opacity: 0.6; }
.disabled\:cursor-not-allowed:disabled { cursor: not-allowed; }

/* Group hover */
.group:hover .group-hover\:scale-\[1\.04\] { transform: scale(1.04); }
.group:hover .group-hover\:translate-x-1 { transform: translateX(0.25rem); }
.group\/cta:hover .group-hover\/cta\:translate-x-1 { transform: translateX(0.25rem); }

/* Hover utilities */
.hover\:text-gold:hover { color: var(--gold); }
.hover\:text-tactical:hover { color: var(--tactical); }
.hover\:bg-gold:hover { background-color: var(--gold); }
.hover\:bg-gold-soft:hover { background-color: var(--gold-soft); }
.hover\:bg-white:hover { background-color: #fff; }
.hover\:bg-tactical-deep:hover { background-color: var(--tactical-deep); }
.hover\:underline:hover { text-decoration: underline; }
.hover\:bg-tactical\/40:hover { background-color: rgba(13, 27, 42, 0.4); }

/* Focus ring */
.focus\:outline-none:focus { outline: none; }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px rgba(184, 134, 11, 0.6); }
.focus\:ring-gold\/60:focus { box-shadow: 0 0 0 2px rgba(184, 134, 11, 0.6); }

.resize-y { resize: vertical; }

.last\:border-b-0:last-child { border-bottom-width: 0; }

/* Button size overrides used in nav */
.\!py-2\.5 { padding-top: 0.625rem !important; padding-bottom: 0.625rem !important; }
.\!px-5 { padding-left: 1.25rem !important; padding-right: 1.25rem !important; }
.\!text-\[13px\] { font-size: 13px !important; }

/* ========================================================================== */
/* Responsive (mobile-first)                                                  */
/* ========================================================================== */

@media (min-width: 640px) {
  .sm\:block { display: block; }
  .sm\:flex { display: flex; }
  .sm\:hidden { display: none; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:flex-row { flex-direction: row; }
  .sm\:w-auto { width: auto; }
  .sm\:grid-cols-\[160px_1fr\] { grid-template-columns: 160px 1fr; }
  .sm\:text-\[56px\] { font-size: 56px; }
  .sm\:text-\[60px\] { font-size: 60px; }
}

@media (min-width: 768px) {
  .md\:block { display: block; }
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:inline-flex { display: inline-flex; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:flex-row { flex-direction: row; }
  .md\:items-center { align-items: center; }
  .md\:justify-between { justify-content: space-between; }
  .md\:divide-x > :not([hidden]) ~ :not([hidden]) { border-left-width: 1px; border-left-style: solid; border-top-width: 0; }
  .md\:divide-y-0 > :not([hidden]) ~ :not([hidden]) { border-top-width: 0; }
  .md\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .md\:px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
  .md\:p-7 { padding: 1.75rem; }
  .md\:p-10 { padding: 2.5rem; }
  .md\:py-12 { padding-top: 3rem; padding-bottom: 3rem; }
  .md\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .md\:py-28 { padding-top: 7rem; padding-bottom: 7rem; }
  .md\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
  .md\:pb-20 { padding-bottom: 5rem; }
  .md\:pt-14 { padding-top: 3.5rem; }
  .md\:pb-12 { padding-bottom: 3rem; }
  .md\:-mt-5 { margin-top: -1.25rem; }
  .md\:mb-0 { margin-bottom: 0; }
  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .md\:text-\[34px\] { font-size: 34px; }
  .md\:text-\[40px\] { font-size: 40px; }
  .md\:text-\[42px\] { font-size: 42px; }
  .md\:text-\[46px\] { font-size: 46px; }
  .md\:text-\[50px\] { font-size: 50px; }
  .md\:text-\[54px\] { font-size: 54px; }
  .md\:text-\[58px\] { font-size: 58px; }
  .md\:text-\[70px\] { font-size: 70px; }
  .md\:text-\[72px\] { font-size: 72px; }
  .md\:h-16 { height: 4rem; }
  .md\:h-\[360px\] { height: 360px; }
  .md\:w-1\/2 { width: 50%; }
  .md\:w-9 { width: 2.25rem; }
  .md\:h-9 { height: 2.25rem; }
  .md\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .md\:gap-6 { gap: 1.5rem; }
  .md\:gap-16 { gap: 4rem; }
  .md\:grid-cols-\[260px_1fr\] { grid-template-columns: 260px 1fr; }
}

@media (min-width: 1024px) {
  .lg\:block { display: block; }
  .lg\:flex { display: flex; }
  .lg\:hidden { display: none; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:grid-cols-\[0\.85fr_1\.15fr\] { grid-template-columns: 0.85fr 1.15fr; }
  .lg\:grid-cols-\[320px_1fr\] { grid-template-columns: 320px 1fr; }
  .lg\:grid-cols-\[1\.2fr_0\.8fr\] { grid-template-columns: 1.2fr 0.8fr; }
  .lg\:grid-cols-\[0\.9fr_1\.1fr\] { grid-template-columns: 0.9fr 1.1fr; }
  .lg\:px-12 { padding-left: 3rem; padding-right: 3rem; }
  .lg\:px-20 { padding-left: 5rem; padding-right: 5rem; }
  .lg\:p-10 { padding: 2.5rem; }
  .lg\:gap-6 { gap: 1.5rem; }
  .lg\:gap-10 { gap: 2.5rem; }
  .lg\:gap-16 { gap: 4rem; }
  .lg\:gap-\[40px\] { gap: 40px; }
  .lg\:min-h-\[620px\] { min-height: 620px; }
  .lg\:text-\[82px\] { font-size: 82px; }
  .lg\:-mt-3 { margin-top: -0.75rem; }
  .lg\:w-1\/3 { width: 33.333333%; }
}

@media (min-width: 1280px) {
  .xl\:gap-8 { gap: 2rem; }
}

/* Footer nav */
.gg-footer-menu,
.gg-footer-menu li,
.gg-footer-menu ul { list-style: none; margin: 0; padding: 0; }
.gg-footer-menu a { color: rgba(255,255,255,0.75); transition: color 0.2s ease; }
.gg-footer-menu a:hover { color: var(--gold); }
.gg-footer-menu li + li { margin-top: 0.75rem; }

/* Custom logo in header */
.gg-header .custom-logo-link img,
.gg-header .custom-logo { height: 2.5rem; width: auto; }
@media (min-width: 768px) {
  .gg-header .custom-logo-link img,
  .gg-header .custom-logo { height: 3rem; }
}