/*
Theme Name: MenuLux Pro
Theme URI: https://example.com/menulux-pro
Author: Your Name
Author URI: https://example.com
Description: A premium dark luxury WordPress theme built for menu blog websites. Features complete SEO optimization, custom menu post type, schema markup, Open Graph, and a stunning editorial design. Perfect for food & tea menu blogs.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: menulux-pro
Tags: blog, food, menu, dark, seo, restaurant, luxury, editorial
*/

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

:root {
  --bg: #0a0905;
  --bg2: #111008;
  --bg3: #181509;
  --gold: #c9993a;
  --gold2: #e8c07a;
  --cream: #f5ecd7;
  --cream2: #d8c9a8;
  --text: #f0e6cc;
  --muted: #8a7d60;
  --border: rgba(201,153,58,0.15);
  --border-hover: rgba(201,153,58,0.4);
  --red: #8b2020;
  --font-display: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --font-italic: 'Cormorant Garamond', serif;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY
============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--cream);
  line-height: 1.15;
  font-weight: 700;
}

h1 { font-size: clamp(36px, 5vw, 64px); }
h2 { font-size: clamp(28px, 3.5vw, 48px); }
h3 { font-size: clamp(22px, 2.5vw, 32px); }
h4 { font-size: 22px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

p { margin-bottom: 1.2rem; color: var(--cream2); opacity: 0.85; }

a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--gold2); }

strong, b { font-weight: 500; color: var(--cream); }
em, i { font-family: var(--font-italic); font-style: italic; color: var(--gold); }

ul, ol { padding-left: 1.5rem; color: var(--cream2); }
ul li, ol li { margin-bottom: 0.5rem; }

blockquote {
  border-left: 2px solid var(--gold);
  padding: 20px 32px;
  margin: 32px 0;
  background: var(--bg2);
  font-family: var(--font-italic);
  font-size: 22px;
  font-style: italic;
  color: var(--cream2);
}

blockquote cite {
  display: block;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-style: normal;
  font-family: var(--font-body);
  color: var(--gold);
  margin-top: 12px;
}

img { max-width: 100%; height: auto; display: block; }

hr {
  border: none;
  height: 0.5px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
  margin: 40px 0;
}

table { width: 100%; border-collapse: collapse; margin: 24px 0; }
th {
  background: var(--bg2);
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 14px 16px;
  text-align: left;
  border-bottom: 0.5px solid var(--border);
}
td {
  padding: 14px 16px;
  border-bottom: 0.5px solid rgba(201,153,58,0.06);
  color: var(--cream2);
  font-size: 14px;
}
tr:hover td { background: rgba(201,153,58,0.03); }

code, pre {
  font-family: 'Courier New', monospace;
  background: var(--bg2);
  color: var(--gold2);
  border: 0.5px solid var(--border);
}
code { padding: 2px 8px; font-size: 13px; border-radius: 2px; }
pre { padding: 20px 24px; overflow-x: auto; margin: 24px 0; }
pre code { background: none; border: none; padding: 0; }

/* ============================================
   GRAIN OVERLAY
============================================ */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  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='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9000;
  opacity: 0.35;
}

/* ============================================
   NAVIGATION
============================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 24px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, backdrop-filter 0.4s;
}

#site-header.scrolled {
  background: rgba(10,9,5,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

#site-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 60px; right: 60px;
  height: 0.5px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

#site-header.scrolled::after { opacity: 0.3; }

.site-branding a {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 8px;
  color: var(--gold);
  text-transform: uppercase;
  text-decoration: none;
}

#site-navigation ul {
  display: flex;
  gap: 40px;
  list-style: none;
  padding: 0; margin: 0;
}

#site-navigation ul li a {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cream2);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
  padding-bottom: 4px;
}

#site-navigation ul li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0.5px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

#site-navigation ul li a:hover,
#site-navigation ul li.current-menu-item > a {
  color: var(--gold);
}
#site-navigation ul li a:hover::after,
#site-navigation ul li.current-menu-item > a::after {
  transform: scaleX(1);
}

.header-search-btn {
  background: none;
  border: 0.5px solid var(--border);
  color: var(--cream2);
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 14px;
  margin-left: 20px;
}
.header-search-btn:hover { border-color: var(--gold); color: var(--gold); }

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: 0.5px solid var(--border);
  color: var(--cream);
  width: 40px; height: 40px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: border-color 0.3s;
}
.menu-toggle:hover { border-color: var(--gold); }
.menu-toggle span {
  display: block;
  width: 20px; height: 0.5px;
  background: currentColor;
  transition: all 0.3s;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(3px, 3px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(3px, -3px); }

/* ============================================
   PAGE LAYOUT
============================================ */
#page { min-height: 100vh; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
}

