/*
Theme Name: Noir & Flame
Theme URI: https://example.com/noir-flame
Author: Claude / Anthropic
Author URI: https://anthropic.com
Description: A bold, dark, cinematic restaurant WordPress theme. Deep blacks, red fire accents, animated hero, filterable menu CPT, reservation form with AJAX, and fully mobile-responsive layouts.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: noir-flame
Tags: restaurant, dark, modern, food, custom-menu, full-width-template, custom-colors, featured-images, animation
*/

/* ══════════════════════════════════════════════════
   DESIGN TOKENS
══════════════════════════════════════════════════ */
:root {
  --black:      #0A0A0A;
  --dark:       #111111;
  --dark2:      #181818;
  --dark3:      #222222;
  --card:       #161616;
  --red:        #E8192C;
  --red-dk:     #C0101F;
  --red-glow:   rgba(232,25,44,0.25);
  --gold:       #D4A843;
  --white:      #FFFFFF;
  --off:        #F5F0EB;
  --muted:      #888888;
  --border:     rgba(255,255,255,0.07);
  --display:    'Playfair Display', Georgia, serif;
  --body:       'Outfit', system-ui, sans-serif;
  --ease:       0.3s ease;
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  50px;
}

/* ══════════════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; transition: color var(--ease); }
ul  { list-style: none; }
button { font-family: var(--body); cursor: pointer; }

/* ══════════════════════════════════════════════════
   CUSTOM CURSOR
══════════════════════════════════════════════════ */
.nf-cursor {
  position: fixed; width: 12px; height: 12px;
  background: var(--red); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .3s, height .3s, background .3s;
}
.nf-cursor-ring {
  position: fixed; width: 36px; height: 36px;
  border: 1px solid rgba(232,25,44,0.5); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .3s, height .3s, border-color .3s;
}
.nf-cursor.grow      { width: 20px; height: 20px; }
.nf-cursor-ring.grow { width: 52px; height: 52px; border-color: var(--red); }

/* ══════════════════════════════════════════════════
   TYPOGRAPHY
══════════════════════════════════════════════════ */
h1, h2, h3, h4, h5 { font-family: var(--display); font-weight: 700; line-height: 1.1; }
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.2rem; }
p  { max-width: 65ch; }

/* ══════════════════════════════════════════════════
   LAYOUT
══════════════════════════════════════════════════ */
.nf-container {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 5vw, 3rem);
}
.section { padding-block: clamp(5rem, 10vw, 9rem); }
.section--sm { padding-block: clamp(3rem, 6vw, 5rem); }
.section--dark  { background: var(--dark); }
.section--black { background: var(--black); }

/* Section label */
.nf-label {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem;
}
.nf-label::before { content: ''; width: 32px; height: 2px; background: var(--red); border-radius: 2px; }
.nf-label span {
  font-size: .72rem; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--red);
}
.nf-label--center { justify-content: center; }

/* ══════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════ */
.nf-btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .85rem 2rem; border-radius: var(--radius-xl);
  font-size: .82rem; font-weight: 600; letter-spacing: .08em;
  transition: all var(--ease); border: none; cursor: pointer;
}
.nf-btn--red     { background: var(--red); color: var(--white); }
.nf-btn--red:hover { background: var(--red-dk); transform: translateY(-2px); box-shadow: 0 12px 32px var(--red-glow); }
.nf-btn--outline { background: transparent; border: 1.5px solid rgba(255,255,255,.3); color: var(--white); }
.nf-btn--outline:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }
.nf-btn--outline-red { background: transparent; border: 1.5px solid var(--red); color: var(--red); }
.nf-btn--outline-red:hover { background: var(--red); color: var(--white); transform: translateY(-2px); }
.nf-btn--full { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════════════
   BADGES
══════════════════════════════════════════════════ */
.nf-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .25rem .7rem; border-radius: var(--radius-xl);
  font-size: .68rem; font-weight: 600; letter-spacing: .05em;
}
.nf-badge--red  { background: rgba(232,25,44,.15); color: var(--red); border: 1px solid rgba(232,25,44,.3); }
.nf-badge--gold { background: rgba(212,168,67,.12); color: var(--gold); border: 1px solid rgba(212,168,67,.3); }

