/* =============================================
   CannedChicken.com — Main Stylesheet
   Design: Rustic-Modern Food Brand
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Source+Sans+3:wght@300;400;600&family=Courier+Prime:wght@700&display=swap');

/* --- Design Tokens --- */
:root {
  --cream:     #F7F3ED;
  --gold:      #C8922A;
  --rust:      #B84C2B;
  --forest:    #2D4A3E;
  --charcoal:  #1C1C1C;
  --warm-gray: #6B6459;
  --light-bg:  #FEFCF9;
  --border:    #E4DDD3;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Source Sans 3', system-ui, sans-serif;
  --font-stamp:   'Courier Prime', 'Courier New', monospace;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --shadow-card: 0 2px 12px rgba(28,28,28,0.08);
  --shadow-hover: 0 8px 32px rgba(28,28,28,0.14);

  --max-width: 1180px;
  --transition: 0.22s ease;
}

/* --- 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(--light-bg);
  color: var(--charcoal);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--rust); }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; color: var(--charcoal); }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); font-weight: 700; }
h4 { font-size: 1.15rem; font-weight: 700; }
p { margin-bottom: 1.1em; }
p:last-child { margin-bottom: 0; }

.label {
  font-family: var(--font-stamp);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-gray);
  font-weight: 700;
}

/* --- Layout Utilities --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--rust);
  color: #fff;
  border-color: var(--rust);
}
.btn-primary:hover {
  background: #9e3d22;
  border-color: #9e3d22;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(184,76,43,0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn-secondary:hover {
  background: var(--forest);
  color: #fff;
}
.btn-gold {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn-gold:hover {
  background: #a87720;
  border-color: #a87720;
  color: #fff;
  transform: translateY(-1px);
}
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* --- Navigation --- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--light-bg);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--charcoal);
}
.nav-logo-text span { color: var(--rust); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--rust); }
.nav-cta { margin-left: 12px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--charcoal); transition: all 0.3s; }

/* --- Domain Sale Banner --- */
.domain-banner {
  background: linear-gradient(135deg, var(--forest) 0%, #1a3028 100%);
  color: #fff;
  padding: 14px 24px;
  text-align: center;
  position: relative;
}
.domain-banner p {
  margin: 0;
  font-size: 0.93rem;
  font-weight: 600;
}
.domain-banner a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
}
.domain-banner a:hover { color: #f0b84a; }
.banner-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
}

/* --- Hero Section --- */
.hero {
  background: var(--charcoal);
  color: #fff;
  min-height: 86vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1604503468506-a8da13d82791?w=1400&auto=format&fit=crop&q=70');
  background-size: cover;
  background-position: center;
  opacity: 0.22;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 80px 24px;
}
.hero-eyebrow {
  font-family: var(--font-stamp);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.hero h1 { color: #fff; margin-bottom: 24px; }
.hero h1 span { color: var(--gold); }
.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 540px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stat-row {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.hero-stat .desc { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* --- Domain Sale Section --- */
.domain-sale-section {
  background: linear-gradient(135deg, #1C1C1C 0%, var(--forest) 100%);
  color: #fff;
  padding: 72px 0;
  text-align: center;
}
.domain-sale-section h2 { color: var(--gold); margin-bottom: 16px; }
.domain-sale-section p { color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto 32px; font-size: 1.1rem; }
.domain-pill {
  display: inline-block;
  font-family: var(--font-stamp);
  font-size: 1.6rem;
  font-weight: 700;
  background: var(--gold);
  color: var(--charcoal);
  padding: 12px 32px;
  border-radius: 4px;
  margin-bottom: 32px;
  letter-spacing: 0.04em;
}
.domain-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.domain-features li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}
.domain-features li::before { content: '✓'; color: var(--gold); font-weight: 700; }

/* --- Cards --- */
.card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: all var(--transition);
}
.card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.card-body { padding: 24px; }
.card-body .label { margin-bottom: 10px; }
.card-body h3 { margin-bottom: 10px; }
.card-body p { font-size: 0.92rem; color: var(--warm-gray); }
.card-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-meta { font-size: 0.82rem; color: var(--warm-gray); }

/* --- Recipe Cards --- */
.recipe-card { position: relative; }
.recipe-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--rust);
  color: #fff;
  font-family: var(--font-stamp);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 2px;
  text-transform: uppercase;
}
.recipe-time {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--warm-gray);
}
.recipe-time svg { flex-shrink: 0; }