.content-area {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  padding: 120px 60px 80px;
  max-width: 1280px;
  margin: 0 auto;
}

.content-area.no-sidebar {
  grid-template-columns: 1fr;
  max-width: 900px;
}

/* ============================================
   PAGE HEADER / BANNER
============================================ */
.page-banner {
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  padding: 0 60px 60px;
  position: relative;
  overflow: hidden;
  background: var(--bg2);
  margin-top: 88px;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(201,153,58,0.1) 0%, transparent 60%);
}
.page-banner-inner { position: relative; z-index: 2; max-width: 1280px; width: 100%; margin: 0 auto; padding: 0; }
.breadcrumb {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.breadcrumb a { color: var(--muted); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }
.breadcrumb .sep { color: var(--muted); opacity: 0.5; }

.page-banner h1 {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.0;
}
.page-banner h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.page-banner-meta {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.page-banner-meta span {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-banner-meta span::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

/* ============================================
   POSTS / BLOG
============================================ */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(201,153,58,0.08);
  margin-bottom: 60px;
}

.post-card {
  background: var(--bg2);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}
.post-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.post-card:hover { background: #141209; }
.post-card:hover::before { transform: scaleX(1); }

.post-card-thumbnail {
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 28px;
  position: relative;
  background: var(--bg3);
}
.post-card-thumbnail img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.post-card:hover .post-card-thumbnail img { transform: scale(1.05); }

.post-card-thumbnail-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}
.post-card-thumbnail-placeholder::after {
  content: attr(data-letter);
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 900;
  color: rgba(201,153,58,0.06);
}

.post-cat {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.post-cat::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

.post-card h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 14px;
}
.post-card h2 a { color: inherit; text-decoration: none; transition: color 0.3s; }
.post-card h2 a:hover { color: var(--gold); }

.post-card .post-excerpt {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 28px;
}
.post-card .post-excerpt p { color: var(--muted); margin: 0; opacity: 1; }

.post-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.post-meta-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.post-meta-date, .post-meta-author, .post-meta-time {
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--muted);
}
.read-more-link {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}
.read-more-link:hover { gap: 14px; color: var(--gold2); }

/* Single Post */
.single-post-content {
  font-size: 16px;
  line-height: 1.9;
}
.single-post-content h2 {
  font-size: 32px;
  margin: 48px 0 20px;
  padding-top: 48px;
  border-top: 0.5px solid var(--border);
}
.single-post-content h3 {
  font-size: 24px;
  margin: 36px 0 16px;
  color: var(--cream);
}
.single-post-content p { margin-bottom: 1.5rem; }
.single-post-content img {
  width: 100%;
  border: 0.5px solid var(--border);
  margin: 32px 0;
}
.single-post-content .wp-caption-text {
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--muted);
  text-align: center;
  margin-top: -20px;
  margin-bottom: 32px;
  padding: 10px;
  border-bottom: 0.5px solid var(--border);
}