/* ══════════════════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding-block: 1.4rem;
  transition: background .4s, padding .4s, box-shadow .4s;
}
.site-header.scrolled {
  background: rgba(10,10,10,.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding-block: .9rem;
  box-shadow: 0 4px 30px rgba(0,0,0,.4);
}
.nf-nav {
  display: flex; align-items: center; justify-content: space-between;
}
.site-logo {
  font-family: var(--display); font-size: 1.6rem; font-weight: 900;
  color: var(--white); letter-spacing: .02em; transition: opacity var(--ease);
}
.site-logo:hover { opacity: .8; }
.site-logo span  { color: var(--red); }

.primary-menu {
  display: flex; align-items: center; gap: 2.5rem;
}
.primary-menu a, .primary-menu .menu-item > a {
  font-size: .78rem; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.6);
  position: relative; padding-bottom: 3px; transition: color var(--ease);
}
.primary-menu a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--red);
  border-radius: 2px; transition: width var(--ease);
}
.primary-menu a:hover,
.primary-menu .current-menu-item > a { color: var(--white); }
.primary-menu a:hover::after,
.primary-menu .current-menu-item > a::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-cart {
  position: relative; background: none; border: none;
  color: var(--white); font-size: 1.3rem; opacity: .7; transition: opacity var(--ease);
}
.nav-cart:hover { opacity: 1; }
.cart-badge {
  position: absolute; top: -6px; right: -6px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--red); font-size: .58rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.nav-book {
  background: var(--red); color: var(--white); border: none;
  padding: .6rem 1.5rem; border-radius: var(--radius-xl);
  font-size: .78rem; font-weight: 600; letter-spacing: .06em;
  transition: background var(--ease), transform .2s, box-shadow var(--ease);
}
.nav-book:hover {
  background: var(--red-dk); transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--red-glow);
}

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
  position: relative; z-index: 201;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav overlay */
.mobile-nav-overlay {
  position: fixed; inset: 0; z-index: 199;
  background: rgba(10,10,10,.97);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2.5rem;
  opacity: 0; pointer-events: none; transition: opacity .4s;
}
.mobile-nav-overlay.open { opacity: 1; pointer-events: all; }
.mobile-nav-overlay a {
  font-family: var(--display); font-size: clamp(2.2rem,8vw,3.5rem);
  color: rgba(255,255,255,.6); transition: color var(--ease);
}
.mobile-nav-overlay a:hover { color: var(--red); }
.mobile-nav-overlay .mob-book { margin-top: 1rem; }

/* ══════════════════════════════════════════════════
   HERO (HOMEPAGE)
══════════════════════════════════════════════════ */
.hero {
  min-height: 100vh; display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center; gap: 4rem;
  padding-top: 8rem; padding-bottom: 5rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute;
  top: -30%; right: -10%; width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,25,44,.13) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute;
  bottom: -20%; left: -10%; width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,25,44,.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero__left  { position: relative; z-index: 2; }
.hero__right { display: flex; align-items: center; justify-content: center; position: relative; z-index: 2; }

.hero__tagline { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.5rem; animation: fadeUp .9s .2s both; }
.hero__tagline::before { content: ''; width: 28px; height: 2px; background: var(--red); }
.hero__tagline span { font-size: .72rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--red); }

.hero__title {
  font-size: clamp(2.8rem, 5vw, 5rem); font-weight: 900;
  line-height: 1.05; margin-bottom: 1.5rem;
  animation: fadeUp .9s .35s both;
}
.hero__title em { font-style: italic; color: var(--red); }