/* --- Product Cards (Amazon Affiliate) --- */
.product-card { border: 1px solid var(--border); }
.product-card .card-img { height: 200px; object-fit: contain; padding: 16px; background: #fafafa; }
.product-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.stars { color: var(--gold); font-size: 0.95rem; letter-spacing: 1px; }
.rating-count { font-size: 0.8rem; color: var(--warm-gray); }
.product-price { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--rust); margin-bottom: 14px; }
.price-original { font-size: 0.9rem; color: var(--warm-gray); text-decoration: line-through; margin-left: 6px; font-family: var(--font-body); font-weight: 400; }
.affiliate-note { font-size: 0.72rem; color: var(--warm-gray); margin-top: 8px; font-style: italic; }

/* --- Article Cards --- */
.article-card .card-img { height: 200px; }

/* --- Section Headers --- */
.section-header { margin-bottom: 52px; }
.section-header.text-center { text-align: center; }
.section-header p { color: var(--warm-gray); font-size: 1.05rem; max-width: 600px; }
.section-header.text-center p { margin: 12px auto 0; }
.section-header h2 { margin-top: 8px; }
.divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 16px 0;
}
.divider.center { margin: 16px auto; }

/* --- Features/Benefits --- */
.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.feature-item { padding: 28px; background: var(--cream); border-radius: var(--radius-md); }

/* --- Breadcrumbs --- */
.breadcrumbs {
  padding: 14px 0;
  font-size: 0.85rem;
  color: var(--warm-gray);
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}
.breadcrumbs a { color: var(--warm-gray); }
.breadcrumbs a:hover { color: var(--rust); }
.breadcrumbs span { color: var(--charcoal); }

