:root {
  --bg: #F4E8CE; --surface: #EAD9B4; --surface2: #DDCA9C;
  --border: rgba(100,55,10,0.18); --amber: #B86810; --amber2: #D4820E;
  --cream: #2C1406; --muted: #8B6035; --light: #50300E;
}
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--cream); font-family: 'Inter', sans-serif; font-size: 17px; line-height: 1.65; margin: 0; }
a { color: inherit; text-decoration: none; }

/* ─── TICKER ─── */
.ticker-wrap { position: sticky; top: 0; z-index: 101; background: #2A1206; border-bottom: 2px solid #B86810; overflow: hidden; height: 36px; display: flex; align-items: center; }
.ticker-track { display: flex; gap: 40px; animation: ticker 45s linear infinite; white-space: nowrap; }
.ticker-item { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; color: rgba(255,255,255,0.85); text-transform: uppercase; display: flex; align-items: center; gap: 6px; }
.ticker-item:hover { color: var(--amber); }
.ticker-pill { background: var(--amber); color: #fff; padding: 1px 7px; border-radius: 3px; font-size: 0.65rem; font-weight: 800; margin-right: 6px; }
.ticker-pill.gold { background: #C4A050; }
.ticker-sep { color: rgba(232,144,26,0.4); font-size: 0.7rem; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ─── NAV ─── */
nav:not(.nav-drawer) {
  display: flex; align-items: center; padding: 12px clamp(16px,4vw,48px);
  background: rgba(30,15,5,0.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(184,104,16,0.25);
  position: sticky; top: 36px; z-index: 100;
}
.nav-badge { display: flex; align-items: center; gap: 10px; font-family: 'Rye', serif; font-size: 1.1rem; color: #fff; text-decoration: none; }
.nav-links { display: flex; align-items: center; gap: clamp(12px,2vw,28px); margin-left: auto; }
.nav-links > a, .nav-item > a {
  font-family: 'Inter', sans-serif; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.9);
  transition: color 0.2s; text-decoration: none; white-space: nowrap;
}
.nav-links > a:hover, .nav-item > a:hover { color: #B04A20; }
.nav-links > a.active, .nav-item > a.active { color: #B04A20; border-bottom: 2px solid #B04A20; padding-bottom: 2px; }
.nav-cta {
  background: #B84A28 !important; color: #fff !important;
  padding: 10px 22px !important; border-radius: 4px !important;
  font-size: 0.75rem !important; font-weight: 800 !important;
  letter-spacing: 0.1em; text-transform: uppercase; transition: background 0.2s;
}
.nav-cta:hover { background: #9A3A1E !important; }
.nav-item { position: relative; }
.nav-dropdown {
  display: none; position: absolute; top: 100%; left: 0; background: rgba(30,15,5,0.96);
  border: 1px solid rgba(184,104,16,0.25); border-radius: 6px; padding: 8px 0;
  min-width: 180px; z-index: 200;
}
.nav-item:hover .nav-dropdown { display: block; }
.nav-dropdown a {
  display: block; padding: 8px 18px; font-size: 0.72rem; font-weight: 600;
  color: rgba(255,255,255,0.85); letter-spacing: 0.08em; text-transform: uppercase;
}
.nav-dropdown a:hover { background: rgba(184,104,16,0.15); color: #B04A20; }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: #fff; margin: 5px 0; border-radius: 2px; }
@media (max-width: 768px) { .nav-links { display: none; } .nav-hamburger { display: block; } }

/* ─── MOBILE DRAWER ─── */
.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 998; }
.nav-overlay.open { display: block; }
.nav-drawer { position: fixed; top: 0; right: -320px; width: 300px; height: 100%; background: #1E0F05; z-index: 999; transition: right 0.3s; overflow-y: auto; }
.nav-drawer.open { right: 0; }
.nav-drawer-header { display: flex; justify-content: space-between; align-items: flex-start; padding: 24px 20px 16px; border-bottom: 1px solid rgba(184,104,16,0.2); }
.nav-drawer-logo { font-family: 'Rye', serif; font-size: 1rem; color: #fff; line-height: 1.4; }
.nav-drawer-close { background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; padding: 4px 8px; }
.nav-drawer-links { padding: 16px 20px; }
.nav-drawer-links a { display: block; padding: 10px 0; font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.9); text-transform: uppercase; letter-spacing: 0.08em; }
.nav-drawer-section { font-size: 0.7rem; font-weight: 800; color: var(--amber); text-transform: uppercase; letter-spacing: 0.15em; margin-top: 16px; padding-bottom: 4px; border-bottom: 1px solid rgba(184,104,16,0.2); }
.nav-drawer-sub a { padding-left: 12px; font-size: 0.8rem; }
.nav-drawer-cta { display: block; text-align: center; background: #B84A28; color: #fff !important; padding: 12px; border-radius: 6px; font-weight: 800; margin-top: 20px; letter-spacing: 0.1em; }

/* ─── PAGE HERO ─── */
.page-hero {
  position: relative; padding: 80px 24px 60px; text-align: center;
  background: linear-gradient(180deg, #2A1206 0%, #3D1E0A 60%, var(--bg) 100%);
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('/assets/images/western.jpg') center/cover no-repeat;
  opacity: 0.12;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700; color: #F4E8CE; position: relative; margin: 0 0 12px;
}
.page-hero p {
  font-size: 1.05rem; color: rgba(244,232,206,0.7); position: relative;
  max-width: 560px; margin: 0 auto;
}
.hero-badge {
  display: inline-block; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--amber); background: rgba(184,104,16,0.15);
  border: 1px solid rgba(184,104,16,0.3); border-radius: 4px; padding: 4px 14px;
  margin-bottom: 16px; position: relative;
}

/* ─── NEWS CARDS ─── */
.news-section { max-width: 900px; margin: 0 auto; padding: 48px 24px 80px; }
.news-card {
  background: #fff; border-radius: 12px; overflow: hidden;
  box-shadow: 0 2px 16px rgba(44,20,6,0.08); margin-bottom: 36px;
  border: 1px solid var(--border); transition: box-shadow 0.2s;
}
.news-card:hover { box-shadow: 0 6px 28px rgba(44,20,6,0.14); }
.news-card-image {
  width: 100%; height: 280px; object-fit: cover; display: block;
}
.news-card-body { padding: 28px 32px 32px; }
.news-source {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--amber); margin-bottom: 10px;
}
.news-source-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--amber); }
.news-card h2 {
  font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700;
  color: var(--cream); margin: 0 0 14px; line-height: 1.3;
}
.news-card h2 a { color: inherit; text-decoration: none; }
.news-card h2 a:hover { color: var(--amber); }
.news-date { font-size: 0.8rem; color: var(--muted); margin-bottom: 16px; }
.news-excerpt {
  font-size: 0.95rem; line-height: 1.7; color: var(--light); margin-bottom: 20px;
}
.news-quote {
  border-left: 3px solid var(--amber); padding: 14px 20px; margin: 20px 0;
  background: rgba(184,104,16,0.05); border-radius: 0 8px 8px 0;
  font-style: italic; font-size: 0.95rem; color: var(--cream); line-height: 1.6;
}
.news-quote cite {
  display: block; font-style: normal; font-size: 0.8rem; font-weight: 700;
  color: var(--amber); margin-top: 8px;
}
.news-read-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: #B84A28; transition: gap 0.2s;
}
.news-read-more:hover { gap: 10px; color: #9A3A1E; }

/* ─── AS SEEN IN BAR ─── */
.seen-in {
  text-align: center; padding: 40px 24px 48px;
  border-top: 1px solid var(--border);
}
.seen-in h3 {
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted); margin: 0 0 24px;
}
.seen-in-logos {
  display: flex; justify-content: center; align-items: center;
  gap: 48px; flex-wrap: wrap; opacity: 0.6;
}
.seen-in-logos span {
  font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700;
  color: var(--cream); white-space: nowrap;
}

/* ─── FOOTER ─── */
.site-footer {
  background: #1E0F05; color: rgba(244,232,206,0.7); text-align: center;
  padding: 32px 24px; font-size: 0.8rem;
}
.site-footer a { color: var(--amber); }
.site-footer a:hover { text-decoration: underline; }

@media (max-width: 600px) {
  .news-card-body { padding: 20px 18px 24px; }
  .news-card h2 { font-size: 1.25rem; }
  .news-card-image { height: 200px; }
  .page-hero { padding: 60px 20px 40px; }
}