.hero__desc {
  color: var(--muted); font-size: 1rem; max-width: 44ch;
  line-height: 1.9; margin-bottom: 2.5rem;
  animation: fadeUp .9s .5s both;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; animation: fadeUp .9s .65s both; }

/* Reviews row */
.hero__reviews { display: flex; align-items: center; gap: 1.5rem; animation: fadeUp .9s .8s both; }
.review-avatars { display: flex; }
.review-avatars img {
  width: 38px; height: 38px; border-radius: 50%;
  border: 2.5px solid var(--black); margin-right: -10px; object-fit: cover;
}
.review-avatars .rc {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--red); font-size: .65rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2.5px solid var(--black);
}
.review-meta { font-size: .78rem; color: var(--muted); }
.review-stars { color: var(--gold); font-size: .9rem; }
.review-score { font-weight: 600; color: var(--white); margin-left: .3rem; }

/* Dish orbit */
.dish-orbit { position: relative; width: 460px; height: 460px; }
.dish-orbit__ring {
  width: 100%; height: 100%; border-radius: 50%;
  background: var(--dark2);
  box-shadow: 0 0 0 1px var(--border), 0 40px 100px rgba(0,0,0,.6);
  overflow: hidden; display: flex; align-items: center; justify-content: center;
  animation: dishSpin 20s linear infinite;
}
.dish-orbit__ring img {
  width: 90%; height: 90%; object-fit: cover; border-radius: 50%;
  animation: counterSpin 20s linear infinite;
}
.orbit-sat { position: absolute; animation: orbitFloat 8s ease-in-out infinite; }
.orbit-sat:nth-child(2) { top: -20px; right: 30px; animation-delay: 0s; }
.orbit-sat:nth-child(3) { bottom: 20px; right: -10px; animation-delay: -2.5s; }
.orbit-sat:nth-child(4) { bottom: -20px; left: 30px; animation-delay: -5s; }
.orbit-sat img {
  width: 90px; height: 90px; border-radius: 50%; object-fit: cover;
  border: 3px solid var(--dark2); box-shadow: 0 12px 32px rgba(0,0,0,.5);
}

/* Hero deco floaters */
.hero-deco { position: absolute; pointer-events: none; font-size: 2.5rem; animation: floatEl 6s ease-in-out infinite; }
.hero-deco-1 { top: 12%; right: 6%; animation-delay: 0s; }
.hero-deco-2 { bottom: 20%; left: 4%; font-size: 2rem; animation-delay: -3s; }
.hero-deco-3 { top: 55%; right: 2%; font-size: 1.8rem; animation-delay: -1.5s; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: var(--muted); font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; z-index: 2;
}
.scroll-indicator::after {
  content: ''; width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* ══════════════════════════════════════════════════
   TICKER MARQUEE
══════════════════════════════════════════════════ */
.nf-ticker { background: var(--red); padding-block: .9rem; overflow: hidden; }
.nf-ticker__track {
  display: flex; gap: 3rem; white-space: nowrap;
  animation: ticker 22s linear infinite;
}
.nf-ticker__item {
  display: flex; align-items: center; gap: 1rem;
  font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
}
.nf-ticker__dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.4); }

/* ══════════════════════════════════════════════════
   FOOD CARDS
══════════════════════════════════════════════════ */
.nf-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform .4s, box-shadow .4s, border-color .4s;
}
.nf-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
  border-color: rgba(232,25,44,.3);
}
.nf-card__img {
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem; background: var(--dark2); overflow: hidden;
}
.nf-card__img img {
  width: 160px; height: 160px; border-radius: 50%; object-fit: cover;
  box-shadow: 0 16px 40px rgba(0,0,0,.5);
  transition: transform .5s;
}
.nf-card:hover .nf-card__img img { transform: scale(1.07) rotate(3deg); }
.nf-card__body    { padding: 1.2rem 1.5rem 1.5rem; }
.nf-card__badges  { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: .7rem; }
.nf-card__name    { font-family: var(--display); font-size: 1.15rem; margin-bottom: .3rem; }
.nf-card__sub     { font-size: .82rem; color: var(--muted); margin-bottom: 1rem; line-height: 1.6; }
.nf-card__foot    { display: flex; align-items: center; justify-content: space-between; }
.nf-card__price   { font-size: 1.2rem; font-weight: 700; color: var(--red); }
.nf-card__add {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--red); border: none; color: var(--white);
  font-size: 1.2rem; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: transform .3s, box-shadow .3s;
}
.nf-card__add:hover { transform: scale(1.15); box-shadow: 0 8px 20px var(--red-glow); }

