@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Barlow+Condensed:wght@300;400;500;600;700;800&family=Barlow:wght@300;400;500&display=swap');

/* ===========================
   CSS VARIABLES
=========================== */
:root {
  --forest:     #1a2e1a;
  --deep:       #0d1a0d;
  --bark:       #2c1a0e;
  --espresso:   #3d2010;
  --moss:       #3a5c2a;
  --sage:       #6b8f4e;
  --fern:       #4a7a35;
  --cream:      #f5efe6;
  --parchment:  #e8dcc8;
  --warm-white: #faf7f2;
  --gold:       #c49a3c;
  --amber:      #d4843a;
  --text-dark:  #1a1a1a;
  --text-mid:   #4a4a4a;

  --font-display: 'Playfair Display', serif;
  --font-head:    'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.4);
  --shadow-sm: 0 4px 20px rgba(0,0,0,0.15);
}

/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--deep);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===========================
   NOISE TEXTURE OVERLAY
=========================== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 1000;
}

/* ===========================
   NAV
=========================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), backdrop-filter var(--transition);
}

.nav.scrolled {
  background: rgba(13, 26, 13, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,239,230,0.8);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--gold);
  color: var(--deep) !important;
  padding: 0.5rem 1.2rem;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--amber) !important; transform: translateY(-1px); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px 10px;
  background: rgba(196,154,60,0.15);
  border: 1px solid rgba(196,154,60,0.35);
  transition: background var(--transition), border-color var(--transition);
}

.nav-hamburger:hover {
  background: rgba(196,154,60,0.25);
  border-color: rgba(196,154,60,0.6);
}

.nav-hamburger span {
  width: 22px; height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(13,26,13,0.45) 0%, rgba(44,26,14,0.45) 60%, rgba(13,26,13,0.45) 100%),
    url('homepage-image.jpg') center/cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: 40px !important;     /* Adjust this number */
  padding-bottom: 2rem !important;
}

.hero-eyebrow {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.3s;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 900;
  line-height: 0.95;
  color: var(--warm-white);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.5s;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(245,239,230,0.75);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.7s;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.9s;
}

.hero-badge {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  z-index: 2;
  text-align: center;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1.1s;
}

.hero-badge-inner {
  width: 110px; height: 110px;
  border-radius: 50%;
  border: 1px solid rgba(196,154,60,0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(13,26,13,0.6);
  backdrop-filter: blur(8px);
  animation: badgeSpin 20s linear infinite;
}

@keyframes badgeSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.hero-badge-inner svg {
  animation: badgeSpin 20s linear infinite reverse;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1.3s;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

.scroll-text {
  font-family: var(--font-head);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,239,230,0.5);
}

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--deep);
}

.btn-primary:hover {
  background: var(--amber);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(196,154,60,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245,239,230,0.4);
}

.btn-outline:hover {
  border-color: var(--cream);
  background: rgba(245,239,230,0.08);
  transform: translateY(-2px);
}

/* ===========================
   SECTION COMMON
=========================== */
section { position: relative; }

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.section-label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--warm-white);
  margin-bottom: 1.2rem;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-body {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(245,239,230,0.7);
  max-width: 560px;
  line-height: 1.8;
}

/* ===========================
   PLEDGE BANNER
=========================== */
.pledge-banner {
  background: var(--moss);
  padding: 1rem 2rem;
  text-align: center;
}

.pledge-banner p {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

/* ===========================
   BLEND CARDS
=========================== */
.blends-section {
  background: var(--forest);
}

.blends-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5px;
  margin-top: 4rem;
  border: 1.5px solid rgba(255,255,255,0.06);
}

.blend-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  background: var(--bark);
}

.blend-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blend-card:hover .blend-card-bg { transform: scale(1.08); }

.blend-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,26,13,0.95) 0%, rgba(13,26,13,0.3) 60%, transparent 100%);
  transition: opacity var(--transition);
}

.blend-card:hover .blend-card-overlay {
  background: linear-gradient(to top, rgba(13,26,13,0.98) 0%, rgba(13,26,13,0.5) 70%, rgba(13,26,13,0.1) 100%);
}

.blend-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1.5rem;
  transform: translateY(0);
  transition: transform var(--transition);
}

.blend-roast {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.blend-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--warm-white);
  line-height: 1.1;
  margin-bottom: 0.8rem;
}

.blend-desc {
  font-size: 0.88rem;
  color: rgba(245,239,230,0.65);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}

.blend-card:hover .blend-desc {
  max-height: 80px;
  opacity: 1;
}

.blend-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease 0.05s, transform 0.3s ease 0.05s;
}

.blend-card:hover .blend-card-link {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   STORY SECTION
=========================== */
.story-section {
  background: var(--deep);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.story-images {
  position: relative;
  height: 550px;
}

.story-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%;
  height: 80%;
  object-fit: cover;
  filter: sepia(15%) brightness(0.85);
}

.story-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 55%;
  object-fit: cover;
  border: 4px solid var(--deep);
  filter: sepia(10%) brightness(0.9);
}

