/* GT Accuracy — Swiss Technical / Walnut & Brass
 * Palette 02:
 *   BG     #FAF7F0  warm white
 *   TEXT   #2A1E13  walnut
 *   MUTED  #6B5A48  warm gray-brown
 *   RULE   #D8CDB8  light tan rule
 *   ACCENT #A88030  brass
 *
 * Type:
 *   Inter Tight    — display
 *   Inter          — body
 *   JetBrains Mono — specs / metadata / numerics
 * Brothers Bold is reserved exclusively for the logo image.
 */

:root {
  --bg:    #FAF7F0;
  --bg-2:  #F2EDE0;
  --bg-3:  #FFFFFF;
  --text:  #2A1E13;
  --muted: #6B5A48;
  --rule:  #D8CDB8;
  --rule-strong: #b8a988;
  --accent: #A88030;
  --accent-dark: #8B6620;
  --maxw: 1280px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  /* Offset anchor jumps by the sticky-nav height so section tops aren't hidden */
  scroll-padding-top: 150px;
}
@media (max-width: 880px) {
  html { scroll-padding-top: 110px; }
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 700px) {
  .container { padding: 0 24px; }
}

/* ── Display / typographic primitives ─────────── */
h1, h2, h3, h4, h5 {
  font-family: "Inter Tight", -apple-system, sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.02;
  color: var(--text);
}
h2 { font-size: clamp(36px, 4.5vw, 60px); }
h3 { font-size: 20px; letter-spacing: -0.01em; }

.kicker {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.lede {
  font-size: 17px;
  color: var(--muted);
  max-width: 600px;
  margin-top: 24px;
}

.mono {
  font-family: "JetBrains Mono", ui-monospace, monospace;
}

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

/* ── NAV ─────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 240, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 12px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-brand img { height: 120px; width: auto; display: block; }
@media (max-width: 880px) { .nav-brand img { height: 84px; } }
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.nav-links a {
  color: var(--text);
  transition: color 0.18s;
  position: relative;
}
.nav-links a:hover { color: var(--accent); }
.nav-phone {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  color: var(--text);
  letter-spacing: 0.02em;
  border: 1px solid var(--rule-strong);
  padding: 8px 14px;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.nav-phone:hover { background: var(--accent); color: var(--bg); border-color: var(--accent); }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-inner { padding: 12px 24px; }
}

/* ── HERO ────────────────────────────────────── */
.hero {
  position: relative;
  padding: 0 0 80px;
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}
.hero-image {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 480px;
  max-height: 760px;
  overflow: hidden;
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 55%;
  display: block;
  /* Match the editorial filter used on the shop photo: slight desaturation + contrast */
  filter: grayscale(0.05) contrast(1.02);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(250, 247, 240, 0) 60%,
    rgba(250, 247, 240, 0.55) 85%,
    var(--bg) 100%
  );
  pointer-events: none;
}
.hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 70px 48px 0;
}
@media (max-width: 720px) {
  .hero-image { height: 50vh; min-height: 320px; }
  .hero-inner { padding: 50px 24px 0; }
}
.hero-meta {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
  margin-bottom: 64px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 28px;
}
.hero-meta .m { color: var(--muted); }
.hero-meta .v { color: var(--accent); }

.hero-title {
  font-family: "Inter Tight", sans-serif;
  font-weight: 700;
  font-size: clamp(48px, 8vw, 116px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin-bottom: 36px;
  max-width: 1100px;
}
.hero-title .accent { color: var(--accent); }

.hero-sub {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.06em;
  margin-bottom: 70px;
}

.hero-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.spec {
  border-top: 1px solid var(--rule-strong);
  padding-top: 16px;
}
.spec-val {
  font-family: "Inter Tight", sans-serif;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -0.025em;
  color: var(--text);
}
.spec-lbl {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--muted);
  margin-top: 8px;
  letter-spacing: 0.08em;
}
@media (max-width: 720px) {
  .hero { padding: 60px 0 50px; }
  .hero-inner { padding: 0 24px; }
  .hero-specs { grid-template-columns: 1fr 1fr; gap: 18px; }
}

/* ── Generic section head ────────────────────── */
.section-head { max-width: 740px; margin-bottom: 60px; }
.section-head p { font-size: 17px; color: var(--muted); margin-top: 24px; }