/* Cards grid */
.nf-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

/* ══════════════════════════════════════════════════
   WHY CHOOSE US SECTION
══════════════════════════════════════════════════ */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.why-img-wrap  { position: relative; }
.why-img-main  { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; }
.why-img-main img { width: 100%; height: 100%; object-fit: cover; }
.why-img-badge {
  position: absolute; bottom: 2rem; right: -2rem;
  background: var(--red); border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem; text-align: center;
  box-shadow: 0 16px 40px var(--red-glow);
}
.why-img-badge .num { font-family: var(--display); font-size: 2.5rem; font-weight: 900; line-height: 1; display: block; }
.why-img-badge .lbl { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; opacity: .85; }

.why-title { font-size: clamp(2rem,4vw,3rem); margin-bottom: 1.2rem; }
.why-title em { color: var(--red); font-style: italic; }
.why-desc  { color: var(--muted); line-height: 1.9; margin-bottom: 2.5rem; }

.why-features { display: flex; flex-direction: column; gap: 2rem; }
.why-feature  { display: flex; gap: 1.2rem; align-items: flex-start; }
.why-icon {
  width: 52px; height: 52px; border-radius: var(--radius-sm); flex-shrink: 0;
  background: var(--dark2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
  transition: background var(--ease), border-color var(--ease);
}
.why-feature:hover .why-icon { background: rgba(232,25,44,.1); border-color: var(--red); }
.why-feature h4 { font-family: var(--display); font-size: 1.05rem; margin-bottom: .3rem; }
.why-feature p  { font-size: .88rem; color: var(--muted); line-height: 1.7; }

/* ══════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════ */
.testimonial-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: box-shadow .4s, border-color .4s;
}
.testimonial-card:hover { box-shadow: 0 20px 50px rgba(0,0,0,.4); border-color: rgba(232,25,44,.2); }
.testi-stars   { color: var(--gold); font-size: .9rem; margin-bottom: 1rem; }
.testi-text    { color: var(--muted); font-style: italic; font-size: .92rem; line-height: 1.8; margin-bottom: 1.5rem; }
.testi-author  { display: flex; align-items: center; gap: .9rem; }
.testi-author img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.testi-name    { font-weight: 600; font-size: .9rem; }
.testi-role    { font-size: .75rem; color: var(--muted); }

/* ══════════════════════════════════════════════════
   PAGE BANNERS (inner pages)
══════════════════════════════════════════════════ */
.page-banner {
  padding-top: 9rem; padding-bottom: 4rem;
  background: var(--dark); text-align: center;
  position: relative; overflow: hidden;
}
.page-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(232,25,44,.1) 0%, transparent 65%);
}
.page-banner h1 { position: relative; }
.page-banner h1 em { color: var(--red); font-style: italic; }
.page-banner p  { color: var(--muted); margin-inline: auto; margin-top: 1rem; position: relative; }

/* ══════════════════════════════════════════════════
   MENU PAGE
══════════════════════════════════════════════════ */
.menu-cats {
  display: flex; flex-wrap: wrap; gap: .8rem;
  justify-content: center; margin-top: 2.5rem; position: relative;
}
.cat-btn {
  padding: .6rem 1.5rem; border-radius: var(--radius-xl);
  font-size: .78rem; font-weight: 600; letter-spacing: .06em;
  background: var(--dark2); border: 1px solid var(--border);
  color: var(--muted); transition: all var(--ease); cursor: pointer;
}
.cat-btn:hover, .cat-btn.active { background: var(--red); border-color: var(--red); color: var(--white); }