/* Post Tags */
.post-tags {
  margin: 48px 0 0;
  padding-top: 32px;
  border-top: 0.5px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.post-tags-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
}
.tag-link {
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--muted);
  border: 0.5px solid var(--border);
  padding: 6px 14px;
  text-decoration: none;
  transition: all 0.3s;
}
.tag-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* Author Box */
.author-box {
  background: var(--bg2);
  border: 0.5px solid var(--border);
  padding: 32px;
  margin: 48px 0;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.author-avatar img {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 1px solid var(--border);
}
.author-avatar-placeholder {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--bg3);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--gold);
}
.author-info-name {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--cream);
  margin-bottom: 8px;
}
.author-info-bio {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* Related Posts */
.related-posts {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 0.5px solid var(--border);
}
.related-posts-title {
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.related-posts-title::after {
  content: '';
  flex: 1;
  height: 0.5px;
  background: var(--border);
}
.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.related-post-item {
  background: var(--bg2);
  padding: 28px 24px;
  text-decoration: none;
  transition: background 0.3s;
  display: block;
}
.related-post-item:hover { background: var(--bg3); }
.related-post-cat {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.related-post-title {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--cream);
  line-height: 1.3;
}

/* ============================================
   SIDEBAR
============================================ */
.sidebar { position: relative; }

.widget {
  margin-bottom: 48px;
  background: var(--bg2);
  border: 0.5px solid var(--border);
  padding: 32px 28px;
}

.widget-title {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 0.5px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 400;
  font-family: var(--font-body);
}
.widget-title::before {
  content: '';
  width: 20px; height: 0.5px;
  background: var(--gold);
}

.widget ul { list-style: none; padding: 0; }
.widget ul li {
  padding: 10px 0;
  border-bottom: 0.5px solid rgba(201,153,58,0.06);
  margin: 0;
}
.widget ul li:last-child { border: none; }
.widget ul li a {
  font-size: 14px;
  color: var(--cream2);
  text-decoration: none;
  transition: color 0.3s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.widget ul li a:hover { color: var(--gold); }
.widget ul li .count {
  font-size: 11px;
  color: var(--muted);
  background: rgba(201,153,58,0.06);
  padding: 2px 8px;
  border: 0.5px solid var(--border);
}

/* Search Widget */
.widget_search .search-form {
  display: flex;
  gap: 0;
}
.widget_search .search-field {
  flex: 1;
  background: var(--bg);
  border: 0.5px solid var(--border);
  border-right: none;
  padding: 12px 16px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
}
.widget_search .search-field::placeholder { color: var(--muted); }
.widget_search .search-field:focus { border-color: var(--border-hover); }
.widget_search .search-submit {
  background: var(--gold);
  color: var(--bg);
  border: none;
  padding: 12px 16px;
  cursor: pointer;
  font-size: 12px;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 1px;
  transition: background 0.3s;
}
.widget_search .search-submit:hover { background: var(--gold2); }

/* Tag Cloud Widget */
.widget_tag_cloud .tagcloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.widget_tag_cloud .tagcloud a {
  font-size: 11px !important;
  letter-spacing: 1px;
  color: var(--muted);
  border: 0.5px solid var(--border);
  padding: 6px 12px;
  text-decoration: none;
  transition: all 0.3s;
}
.widget_tag_cloud .tagcloud a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ============================================
   PAGINATION
============================================ */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 20px 0;
}
.pagination .page-numbers {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: var(--muted);
  border: 0.5px solid var(--border);
  text-decoration: none;
  transition: all 0.3s;
  font-family: var(--font-display);
}
.pagination .page-numbers:hover,
.pagination .page-numbers.current {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.pagination .page-numbers.dots {
  border: none;
  width: auto;
  color: var(--muted);
}

/* ============================================
   MENU ITEMS (Custom Post Type)
============================================ */
.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,153,58,0.08);
}

.menu-item-card {
  background: var(--bg2);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
  cursor: pointer;
}
.menu-item-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s;
}
.menu-item-card:hover { background: #141209; }
.menu-item-card:hover::before { transform: scaleX(1); }

.menu-item-number {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 900;
  color: rgba(201,153,58,0.06);
  line-height: 1;
  position: absolute;
  top: 12px; right: 18px;
  transition: color 0.4s;
  pointer-events: none;
}
.menu-item-card:hover .menu-item-number { color: rgba(201,153,58,0.12); }

.menu-item-badge {
  position: absolute;
  top: 16px; left: 0;
  background: var(--gold);
  color: var(--bg);
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 4px 12px;
  font-family: var(--font-body);
}
.menu-item-badge.new { background: var(--red); }

.menu-item-cat {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.menu-item-cat::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

.menu-item-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 12px;
}
.menu-item-name a { color: inherit; text-decoration: none; transition: color 0.3s; }
.menu-item-name a:hover { color: var(--gold); }

.menu-item-desc {
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 28px;
}

.menu-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.menu-item-price {
  font-family: var(--font-italic);
  font-size: 28px;
  color: var(--gold2);
}
.menu-item-price .from-text {
  font-size: 12px;
  color: var(--muted);
  font-family: var(--font-body);
}

.menu-item-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.meta-pill {
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--muted);
  background: rgba(201,153,58,0.04);
  padding: 5px 10px;
  border: 0.5px solid var(--border);
}