.story-stat {
  position: absolute;
  bottom: 55%;
  right: 5%;
  background: var(--gold);
  color: var(--deep);
  padding: 1.2rem 1.5rem;
  text-align: center;
  transform: translateY(50%);
}

.story-stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  display: block;
}

.story-stat-label {
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.story-text { padding-top: 1rem; }

.story-quote {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: rgba(245,239,230,0.5);
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin-top: 2rem;
  line-height: 1.6;
}

.story-attribution {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.8rem;
  padding-left: 1.5rem;
}

/* ===========================
   DISCOVER SECTION
=========================== */
.discover-section {
  background: var(--bark);
}

.discover-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
}

.discover-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.discover-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.discover-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
  filter: brightness(0.7) sepia(20%);
}

.discover-card:hover .discover-card-bg {
  transform: scale(1.06);
  filter: brightness(0.75) sepia(10%);
}

.discover-card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
}

.discover-card-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.discover-card-title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--warm-white);
}

.discover-card-count {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.25rem;
}

/* ===========================
   GEAR / AFFILIATE SECTION
=========================== */
.gear-section {
  background: var(--forest);
}

.gear-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.gear-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 2rem 1.5rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.gear-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(196,154,60,0.05), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.gear-card:hover {
  border-color: rgba(196,154,60,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gear-card:hover::before { opacity: 1; }

.gear-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.gear-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--warm-white);
  margin-bottom: 0.5rem;
}

.gear-desc {
  font-size: 0.9rem;
  color: rgba(245,239,230,0.55);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.gear-link {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition);
}

.gear-link:hover { gap: 0.7rem; }

/* ===========================
   PLEDGE SECTION
=========================== */
.pledge-section {
  background: linear-gradient(135deg, var(--moss) 0%, var(--forest) 100%);
  text-align: center;
  padding: 5rem 2rem;
}

.pledge-section .section-title { margin: 0 auto 1.5rem; }
.pledge-section .section-body { margin: 0 auto 2.5rem; text-align: center; max-width: 540px; }

.pledge-counter {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 1.2rem 2.5rem;
  margin-bottom: 2.5rem;
}

.pledge-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.pledge-label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  text-align: left;
  line-height: 1.4;
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: var(--deep);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(245,239,230,0.5);
  max-width: 300px;
  line-height: 1.7;
  margin-top: 1rem;
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(245,239,230,0.5);
  margin-bottom: 0.6rem;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--cream); }

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(245,239,230,0.6);
  transition: all var(--transition);
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(196,154,60,0.1);
}

.footer-bottom {
  max-width: 1100px;
  margin: 2rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(245,239,230,0.35);
}

.footer-bottom a {
  font-size: 0.8rem;
  color: rgba(245,239,230,0.35);
  transition: color var(--transition);
}

.footer-bottom a:hover { color: rgba(245,239,230,0.7); }

/* ===========================
   ANIMATIONS
=========================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   MOBILE NAV
=========================== */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(13,26,13,0.98);
  backdrop-filter: blur(16px);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu a {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cream);
  transition: color var(--transition);
}

.mobile-menu a:hover { color: var(--gold); }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .story-grid { grid-template-columns: 1fr; gap: 3rem; }
  .story-images { height: 380px; }

  .discover-intro { grid-template-columns: 1fr; gap: 2rem; }

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

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .hero-title { font-size: clamp(3rem, 14vw, 5rem); }
  .blends-grid { grid-template-columns: 1fr 1fr; }
  .gear-grid { grid-template-columns: 1fr; }
  .discover-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-badge { display: none; }
  .pledge-counter { padding: 1rem 1.5rem; }
}
/* =====================
   NAV PLEDGE INTEGRATION
===================== */
.nav {
  padding: 0 1.5rem;
  height: 82px;                    /* Slightly taller to fit pledge */
  align-items: center;
  gap: 1.5rem;
}

.nav-pledge {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a8c99a;
  background: rgba(58, 92, 42, 0.65);
  padding: 0.45rem 1.1rem;
  border-radius: 9999px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;               /* Pushes it to the right */
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.nav.scrolled {
  height: 72px;
  padding: 0 1.5rem;
}

/* Hide pledge on small screens */
@media (max-width: 900px) {
  .nav-pledge {
    display: none;
  }
  
  .nav {
    height: 72px;
  }
}

/* Make sure mobile menu still works well */
@media (max-width: 900px) {
  .nav {
    gap: 1rem;
  }
}
/* =========================================
   GEAR SECTION - Make Links Clickable
========================================= */
.gear-card .gear-link {
  position: relative;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold) !important;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  pointer-events: auto !important;
  cursor: pointer !important;
}

.gear-card .gear-link:hover {
  color: var(--cream) !important;
  gap: 0.8rem;
}