.menu-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.8rem;
}
.menu-item-row {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 1rem; padding-block: 1.4rem;
  border-bottom: 1px solid var(--border);
}
.menu-item-row:last-child { border-bottom: none; }
.menu-item-row__name { font-family: var(--display); font-size: 1.1rem; display: block; margin-bottom: .3rem; }
.menu-item-row__desc { font-size: .82rem; color: var(--muted); max-width: 30ch; }
.menu-item-row__price { font-family: var(--display); font-size: 1.05rem; color: var(--red); white-space: nowrap; }

/* ══════════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════════ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img-stack { position: relative; padding-bottom: 3rem; }
.about-img-main  { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-float {
  position: absolute; bottom: 0; right: -1.5rem; width: 55%;
  border-radius: var(--radius-md); overflow: hidden;
  border: 4px solid var(--black); box-shadow: 0 20px 50px rgba(0,0,0,.5);
}
.about-img-float img { width: 100%; height: 200px; object-fit: cover; }

.stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; padding-block: 4rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-item         { text-align: center; }
.stat-item .num    { font-family: var(--display); font-size: 3rem; font-weight: 900; color: var(--red); display: block; line-height: 1; }
.stat-item .lbl    { font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin-top: .5rem; display: block; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.team-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; text-align: center;
  transition: transform .4s, border-color .4s;
}
.team-card:hover { transform: translateY(-6px); border-color: rgba(232,25,44,.3); }
.team-card img   { width: 100%; height: 220px; object-fit: cover; object-position: top; }
.team-card__body { padding: 1.5rem; }
.team-card h3    { font-family: var(--display); font-size: 1.2rem; margin-bottom: .3rem; }
.team-card .role { font-size: .75rem; color: var(--red); letter-spacing: .1em; text-transform: uppercase; font-weight: 600; }
.team-card p     { font-size: .85rem; color: var(--muted); margin-top: .8rem; line-height: 1.7; }

/* ══════════════════════════════════════════════════
   CONTACT / RESERVATIONS PAGE
══════════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; }

.info-cards { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 2.5rem; }
.info-card {
  display: flex; gap: 1.2rem; align-items: center;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 1.2rem 1.5rem;
  transition: border-color var(--ease);
}
.info-card:hover { border-color: rgba(232,25,44,.4); }
.info-card__icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm); flex-shrink: 0;
  background: rgba(232,25,44,.1); border: 1px solid rgba(232,25,44,.2);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.info-card h4 { font-size: .9rem; font-weight: 600; margin-bottom: .2rem; }
.info-card p  { font-size: .85rem; color: var(--muted); margin: 0; }

.contact-form-wrap {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.5rem;
}
.contact-form-wrap h2  { font-family: var(--display); font-size: 1.8rem; margin-bottom: .4rem; }
.contact-form-wrap .sub { font-size: .88rem; color: var(--muted); margin-bottom: 2rem; }

.nf-form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.nf-form-group { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1rem; }
.nf-form-group label {
  font-size: .72rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.45);
}
.nf-form-group input,
.nf-form-group select,
.nf-form-group textarea {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .9rem 1.1rem; font-family: var(--body); font-size: .92rem;
  color: var(--white); outline: none; transition: border-color var(--ease); resize: none;
}
.nf-form-group input:focus,
.nf-form-group select:focus,
.nf-form-group textarea:focus { border-color: var(--red); }
.nf-form-group input::placeholder,
.nf-form-group textarea::placeholder { color: rgba(255,255,255,.2); }
.nf-form-group select { appearance: none; cursor: pointer; }
.nf-form-group textarea { min-height: 130px; }

.form-success {
  display: none;
  background: rgba(232,25,44,.1); border: 1px solid rgba(232,25,44,.3);
  border-radius: var(--radius-sm); padding: 1.2rem 1.5rem;
  margin-bottom: 1.5rem; color: var(--white);
}

/* Map placeholder */
.nf-map {
  height: 320px; background: var(--dark); position: relative;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.nf-map::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(232,25,44,.08) 0%, transparent 65%);
}
.nf-map-inner { text-align: center; position: relative; z-index: 2; }
.nf-map-inner .icon { font-size: 3rem; margin-bottom: 1rem; }
.nf-map-inner h3 { font-family: var(--display); font-size: 1.5rem; margin-bottom: .5rem; }
.nf-map-inner p  { color: var(--muted); font-size: .9rem; }