/* ============================================
   FORMS & COMMENTS
============================================ */
.comment-list { list-style: none; padding: 0; }
.comment-body {
  background: var(--bg2);
  border: 0.5px solid var(--border);
  padding: 24px 28px;
  margin-bottom: 16px;
}
.comment-author { font-weight: 500; color: var(--cream); font-size: 15px; }
.comment-metadata { font-size: 11px; color: var(--muted); margin: 6px 0 16px; }
.comment-content p { font-size: 14px; color: var(--cream2); margin: 0; }

.comment-form input,
.comment-form textarea {
  width: 100%;
  background: var(--bg2);
  border: 0.5px solid var(--border);
  padding: 14px 16px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
  margin-bottom: 16px;
  display: block;
}
.comment-form input:focus,
.comment-form textarea:focus { border-color: var(--border-hover); }
.comment-form input::placeholder,
.comment-form textarea::placeholder { color: var(--muted); }
.comment-form label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 8px;
}
.comment-form .submit {
  background: var(--gold);
  color: var(--bg);
  border: none;
  padding: 14px 36px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
}
.comment-form .submit:hover { background: var(--gold2); }

/* ============================================
   BUTTONS
============================================ */
.btn, button[type="submit"], input[type="submit"] {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 14px 36px;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s;
  line-height: 1;
}
.btn:hover, button[type="submit"]:hover, input[type="submit"]:hover {
  background: var(--gold2);
  color: var(--bg);
}
.btn-outline {
  background: transparent;
  border: 0.5px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--bg); }

/* ============================================
   FOOTER
============================================ */
#colophon {
  background: #060504;
  border-top: 0.5px solid rgba(201,153,58,0.12);
  padding: 80px 60px 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 0.5px solid rgba(201,153,58,0.08);
}

.footer-brand-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 6px;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
  text-decoration: none;
}

.footer-tagline {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  opacity: 1;
}

.footer-widget-title {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-family: var(--font-body);
  font-weight: 400;
}

.footer-widget ul {
  list-style: none;
  padding: 0;
}
.footer-widget ul li {
  margin-bottom: 12px;
  border: none;
  padding: 0;
}
.footer-widget ul li a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
  letter-spacing: 0.5px;
}
.footer-widget ul li a:hover { color: var(--cream); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-copy {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 1px;
}

/* ============================================
   SEO TOOLS — SEARCH PAGE
============================================ */
.search-results-header {
  padding: 120px 60px 40px;
  max-width: 1280px;
  margin: 0 auto;
}
.search-results-header h1 {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 300;
}
.search-results-header h1 span { color: var(--gold); font-family: var(--font-display); font-size: 24px; }
.search-form-full {
  display: flex;
  gap: 0;
  max-width: 600px;
  margin: 24px 0 0;
}
.search-form-full .search-field {
  flex: 1;
  background: var(--bg2);
  border: 0.5px solid var(--border);
  border-right: none;
  padding: 16px 20px;
  color: var(--cream);
  font-size: 16px;
  font-family: var(--font-body);
  outline: none;
}
.search-form-full .search-submit {
  background: var(--gold);
  color: var(--bg);
  border: none;
  padding: 16px 28px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background 0.3s;
}
.search-form-full .search-submit:hover { background: var(--gold2); }

/* ============================================
   404 PAGE
============================================ */
.error-404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 60px;
}
.error-404-inner { max-width: 600px; }
.error-404-num {
  font-family: var(--font-display);
  font-size: 180px;
  font-weight: 900;
  color: rgba(201,153,58,0.06);
  line-height: 1;
  margin-bottom: -20px;
}
.error-404-title {
  font-size: 36px;
  color: var(--cream);
  margin-bottom: 16px;
}
.error-404-desc {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 36px;
}