/* ── Data list (used in shop + visit) ────────── */
.data-list { margin-top: 36px; }
.dl-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  padding: 12px 0;
  border-top: 1px solid var(--rule);
  font-size: 14px;
}
.dl-row:last-child { border-bottom: 1px solid var(--rule); }
.dl-row .k {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
  padding-top: 2px;
}
.dl-row .v { color: var(--text); }
.dl-row .v a { color: var(--text); border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.dl-row .v a:hover { border-color: var(--accent); color: var(--accent); }

/* ── Two-col helper ──────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.two-col-alt {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .two-col, .two-col-alt { grid-template-columns: 1fr; gap: 40px; }
}

/* ── SHOP ────────────────────────────────────── */
.shop { padding: 64px 0; }
.shop h2 { margin-bottom: 24px; }
.shop p { color: var(--muted); margin-bottom: 16px; font-size: 16px; max-width: 540px; }
.shop-img {
  position: relative;
}
.shop-img-frame {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.shop-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  filter: grayscale(0.05) contrast(1.02);
}
.img-caption {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--rule);
}

/* ── DISCIPLINES ─────────────────────────────── */
.build {
  padding: 64px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.discipline-list { display: flex; flex-direction: column; }
.discipline-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  padding: 44px 0;
  border-bottom: 1px solid var(--rule);
}
.discipline-row:first-child { border-top: 1px solid var(--rule); }

.d-num { display: flex; flex-direction: column; gap: 10px; }
.d-num .num {
  font-family: "Inter Tight", "Inter", sans-serif;
  font-weight: 300;
  font-size: 64px;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.04em;
}
.d-num .m {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.d-body h3 {
  font-family: "Inter Tight", "Inter", sans-serif;
  font-weight: 300;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 14px;
  color: var(--text);
}
.d-body p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 64ch;
  margin: 0 0 22px;
}

.d-meta {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 6px 18px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
}
.d-meta .k { color: var(--muted); letter-spacing: 0.10em; }
.d-meta .v { color: var(--text); letter-spacing: 0.02em; }

@media (max-width: 800px) {
  .discipline-row { grid-template-columns: 1fr; gap: 18px; padding: 36px 0; }
  .d-num { flex-direction: row; align-items: baseline; gap: 16px; }
  .d-num .num { font-size: 44px; }
  .d-meta { grid-template-columns: 1fr; gap: 4px; }
  .d-meta .k { margin-top: 6px; }
}

/* ── FEATURED ────────────────────────────────── */
.featured { padding: 64px 0; }
.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product {
  background: var(--bg-3);
  border: 1px solid var(--rule);
  transition: border-color 0.2s, transform 0.2s;
}
.product:hover { border-color: var(--accent); transform: translateY(-3px); }
.product-img {
  aspect-ratio: 1/1;
  background: var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-meta { padding: 20px; }
.product-meta .m {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 0.10em;
  margin-bottom: 8px;
  display: block;
}
.product-meta h3 { font-size: 17px; margin-bottom: 10px; letter-spacing: -0.005em; }
.product-meta p { font-size: 13px; color: var(--muted); min-height: 38px; margin-bottom: 14px; }
.price {
  font-family: "JetBrains Mono", monospace;
  font-size: 16px;
  color: var(--text);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.price s { color: var(--muted); margin-right: 8px; font-size: 12px; font-weight: 400; }
@media (max-width: 1000px) { .featured-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .featured-grid { grid-template-columns: 1fr; } }

/* ── QUOTE CTA (slides in from bottom-right after scroll) ── */
.quote-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 320px;
  background: linear-gradient(135deg, #2A1E13 0%, #1c130a 100%);
  color: var(--bg);
  padding: 22px 22px 20px;
  border: 1px solid var(--accent);
  border-radius: 2px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45),
              0 0 0 1px rgba(168, 128, 48, 0.08);
  z-index: 9000;
  transform: translate(120%, 0);
  opacity: 0;
  transition: transform 0.55s cubic-bezier(.18, .89, .32, 1.18),
              opacity 0.4s ease;
  pointer-events: none;
}
.quote-cta.in {
  transform: translate(0, 0);
  opacity: 1;
  pointer-events: auto;
}
.quote-cta.dismissed { display: none; }

.quote-cta .kicker {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.quote-cta h4 {
  font-family: "Inter Tight", "Inter", sans-serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 6px;
  color: var(--bg);
}
.quote-cta p {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(250, 247, 240, 0.7);
  margin: 0 0 16px;
}
.quote-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: center;
  padding: 12px 18px;
  background: var(--accent);
  color: var(--text);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.quote-cta-btn:hover {
  background: #C99A45;
  transform: translateY(-1px);
}
.quote-cta-btn span { transition: transform 0.2s; }
.quote-cta-btn:hover span { transform: translateX(3px); }

.quote-cta-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  color: rgba(250, 247, 240, 0.5);
  font-size: 18px;
  line-height: 1;
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: color 0.15s;
  padding: 0;
}
.quote-cta-close:hover { color: var(--bg); }

/* Attention pulse (runs once after entry) */
@keyframes quoteCtaPulse {
  0%, 100% { box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45),
                        0 0 0 1px rgba(168, 128, 48, 0.08); }
  50%      { box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45),
                        0 0 0 6px rgba(168, 128, 48, 0.18); }
}
.quote-cta.pulse {
  animation: quoteCtaPulse 1.4s ease-in-out 2;
}