/* ══════════════════════════════════════════════════
   BLOG / POSTS
══════════════════════════════════════════════════ */
.post-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform .4s, box-shadow .4s;
  display: flex; flex-direction: column;
}
.post-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.4); }
.post-card__img  { overflow: hidden; aspect-ratio: 16/9; }
.post-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.post-card:hover .post-card__img img { transform: scale(1.06); }
.post-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.post-card__meta { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--red); margin-bottom: .7rem; }
.post-card h3    { font-family: var(--display); font-size: 1.2rem; margin-bottom: .7rem; }
.post-card p     { font-size: .88rem; color: var(--muted); line-height: 1.7; flex: 1; }
.post-card__link { font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--red); margin-top: 1.2rem; transition: opacity var(--ease); }
.post-card__link:hover { opacity: .7; }

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

/* Entry content (single post) */
.entry-content {
  max-width: 780px; margin-inline: auto;
  padding-block: clamp(3rem,8vw,6rem);
  color: rgba(255,255,255,.8);
}
.entry-content h2, .entry-content h3 { margin-block: 2rem 1rem; }
.entry-content p  { margin-bottom: 1.2rem; line-height: 1.9; }
.entry-content ul, .entry-content ol { padding-left: 1.5rem; margin-bottom: 1.2rem; }
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content blockquote {
  border-left: 3px solid var(--red); padding-left: 1.5rem;
  margin-block: 2rem; font-family: var(--display); font-size: 1.4rem;
  color: var(--muted); font-style: italic;
}
.entry-content img { border-radius: var(--radius-md); margin-block: 1.5rem; }
.entry-content a   { color: var(--red); border-bottom: 1px solid rgba(232,25,44,.3); }
.entry-content a:hover { border-bottom-color: var(--red); }

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.site-footer {
  background: var(--dark); border-top: 1px solid var(--border);
  padding-block: clamp(3.5rem,7vw,5rem) 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(2rem,4vw,3.5rem); margin-bottom: 3rem;
}
.footer-brand .site-logo { display: block; margin-bottom: 1rem; }
.footer-brand p { font-size: .88rem; color: var(--muted); max-width: 28ch; line-height: 1.8; }
.footer-social  { display: flex; gap: .8rem; margin-top: 1.5rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--dark2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: .85rem;
  transition: background var(--ease), border-color var(--ease);
}
.footer-social a:hover { background: var(--red); border-color: var(--red); }

.footer-col h4 {
  font-family: var(--body); font-size: .72rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.45); margin-bottom: 1.2rem;
}
.footer-col ul li { margin-bottom: .7rem; }
.footer-col ul a  { font-size: .88rem; color: var(--muted); transition: color var(--ease); }
.footer-col ul a:hover { color: var(--red); }
.footer-col address { font-size: .88rem; color: var(--muted); font-style: normal; line-height: 1.8; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem; border-top: 1px solid var(--border);
  font-size: .8rem; color: var(--muted); flex-wrap: wrap; gap: 1rem;
}

/* ══════════════════════════════════════════════════
   404 PAGE
══════════════════════════════════════════════════ */
.error-404 {
  min-height: 80vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding-top: 8rem;
}
.error-404 .big-num { font-family: var(--display); font-size: clamp(6rem,15vw,12rem); font-weight: 900; color: var(--red); line-height: 1; }
.error-404 h2 { font-family: var(--display); font-size: 2rem; margin-bottom: .8rem; }
.error-404 p  { color: var(--muted); margin-inline: auto; margin-bottom: 2rem; }