/* ============================================
   HERO (Front Page)
============================================ */
.hero-section {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 80px 80px;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  animation: fadeSlide 0.8s ease 0.2s both;
}
.hero-eyebrow::before {
  content: '';
  width: 36px; height: 0.5px;
  background: var(--gold);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 6vw, 100px);
  line-height: 0.92;
  font-weight: 900;
  color: var(--cream);
  margin-bottom: 10px;
  animation: fadeSlide 0.8s ease 0.4s both;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.hero-tagline {
  font-family: var(--font-italic);
  font-size: 20px;
  font-style: italic;
  color: var(--cream2);
  margin-bottom: 48px;
  line-height: 1.5;
  max-width: 380px;
  animation: fadeSlide 0.8s ease 0.6s both;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  animation: fadeSlide 0.8s ease 0.8s both;
}
.hero-right {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1208, #0d0b06);
}
.hero-right-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 60% 40%, rgba(201,153,58,0.14) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(201,153,58,0.07) 0%, transparent 40%);
}
.hero-big-char {
  position: absolute;
  bottom: -20px; right: -30px;
  font-family: var(--font-display);
  font-size: 240px;
  font-weight: 900;
  color: rgba(201,153,58,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  animation: fadeSlide 1s ease 0.3s both;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px; left: 80px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-line {
  width: 48px; height: 0.5px;
  background: var(--muted);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--gold);
  animation: scrollAnim 2s ease infinite;
}

/* ============================================
   MARQUEE
============================================ */
.marquee-bar {
  padding: 18px 0;
  border-top: 0.5px solid rgba(201,153,58,0.12);
  border-bottom: 0.5px solid rgba(201,153,58,0.12);
  overflow: hidden;
  background: var(--bg2);
}
.marquee-track {
  display: flex;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
  gap: 80px;
  width: max-content;
}
.marquee-item {
  font-family: var(--font-italic);
  font-size: 15px;
  font-style: italic;
  color: var(--muted);
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.marquee-dot {
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================
   SECTION COMPONENTS
============================================ */
.section-label {
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-body);
}
.section-label::before {
  content: '';
  width: 28px; height: 0.5px;
  background: var(--gold);
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.05;
}
.section-heading em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

/* ============================================
   ANIMATIONS
============================================ */
@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollAnim {
  0% { left: -100%; }
  100% { left: 100%; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1100px) {
  #site-header { padding: 20px 32px; }
  .hero-section { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 120px 40px 80px; }
  .content-area { padding: 100px 32px 60px; grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  #colophon { padding: 60px 32px 32px; }
  .menu-items-grid { grid-template-columns: 1fr 1fr; }
  .posts-grid { grid-template-columns: 1fr; }
  .related-posts-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  #site-header { padding: 16px 24px; }
  #site-navigation { display: none; }
  #site-navigation.open { display: block; position: fixed; top: 72px; left: 0; right: 0; background: rgba(10,9,5,0.98); padding: 24px; border-bottom: 0.5px solid var(--border); }
  #site-navigation.open ul { flex-direction: column; gap: 0; }
  #site-navigation.open ul li a { display: block; padding: 16px 0; font-size: 14px; letter-spacing: 2px; }
  .menu-toggle { display: flex; }
  .hero-left { padding: 100px 24px 60px; }
  .hero-title { font-size: 52px; }
  .content-area { padding: 90px 24px 40px; }
  .menu-items-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  #colophon { padding: 48px 24px 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-banner { padding: 0 24px 40px; min-height: 280px; }
  .related-posts-grid { grid-template-columns: 1fr; }
}

/* ============================================
   WORDPRESS SPECIFIC
============================================ */
.wp-block-image { margin: 32px 0; }
.alignleft { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.aligncenter { margin-left: auto; margin-right: auto; text-align: center; }
.alignwide { margin-left: -60px; margin-right: -60px; }
.alignfull { margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%); }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 12px; color: var(--muted); text-align: center; margin-top: 8px; }
.sticky { border-left: 2px solid var(--gold); padding-left: 24px; }
.bypostauthor {}
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