/* --- Page Header --- */
.page-header {
  background: var(--charcoal);
  color: #fff;
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-size: cover;
  background-position: center;
}
.page-header.recipes-bg::before { background-image: url('https://images.unsplash.com/photo-1547592180-85f173990554?w=1200&auto=format&fit=crop&q=60'); }
.page-header.articles-bg::before { background-image: url('https://images.unsplash.com/photo-1586201375761-83865001e31c?w=1200&auto=format&fit=crop&q=60'); }
.page-header.store-bg::before { background-image: url('https://images.unsplash.com/photo-1604503468506-a8da13d82791?w=1200&auto=format&fit=crop&q=60'); }
.page-header.domain-bg::before { background-image: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1200&auto=format&fit=crop&q=60'); }
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { color: #fff; margin-bottom: 14px; }
.page-header .label { color: var(--gold); margin-bottom: 10px; }
.page-header p { color: rgba(255,255,255,0.78); font-size: 1.1rem; max-width: 600px; margin-bottom: 0; }

/* --- Tags / Filters --- */
.tag-filter { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.tag {
  padding: 6px 16px;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--warm-gray);
  cursor: pointer;
  transition: all var(--transition);
  background: #fff;
}
.tag:hover, .tag.active { background: var(--rust); color: #fff; border-color: var(--rust); }

/* --- Inline CTA Box --- */
.cta-box {
  background: linear-gradient(135deg, var(--forest) 0%, #234035 100%);
  border-radius: var(--radius-lg);
  padding: 48px;
  color: #fff;
  text-align: center;
  margin: 60px 0;
}
.cta-box h2 { color: var(--gold); margin-bottom: 14px; }
.cta-box p { color: rgba(255,255,255,0.82); max-width: 520px; margin: 0 auto 28px; }

/* --- Newsletter --- */
.newsletter-section {
  background: var(--cream);
  padding: 64px 0;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.newsletter-form {
  display: flex;
  max-width: 460px;
  margin: 24px auto 0;
  gap: 0;
}
.newsletter-form input {
  flex: 1;
  padding: 13px 18px;
  border: 2px solid var(--border);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: #fff;
  outline: none;
}
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form button {
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 13px 24px;
  background: var(--rust);
  color: #fff;
  border: 2px solid var(--rust);
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}
.newsletter-form button:hover { background: #9e3d22; }

/* --- Footer --- */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
}
.footer-brand .logo-text span { color: var(--gold); }
.footer-brand p { font-size: 0.88rem; line-height: 1.6; margin-bottom: 20px; }
.footer-col h4 { color: #fff; font-size: 0.88rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px; font-family: var(--font-stamp); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.88rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
}
.footer-bottom a { color: var(--gold); }
.social-links { display: flex; gap: 14px; }
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.social-links a:hover { border-color: var(--gold); color: var(--gold); }

/* --- Recipe Detail --- */
.recipe-hero-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 36px;
}
.recipe-meta-bar {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 36px;
}
.recipe-meta-item { text-align: center; }
.recipe-meta-item .val {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--rust);
  display: block;
}
.recipe-meta-item .key { font-size: 0.78rem; color: var(--warm-gray); text-transform: uppercase; letter-spacing: 0.08em; }

.ingredients-box {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-bottom: 28px;
}
.ingredients-box h3 { margin-bottom: 18px; }
.ingredients-list { list-style: none; }
.ingredients-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ingredients-list li::before { content: '·'; color: var(--gold); font-size: 1.4rem; line-height: 0; }
.ingredients-list li:last-child { border-bottom: none; }

.steps-list { list-style: none; counter-reset: step-counter; }
.steps-list li {
  counter-increment: step-counter;
  padding: 20px 0 20px 64px;
  border-bottom: 1px solid var(--border);
  position: relative;
  font-size: 0.97rem;
}
.steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 20px;
  width: 38px;
  height: 38px;
  background: var(--rust);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}
.steps-list li:last-child { border-bottom: none; }

/* --- Article --- */
.article-content { max-width: 740px; }
.article-content h2 { margin: 40px 0 16px; }
.article-content h3 { margin: 28px 0 12px; color: var(--forest); }
.article-content ul, .article-content ol {
  padding-left: 24px;
  margin-bottom: 1.1em;
}
.article-content li { margin-bottom: 6px; font-size: 0.97rem; }
.article-content blockquote {
  border-left: 4px solid var(--gold);
  padding: 16px 24px;
  background: var(--cream);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  margin: 28px 0;
}
.article-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  margin-top: 48px;
}
.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}
.author-name { font-weight: 700; font-size: 0.95rem; }
.author-bio { font-size: 0.85rem; color: var(--warm-gray); }

/* --- Domain Page --- */
.domain-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0;
}
.domain-value-item {
  text-align: center;
  padding: 32px 24px;
  background: var(--cream);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.domain-value-item .icon { font-size: 2.4rem; margin-bottom: 16px; }
.domain-value-item .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--rust);
  display: block;
}
.inquiry-form {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid var(--border);
}
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 8px; letter-spacing: 0.02em; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: #fff;
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* --- Admin (Login + Dashboard) --- */
.admin-body {
  background: #1a1a2e;
  min-height: 100vh;
  font-family: var(--font-body);
}
.login-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
}
.login-card {
  background: #16213e;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 48px;
  width: 100%;
  max-width: 420px;
}
.login-card h1 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 8px;
  text-align: center;
}
.login-card .subtitle {
  color: rgba(255,255,255,0.5);
  text-align: center;
  font-size: 0.88rem;
  margin-bottom: 36px;
}
.admin-input {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
  margin-bottom: 16px;
}
.admin-input:focus { border-color: var(--gold); }
.admin-btn {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: var(--charcoal);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background var(--transition);
}
.admin-btn:hover { background: #b07d20; }
.error-msg {
  color: #ff6b6b;
  font-size: 0.85rem;
  margin-top: 12px;
  text-align: center;
}

/* Dashboard */
.dashboard-layout { display: flex; min-height: 100vh; }
.sidebar {
  width: 240px;
  background: #0f3460;
  flex-shrink: 0;
  padding: 24px 0;
  position: fixed;
  height: 100vh;
  overflow-y: auto;
}
.sidebar-logo {
  padding: 0 24px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
}
.sidebar-logo span { color: var(--gold); }
.sidebar-nav { list-style: none; }
.sidebar-nav li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
  text-decoration: none;
}
.sidebar-nav li a:hover,
.sidebar-nav li a.active {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-left: 3px solid var(--gold);
}
.sidebar-nav li a .icon { font-size: 1.1rem; width: 20px; text-align: center; }
.dashboard-main {
  margin-left: 240px;
  flex: 1;
  background: #f0f2f5;
  min-height: 100vh;
}
.dashboard-topbar {
  background: #fff;
  padding: 16px 32px;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dashboard-topbar h2 { font-size: 1.1rem; color: var(--charcoal); }
.topbar-user { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; }
.dashboard-content { padding: 32px; }

.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }
.stat-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}
.stat-card .s-icon { font-size: 1.8rem; margin-bottom: 12px; }
.stat-card .s-num { font-family: var(--font-display); font-size: 2rem; font-weight: 900; color: var(--charcoal); }
.stat-card .s-label { font-size: 0.82rem; color: var(--warm-gray); margin-top: 4px; }