/* ══════════════════════════════════════════════════
   SEARCH FORM
══════════════════════════════════════════════════ */
.search-form { display: flex; gap: .8rem; }
.search-form input {
  flex: 1; background: var(--dark2); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: .75rem 1.2rem;
  font-family: var(--body); font-size: .92rem; color: var(--white); outline: none;
}
.search-form input:focus { border-color: var(--red); }
.search-form button {
  padding: .75rem 1.5rem; border-radius: var(--radius-xl);
  background: var(--red); border: none; color: var(--white);
  font-family: var(--body); font-size: .85rem; font-weight: 600; cursor: pointer;
  transition: background var(--ease);
}
.search-form button:hover { background: var(--red-dk); }

/* WordPress: align classes */
.alignwide  { max-width: 1100px; margin-inline: auto; }
.alignfull  { width: 100vw; position: relative; left: 50%; transform: translateX(-50%); }
.alignleft  { float: left; margin-right: 2rem; margin-bottom: 1rem; }
.alignright { float: right; margin-left: 2rem; margin-bottom: 1rem; }

/* ══════════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════════ */
@keyframes fadeUp    { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:none} }
@keyframes dishSpin  { to{ transform: rotate(360deg) } }
@keyframes counterSpin { to{ transform: rotate(-360deg) } }
@keyframes orbitFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
@keyframes floatEl   { 0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(-16px) rotate(6deg)} }
@keyframes scrollPulse { 0%{opacity:0;transform:scaleY(0)} 50%{opacity:1;transform:scaleY(1)} 100%{opacity:0;transform:scaleY(1)} }
@keyframes ticker    { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* Reveal on scroll */
.nf-reveal { opacity:0; transform:translateY(32px); transition:opacity .7s ease,transform .7s ease; }
.nf-reveal.visible { opacity:1; transform:none; }
.nf-reveal-left  { opacity:0; transform:translateX(-40px); transition:opacity .7s ease,transform .7s ease; }
.nf-reveal-left.visible  { opacity:1; transform:none; }
.nf-reveal-right { opacity:0; transform:translateX(40px); transition:opacity .7s ease,transform .7s ease; }
.nf-reveal-right.visible { opacity:1; transform:none; }
.delay-1{transition-delay:.1s} .delay-2{transition-delay:.2s} .delay-3{transition-delay:.3s}
.delay-4{transition-delay:.4s} .delay-5{transition-delay:.5s}

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero         { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
  .hero__left   { order: 2; }
  .hero__right  { order: 1; }
  .hero__actions, .hero__reviews { justify-content: center; }
  .hero__desc   { margin-inline: auto; }
  .why-grid     { grid-template-columns: 1fr; gap: 3rem; }
  .why-img-wrap { max-width: 480px; margin-inline: auto; }
  .about-grid   { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid  { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-strip  { grid-template-columns: repeat(2, 1fr); }
  .team-grid    { grid-template-columns: 1fr 1fr; }
  .posts-grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .primary-menu, .nav-right { display: none; }
  .hamburger { display: flex; }
  .dish-orbit { width: 300px; height: 300px; }
  .orbit-sat img { width: 65px; height: 65px; }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .nf-btn { width: 100%; max-width: 300px; justify-content: center; }
  .why-img-badge { right: -1rem; bottom: 1.5rem; }
  .team-grid  { grid-template-columns: 1fr; }
  .posts-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .nf-form-row { grid-template-columns: 1fr; }
  .about-img-float { display: none; }
}

@media (max-width: 480px) {
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .menu-cats   { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; scrollbar-width: none; }
  .menu-cats::-webkit-scrollbar { display: none; }
  .cat-btn { flex-shrink: 0; }
  .dish-orbit { width: 260px; height: 260px; }
}
