/*
Theme Name: Raphael Saadiq Music
Theme URI: https://raphaelsaadiq.com
Author: raphaelsaadiq.com
Description: A premium music and entertainment magazine theme for raphaelsaadiq.com — covering R&B, soul, hip-hop, artist profiles, album reviews, and music culture.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: raphael-saadiq
Tags: music, entertainment, magazine, blog, custom-menu, featured-images, post-formats
*/

/* =============================================
   CSS VARIABLES
============================================= */
:root {
  --black: #0a0a0a;
  --deep: #111111;
  --card: #181818;
  --border: #2a2a2a;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --red: #d93025;
  --white: #f5f0e8;
  --grey: #999999;
  --grey-light: #cccccc;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', 'Helvetica Neue', sans-serif;
  --font-mono: 'DM Mono', monospace;
  --max-width: 1280px;
  --radius: 2px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
ul, ol { list-style: none; }

/* =============================================
   TYPOGRAPHY
============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1.25rem; }

.label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* =============================================
   LAYOUT
============================================= */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }

.grid-main {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
}

@media (max-width: 1024px) {
  .grid-main { grid-template-columns: 1fr; }
}

/* =============================================
   HEADER & NAVIGATION
============================================= */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.site-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--white);
}

.site-logo span { color: var(--gold); }

/* Primary Navigation */
#primary-nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
}

#primary-nav a {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-light);
  padding: 0.25rem 0;
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

#primary-nav a:hover,
#primary-nav .current-menu-item > a {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--white);
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  font-size: 1.2rem;
  border-radius: var(--radius);
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }
  #primary-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--deep);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem;
  }
  #primary-nav.open { display: block; }
  #primary-nav ul { flex-direction: column; gap: 1rem; align-items: flex-start; }
}

/* =============================================
   HERO / FEATURED
============================================= */
.hero-section {
  background: var(--deep);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 0;
  min-height: 560px;
}

.hero-main {
  position: relative;
  overflow: hidden;
}

.hero-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-main:hover img { transform: scale(1.03); }

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
}

.hero-secondary {
  display: grid;
  grid-template-rows: 1fr 1fr;
  border-left: 1px solid var(--border);
}

.hero-secondary-item {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero-secondary-item:last-child { border-bottom: none; }

.hero-secondary-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-secondary-item:hover img { transform: scale(1.04); }

.hero-secondary-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
}

@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-secondary { grid-template-rows: auto; grid-template-columns: 1fr 1fr; }
  .hero-secondary-item { min-height: 200px; border-bottom: none; border-right: 1px solid var(--border); }
  .hero-secondary-item:last-child { border-right: none; }
}

/* =============================================
   TICKER / BREAKING NEWS
============================================= */
.news-ticker {
  background: var(--gold);
  color: var(--black);
  padding: 0.6rem 0;
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ticker-inner {
  display: flex;
  align-items: center;
  gap: 0;
}

.ticker-label {
  background: var(--black);
  color: var(--gold);
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  font-weight: 700;
  flex-shrink: 0;
  white-space: nowrap;
}

.ticker-scroll {
  overflow: hidden;
  flex: 1;
}

.ticker-track {
  display: flex;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}

.ticker-track span {
  padding: 0 3rem;
  font-weight: 600;
}

.ticker-track span::after {
  content: '◆';
  margin-left: 3rem;
  opacity: 0.4;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================
   SECTION HEADERS
============================================= */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-title::before {
  content: '';
  display: block;
  width: 4px;
  height: 1.2em;
  background: var(--gold);
  border-radius: 2px;
}

.view-all {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  border: 1px solid var(--border);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.view-all:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* =============================================
   POST CARDS
============================================= */
.post-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}

.post-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.post-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.post-card:hover .post-card-image img { transform: scale(1.05); }

.post-card-category {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius);
}

.post-card-body { padding: 1.25rem; }

.post-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  color: var(--white);
  transition: color var(--transition);
}

.post-card:hover .post-card-title { color: var(--gold); }

.post-card-excerpt {
  font-size: 0.875rem;
  color: var(--grey);
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--grey);
  letter-spacing: 0.05em;
}

.post-card-meta .author { color: var(--gold-light); }

/* Grid Layouts */
.posts-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.posts-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

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

@media (max-width: 1024px) {
  .posts-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .posts-grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .posts-grid-4,
  .posts-grid-3,
  .posts-grid-2 { grid-template-columns: 1fr; }
}

/* List Style Post Card */
.post-card-list {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;
  padding: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}

.post-card-list:hover { border-color: var(--gold); }

.post-card-list-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
}

.post-card-list-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.post-card-list:hover .post-card-list-image img { transform: scale(1.06); }

.post-card-list-body { display: flex; flex-direction: column; justify-content: center; }

.post-card-list-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.35rem;
  color: var(--white);
  transition: color var(--transition);
}

.post-card-list:hover .post-card-list-title { color: var(--gold); }