.admin-table-wrapper {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
  overflow: hidden;
}
.admin-table-header {
  padding: 20px 24px;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.admin-table-header h3 { font-size: 1rem; color: var(--charcoal); }
.admin-table {
  width: 100%;
  border-collapse: collapse;
}
.admin-table th {
  text-align: left;
  padding: 12px 18px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm-gray);
  background: #f8f9fa;
  border-bottom: 1px solid #e0e0e0;
}
.admin-table td {
  padding: 14px 18px;
  font-size: 0.88rem;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: middle;
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: #fafafa; }
.status-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}
.status-published { background: #d4edda; color: #155724; }
.status-draft { background: #fff3cd; color: #856404; }
.status-featured { background: #d1ecf1; color: #0c5460; }
.action-btns { display: flex; gap: 8px; }
.action-btn {
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.15s;
}
.action-edit { background: #e3f2fd; color: #1565c0; }
.action-edit:hover { background: #1565c0; color: #fff; }
.action-delete { background: #ffebee; color: #c62828; }
.action-delete:hover { background: #c62828; color: #fff; }

.admin-form-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
  margin-bottom: 24px;
}
.admin-form-card h3 { font-size: 1rem; margin-bottom: 24px; padding-bottom: 14px; border-bottom: 1px solid #e0e0e0; }
.admin-form-group { margin-bottom: 20px; }
.admin-form-group label { display: block; font-size: 0.85rem; font-weight: 700; margin-bottom: 8px; color: var(--charcoal); }
.admin-form-group input,
.admin-form-group textarea,
.admin-form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #d0d0d0;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.15s;
}
.admin-form-group input:focus,
.admin-form-group textarea:focus { border-color: var(--gold); }
.admin-form-group textarea { min-height: 120px; resize: vertical; }
.admin-save-btn {
  background: var(--forest);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
}
.admin-save-btn:hover { background: #1e3329; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .hero { min-height: 70vh; }
  .hero-stat-row { gap: 24px; flex-wrap: wrap; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); padding: 20px 24px; gap: 16px; z-index: 200; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-stat-row { display: none; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input, .newsletter-form button { border-radius: var(--radius-sm); border: 2px solid var(--border); }
  .domain-value-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-box { padding: 32px 24px; }
  .inquiry-form { padding: 28px 20px; }
  .sidebar { display: none; }
  .dashboard-main { margin-left: 0; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
  .domain-features { flex-direction: column; gap: 16px; align-items: flex-start; padding-left: 24px; }
}

/* --- Utility --- */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }
.hidden { display: none !important; }
.bg-cream { background: var(--cream); }
.bg-charcoal { background: var(--charcoal); }
.text-gold { color: var(--gold); }
.text-rust { color: var(--rust); }
.text-forest { color: var(--forest); }
.text-muted { color: var(--warm-gray); }
.fw-bold { font-weight: 700; }

/* Schema.org / SEO invisible markup */
[itemscope] { display: inherit; }

/* Smooth scroll offset for sticky nav */
[id] { scroll-margin-top: 80px; }

/* Print */
@media print { .site-nav, .domain-banner, .site-footer { display: none; } }