@media (max-width: 560px) {
  .quote-cta {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
    padding: 18px 18px 16px;
  }
  .quote-cta h4 { font-size: 19px; }
}

/* ── CATALOG PAGE HERO (catalog.html) ────────── */
.catalog-hero {
  padding: 120px 0 48px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--rule);
}
.catalog-hero .hero-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.catalog-hero .hero-meta .m {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.12em;
}
.catalog-hero .hero-meta .v {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--text);
  letter-spacing: 0.06em;
  padding-right: 14px;
  border-right: 1px solid var(--rule);
}
.catalog-hero .hero-meta .v:last-child { border-right: none; }
.catalog-title {
  font-family: "Inter Tight", "Inter", sans-serif;
  font-weight: 300;
  font-size: clamp(40px, 6vw, 78px);
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 0 0 18px;
}
.catalog-lede {
  font-size: 17px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 720px;
  margin-bottom: 32px;
}
.catalog-jump {
  padding-top: 22px;
  border-top: 1px solid var(--rule);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 2;
  color: var(--muted);
}
.catalog-jump a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s, color 0.15s;
}
.catalog-jump a:hover { color: var(--accent); border-bottom-color: var(--accent); }

.product-meta .sub {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin: 4px 0 12px;
}

.nav-links a.active {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}

/* ── CATALOG ─────────────────────────────────── */
.catalog { padding: 64px 0; }
.catalog-group { margin-top: 56px; }
.catalog-group:first-of-type { margin-top: 40px; }
.group-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding-bottom: 16px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--rule);
}
.group-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.10em;
  padding: 3px 8px;
  border: 1px solid var(--accent);
  border-radius: 2px;
}
.group-title {
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 0;
  flex: 0 0 auto;
}
.group-meta {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
  margin-left: auto;
  text-transform: uppercase;
}
.product-img--emblem {
  background: #2A1E13;
  padding: 0;
}
.product-img--emblem img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center;
}

.product-img--logo {
  background: linear-gradient(135deg, #3A2A1A 0%, #2A1E13 100%);
  position: relative;
}
.product-img--logo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 25%, rgba(168, 128, 48, 0.18), transparent 55%),
    repeating-linear-gradient(45deg, transparent 0 22px, rgba(255,255,255,0.025) 22px 23px);
  pointer-events: none;
}
.product-img--logo img {
  width: 70% !important;
  height: auto !important;
  max-height: 60%;
  object-fit: contain !important;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.4));
}
.catalog-cta {
  display: flex;
  justify-content: center;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}
.btn-line {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  padding: 14px 28px;
  border: 1px solid var(--rule-strong);
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
}
.btn-line:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(168, 128, 48, 0.04);
}
.btn-line span { color: var(--accent); transition: transform 0.2s; }
.btn-line:hover span { transform: translateX(4px); }
@media (max-width: 700px) {
  .group-head { flex-wrap: wrap; gap: 12px; }
  .group-meta { margin-left: 0; flex-basis: 100%; }
  .group-title { font-size: 18px; }
}

/* ── SERVICES ────────────────────────────────── */
.services {
  padding: 64px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.services-head h2 { margin-bottom: 24px; }
.services-list {
  list-style: none;
}
.services-list li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 24px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--rule);
  transition: padding-left 0.25s;
}
.services-list li:first-child { border-top: 1px solid var(--rule); }
.services-list li:hover { padding-left: 8px; }
.services-list .num {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.services-list .srv {
  font-size: 17px;
  color: var(--text);
}

/* ── TESTIMONIALS ────────────────────────────── */
.testimonials { padding: 64px 0; }
.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.quote-grid blockquote {
  padding: 32px;
  background: var(--bg-3);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--accent);
}
.quote-grid blockquote p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text);
  font-style: italic;
}
.quote-grid blockquote cite {
  display: block;
  margin-top: 20px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.08em;
  color: var(--accent);
}
@media (max-width: 760px) { .quote-grid { grid-template-columns: 1fr; } }