/* =============================================
   REVIEW CARDS (Star Ratings)
============================================= */
.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}

.review-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.review-card-image {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}

.review-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.review-card:hover .review-card-image img { transform: scale(1.05); }

.review-score {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  background: var(--black);
  border: 2px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-card-body { padding: 1.25rem; }

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 0.5rem;
  color: var(--gold);
  font-size: 0.8rem;
}

.review-artist {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.review-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

/* =============================================
   ARTIST SPOTLIGHT
============================================= */
.artist-spotlight {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 400px;
}

.artist-spotlight img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.6s ease;
}

.artist-spotlight:hover img { transform: scale(1.04); }

.artist-spotlight-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}

/* =============================================
   GEAR / AFFILIATE SECTION
============================================= */
.gear-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  transition: border-color var(--transition);
}

.gear-card:hover { border-color: var(--gold); }

.gear-card-image {
  width: 80px;
  height: 80px;
  object-fit: contain;
  background: var(--deep);
  border-radius: var(--radius);
  flex-shrink: 0;
  padding: 0.5rem;
}

.gear-card-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--white);
}

.gear-card-price {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.btn-buy {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius);
  transition: background var(--transition);
}

.btn-buy:hover { background: var(--gold-light); color: var(--black); }

/* =============================================
   SIDEBAR
============================================= */
.sidebar { display: flex; flex-direction: column; gap: 2rem; }

.widget {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.widget-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.widget-title::before {
  content: '';
  display: block;
  width: 3px;
  height: 1em;
  background: var(--gold);
}

/* Newsletter Widget */
.newsletter-widget {
  background: linear-gradient(135deg, var(--deep) 0%, #1a1500 100%);
  border-color: var(--gold);
  text-align: center;
  padding: 2rem;
}

.newsletter-widget .widget-title { justify-content: center; }
.newsletter-widget .widget-title::before { display: none; }

.newsletter-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.newsletter-text {
  font-size: 0.875rem;
  color: var(--grey-light);
  margin-bottom: 1rem;
}

.newsletter-form { display: flex; flex-direction: column; gap: 0.6rem; }

.newsletter-input {
  background: var(--black);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.875rem;
  width: 100%;
  transition: border-color var(--transition);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--gold);
}

.btn-subscribe {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 0.75rem;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
  width: 100%;
}

.btn-subscribe:hover { background: var(--gold-light); }

/* =============================================
   SINGLE POST
============================================= */
.post-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
}

.post-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem;
}

.post-meta-bar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--grey);
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.post-meta-bar .author-name { color: var(--gold); }

.post-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d4cfc6;
}

.post-content h2 {
  font-size: 1.75rem;
  margin: 2.5rem 0 1rem;
  color: var(--white);
}

.post-content h3 {
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
  color: var(--white);
}

.post-content p { margin-bottom: 1.5rem; }

.post-content a { color: var(--gold); text-decoration: underline; text-decoration-color: transparent; transition: text-decoration-color var(--transition); }
.post-content a:hover { text-decoration-color: var(--gold); }

.post-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 1rem 0 1rem 2rem;
  margin: 2rem 0;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--white);
  background: var(--card);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding-right: 1.5rem;
}

.post-content img {
  width: 100%;
  border-radius: var(--radius);
  margin: 2rem 0;
}

/* Tags */
.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
  border: 1px solid var(--border);
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.tag:hover { color: var(--gold); border-color: var(--gold); }

/* =============================================
   PAGINATION
============================================= */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.page-numbers {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.page-numbers:hover,
.page-numbers.current {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* =============================================
   FOOTER
============================================= */
#site-footer {
  background: var(--deep);
  border-top: 1px solid var(--border);
  margin-top: 5rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 4rem 0 3rem;
}

@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .footer-main { grid-template-columns: 1fr; }
}

.footer-brand .site-logo { font-size: 1.6rem; margin-bottom: 1rem; display: block; }

.footer-desc {
  font-size: 0.875rem;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }

.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--grey);
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  color: var(--grey);
}

@media (max-width: 640px) {
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
}

/* =============================================
   CATEGORY PAGE HEADER
============================================= */
.category-header {
  background: var(--deep);
  border-bottom: 1px solid var(--border);
  padding: 3rem 0;
}

.category-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.category-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 0.75rem;
}

.category-desc {
  color: var(--grey-light);
  font-size: 1rem;
  max-width: 500px;
}

/* =============================================
   SEARCH
============================================= */
.search-bar {
  display: flex;
  gap: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.search-bar:focus-within { border-color: var(--gold); }

.search-input {
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  flex: 1;
  outline: none;
}

.search-input::placeholder { color: var(--grey); }

.search-btn {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 0.75rem 1.25rem;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background var(--transition);
}

.search-btn:hover { background: var(--gold-light); }

/* =============================================
   UTILITY CLASSES
============================================= */
.text-gold { color: var(--gold); }
.text-grey { color: var(--grey); }
.text-white { color: var(--white); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