/* ── VISIT ───────────────────────────────────── */
.visit {
  padding: 64px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--rule);
}
.visit h2 { margin-bottom: 24px; }
.visit-map {
  border: 1px solid var(--rule);
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-3);
}
.visit-map iframe {
  width: 100%; height: 100%; border: 0;
  filter: grayscale(0.4) sepia(0.15) contrast(0.95);
}
@media (max-width: 900px) {
  .visit-map { aspect-ratio: 4/3; }
}

/* ── RANCH SWAG (dark inverted section, image-forward grid) ─────── */
.swag {
  padding: 64px 0;
  background: linear-gradient(180deg, #2A1E13 0%, #1c130a 100%);
  color: var(--bg);
}
.swag-head { max-width: 740px; margin-bottom: 48px; }
.swag-head .kicker { color: var(--accent); }
.swag-head h2 { color: var(--bg); }
.swag-head .lede { color: rgba(250, 247, 240, 0.65); }

.swag-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 14px;
}
.swag-card {
  position: relative;
  background: #1c130a;
  border: 1px solid rgba(168, 128, 48, 0.18);
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.swag-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.45);
}
.swag-card--hero {
  grid-column: span 2;
  grid-row: span 2;
}
.swag-card--wide {
  grid-column: span 2;
}
.swag-img {
  flex: 1;
  background: #0e0905;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8px;
}
.swag-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s;
}
.swag-card:hover .swag-img img { transform: scale(1.04); }
.swag-meta {
  padding: 14px 16px 16px;
  border-top: 1px solid rgba(168, 128, 48, 0.18);
  background: rgba(0, 0, 0, 0.30);
}
.swag-meta .tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 0.14em;
  display: block;
  margin-bottom: 6px;
}
.swag-meta h3 {
  color: var(--bg);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.005em;
  margin: 0 0 6px;
}
.swag-card--hero .swag-meta h3 { font-size: 22px; }
.swag-meta .price {
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.02em;
}
.swag-foot {
  margin-top: 32px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: rgba(250, 247, 240, 0.55);
  letter-spacing: 0.06em;
  text-align: center;
}
.swag-foot a { color: var(--accent); border-bottom: 1px solid var(--accent); }

@media (max-width: 1000px) {
  .swag-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 230px; }
  .swag-card--hero, .swag-card--wide { grid-column: span 2; grid-row: auto; }
}
@media (max-width: 560px) {
  .swag-grid { grid-template-columns: 1fr; grid-auto-rows: 280px; }
  .swag-card--hero, .swag-card--wide { grid-column: span 1; }
}

/* ── SWAG Lightbox ───────────────────────────── */
.swag-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}
.swag-lightbox.open { display: flex; }
.lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 8, 3, 0.88);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: lbFade 0.2s ease forwards;
}
.lb-frame {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  max-width: 1100px;
  width: 92vw;
  max-height: 86vh;
  background: #1c130a;
  border: 1px solid var(--accent);
  border-radius: 2px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  overflow: hidden;
  animation: lbZoom 0.24s cubic-bezier(.18,.89,.32,1.18) forwards;
}
.lb-image {
  background: #0e0905;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  min-height: 360px;
}
.lb-image img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
}
.lb-info {
  padding: 36px 36px 32px;
  display: flex;
  flex-direction: column;
  color: var(--bg);
  border-left: 1px solid rgba(168,128,48,0.18);
}
.lb-tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}
.lb-name {
  font-family: "Inter Tight", "Inter", sans-serif;
  font-weight: 300;
  font-size: 32px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 18px;
  color: var(--bg);
}
.lb-desc {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(250,247,240,0.75);
  margin: 0 0 24px;
}
.lb-foot {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid rgba(168,128,48,0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.lb-price {
  font-family: "JetBrains Mono", monospace;
  font-size: 22px;
  color: var(--accent);
  letter-spacing: 0.01em;
}
.lb-cta {
  display: inline-flex;
  align-items: center;
  padding: 11px 22px;
  background: var(--accent);
  color: var(--text);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
}
.lb-cta:hover { background: #C99A45; transform: translateY(-1px); }
.lb-close {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 2;
  background: transparent;
  border: none;
  color: rgba(250,247,240,0.7);
  font-size: 28px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.15s;
}
.lb-close:hover { color: var(--bg); }

@keyframes lbFade  { from { opacity: 0; } to { opacity: 1; } }
@keyframes lbZoom  { from { opacity: 0; transform: scale(.94); } to { opacity: 1; transform: scale(1); } }

/* Fullscreen state — image fills the viewport, info panel slides away */
.swag-lightbox.fullscreen .lb-frame {
  grid-template-columns: 1fr;
  max-width: 100vw;
  width: 100vw;
  max-height: 100vh;
  height: 100vh;
  border-radius: 0;
  border: none;
  transition: max-width 0.3s ease, width 0.3s ease, max-height 0.3s ease;
}
.swag-lightbox.fullscreen .lb-image {
  padding: 24px;
  min-height: 0;
  height: 100vh;
}
.swag-lightbox.fullscreen .lb-image img {
  max-height: calc(100vh - 48px);
  max-width: calc(100vw - 48px);
}
.swag-lightbox.fullscreen .lb-info {
  display: none;
}
.swag-lightbox.fullscreen .lb-close {
  background: rgba(28, 19, 10, 0.85);
  width: 44px;
  height: 44px;
  border-radius: 4px;
  top: 16px;
  right: 16px;
  font-size: 30px;
}

@media (max-width: 800px) {
  .lb-frame { grid-template-columns: 1fr; max-height: 92vh; }
  .lb-image { min-height: 240px; padding: 18px; }
  .lb-info { padding: 22px 22px 20px; border-left: none; border-top: 1px solid rgba(168,128,48,0.18); }
  .lb-name { font-size: 24px; }
}

/* ── CONTACT FORM ────────────────────────────── */
.contact {
  padding: 64px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--rule);
}
.contact-form {
  margin-top: 40px;
  background: var(--bg-3);
  border: 1px solid var(--rule);
  padding: 36px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field--full { grid-column: 1 / -1; }
.field-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
}
.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--rule-strong);
  border-radius: 2px;
  padding: 12px 14px;
  transition: border-color 0.15s, background 0.15s;
  font-family: inherit;
}
.field textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.5;
  font-family: inherit;
}
.field select { appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 7' fill='%23A88030'><path d='M6 7L0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 10px;
  padding-right: 36px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #FFFFFF;
}
.form-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.form-meta {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.10em;
  color: var(--muted);
  margin: 0;
  text-transform: uppercase;
}
.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 28px;
  background: var(--accent);
  color: var(--text);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.form-submit:hover { background: #C99A45; transform: translateY(-1px); }
.form-submit span { transition: transform 0.2s; }
.form-submit:hover span { transform: translateX(3px); }

.form-success {
  text-align: center;
  padding: 36px 0 12px;
}
.form-success .kicker {
  color: var(--accent);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
}
.form-success h3 {
  font-family: "Inter Tight", "Inter", sans-serif;
  font-weight: 300;
  font-size: 30px;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.form-success p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  max-width: 50ch;
  margin: 0 auto;
}

@media (max-width: 700px) {
  .contact-form { padding: 24px; }
  .form-grid { grid-template-columns: 1fr; gap: 18px; }
  .form-bar { flex-direction: column; align-items: stretch; gap: 16px; }
  .form-submit { justify-content: center; }
}

/* ── FOOTER ──────────────────────────────────── */
.footer {
  background: var(--bg-3);
  border-top: 1px solid var(--rule);
}
.footer-inner {
  padding: 80px 48px 50px;
  display: grid;
  grid-template-columns: 0.8fr 2fr;
  gap: 60px;
}
.footer-brand img { width: 110px; margin-bottom: 16px; }
.footer-brand p { color: var(--muted); font-size: 13px; max-width: 220px; line-height: 1.55; }

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 4px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s, filter 0.2s;
}
.footer-social a img {
  width: 56px;
  height: 56px;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.18));
}
.footer-social a:hover {
  transform: translateY(-2px);
}
.footer-social a:hover img {
  filter: drop-shadow(0 4px 10px rgba(168, 128, 48, 0.45)) brightness(1.08);
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}
@media (max-width: 900px) {
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .footer-cols { grid-template-columns: 1fr; }
}
.footer-cols h5 {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.10em;
  color: var(--accent);
  margin-bottom: 14px;
}
.footer-cols ul { list-style: none; }
.footer-cols li {
  font-size: 13px;
  color: var(--muted);
  padding: 4px 0;
}
.footer-cols a { color: var(--muted); transition: color 0.2s; }
.footer-cols a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--rule);
  padding: 22px 48px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.10em;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 760px) {
  .footer-inner { padding: 60px 24px 40px; grid-template-columns: 1fr; gap: 36px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-bottom { padding: 18px 24px; }
}

/* ── SCROLL-REVEAL ───────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
