:root {
  --blackstone-black: #111111;
  --blackstone-charcoal: #222222;
  --blackstone-orange: #f36c21;
  --blackstone-light: #f5f5f5;
  --blackstone-red: #B22222;
  --white: #ffffff;
  --gray-100: #f8f8f8;
  --gray-200: #e5e5e5;
  --gray-300: #cccccc;
  --gray-600: #666666;
  --gray-800: #333333; }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

body {
  font-family: "Source Sans Pro", sans-serif;
  background: #fff;
  color: #333;
  max-width: 99.9%; }

.container {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto; }

.top-bar {
  background: var(--blackstone-charcoal);
  padding: 10px 0;
  color: #000000;
  max-width: 100%;
  overflow-x: hidden; }

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  overflow-x: hidden; }

.logo img {
  max-height: 140px;
  width: auto; }

.social-icons {
  display: flex;
  gap: 20px; }

.social-icons a {
  color: var(--blackstone-light);
  text-decoration: none; }

.social-icons a:hover {
  color: #f36c21; }

.site-footer {
  background: var(--blackstone-black);
  color: var(--blackstone-light);
  margin-top: 80px;
  padding: 60px 0;
  max-width: 100%;
  overflow-x: hidden; }

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px; }

.footer-column h3 {
  color: var(--blackstone-orange);
  margin-bottom: 15px; }

.footer-column ul {
  list-style: none; }

.footer-column a {
  color: #fff;
  text-decoration: none; }

.footer-column a:hover {
  color: var(--blackstone-orange); }

.copyright {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1); }

.hero {
  min-height: 650px;
  background-size: cover;
  background-position: center;
  position: relative; }

.hero-overlay {
  min-height: 650px;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center; }

.hero-content {
  max-width: 700px;
  color: var(--white); }

.hero-content h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 20px; }

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 30px; }

.hero-buttons {
  display: flex;
  gap: 15px; }

.featured-categories {
  padding: 80px 0;
  background: var(--blackstone-light); }

.section-heading {
  text-align: center;
  margin-bottom: 50px; }

.section-heading h2 {
  font-size: 2.5rem;
  color: var(--blackstone-black);
  margin-bottom: 15px; }

.section-heading p {
  color: var(--gray-600); }

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px; }

.category-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08); }

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15); }

.category-icon {
  font-size: 3rem;
  margin-bottom: 20px; }

.category-card h3 {
  color: var(--blackstone-orange);
  margin-bottom: 10px; }

.category-card p {
  color: var(--gray-600); }

@media (max-width: 900px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr); } }

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

.latest-recipes {
  padding: 100px 0;
  background: var(--white); }

.latest-recipes .recipe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px; }

.recipe-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease; }

.recipe-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15); }

.recipe-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block; }

.recipe-card-content {
  padding: 25px; }

.recipe-card-content h3 {
  color: var(--blackstone-black);
  margin-bottom: 15px;
  font-size: 1.3rem; }

.preptime {
  background: var(--gray-600);
  color: var(--white);
  text-align: center;
  padding: .9vh; }

.recipe-card-content a {
  text-decoration: none; }

.recipe-card-content p {
  text-decoration: none; }

.recipe-card-meta {
  display: block;
  margin-top: 1vh;
  border-radius: .75vh;
  gap: 15px;
  flex-wrap: wrap;
  font-size: .9rem;
  text-align: center;
  align-content: center;
  align-items: center;
  align-self: center; }

.section-button {
  text-align: center;
  margin-top: 50px; }

@media (max-width: 900px) {
  .latest-recipes .recipe-grid {
    grid-template-columns: 1fr; } }

.recipe-card a {
  text-decoration: none;
  color: inherit;
  display: block; }

.beginners-corner {
  padding: 100px 0;
  background: var(--blackstone-light); }

.guides-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px; }

.guide-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease; }

.guide-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15); }

.guide-card img {
  width: 100%;
  height: 220px;
  object-fit: cover; }

.guide-content {
  padding: 20px; }

.guide-content h3 {
  color: var(--blackstone-black);
  font-size: 1.1rem; }

.guide-card a {
  text-decoration: none;
  color: inherit; }

@media (max-width: 900px) {
  .guides-grid {
    grid-template-columns: repeat(2, 1fr); } }

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

.latest-guides {
  padding: 100px 0;
  background: var(--blackstone-light); }

.guide-badge {
  display: inline-block;
  margin-bottom: 15px;
  padding: 6px 12px;
  background: var(--blackstone-orange);
  color: var(--white);
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px; }

.latest-guides .post-card {
  background: var(--white); }

/* =====================================
   FEATURED REVIEWS
===================================== */
.featured-reviews {
  padding: 100px 0;
  background: #fff; }

.review-score-badge {
  display: inline-block;
  background: var(--blackstone-orange);
  color: #fff;
  padding: 6px 12px;
  border-radius: 50px;
  font-weight: 700;
  margin-bottom: 12px; }

.review-category-badge {
  display: inline-block;
  background: #f5f5f5;
  color: var(--blackstone-black);
  padding: 6px 12px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 12px;
  margin-right: 8px; }

.featured-reviews .review-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: .3s; }

.featured-reviews .review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12); }

.featured-reviews .review-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block; }

.review-card-content {
  padding: 25px; }

.review-card-content h3 {
  margin: 15px 0;
  color: var(--blackstone-black); }

.review-card-content p {
  color: #555;
  line-height: 1.6; }

/* =====================================
   FEATURED PROJECTS
===================================== */
.featured-projects {
  padding: 100px 0;
  background: var(--blackstone-light); }

.project-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: .3s; }

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12); }

.project-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block; }

.project-card-content {
  padding: 25px; }

.project-card-content h3 {
  margin: 15px 0; }

.project-card-content p {
  color: #555;
  line-height: 1.6; }

.project-category-badge {
  display: inline-block;
  background: var(--blackstone-orange);
  color: #fff;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  margin-right: 10px; }

.project-difficulty {
  display: inline-block;
  background: #f0f0f0;
  color: #333;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600; }

/* =====================================
   TRUST SECTION
===================================== */
.trust-section {
  padding: 100px 0;
  background: #ffffff;
  text-align: center; }

.trust-section .container {
  max-width: 850px; }

.trust-section h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: var(--blackstone-black);
  position: relative; }

.trust-section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--blackstone-orange);
  margin: 20px auto 0;
  border-radius: 2px; }

.trust-section p:first-of-type {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blackstone-orange);
  margin-bottom: 20px; }

.trust-section p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 20px; }

.post-hero-image {
  margin-bottom: 50px; }

.post-hero-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block; }

.single-post {
  padding-bottom: 80px; }

.post-title {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 15px;
  color: var(--blackstone-black); }

.post-meta {
  color: var(--gray-600);
  margin-bottom: 40px; }

.post-content {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--gray-800); }

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

.post-content h2 {
  font-size: 2rem;
  margin-top: 60px;
  margin-bottom: 25px;
  color: var(--blackstone-orange);
  border-bottom: 3px solid var(--blackstone-orange);
  padding-bottom: 10px; }

.post-content h3 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 20px; }

.post-content ul,
.post-content ol {
  margin: 25px 0;
  padding-left: 30px; }

.post-content li {
  margin-bottom: 12px; }

.post-content blockquote {
  margin: 40px 0;
  padding: 25px;
  background: var(--blackstone-light);
  border-left: 5px solid var(--blackstone-orange); }

.archive-header {
  padding: 60px 0 40px;
  text-align: center; }

.archive-header h1 {
  font-size: 3rem;
  color: var(--blackstone-black);
  margin-bottom: 15px; }

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px; }

.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 60px; }

.post-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08); }

.post-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  /* This is the default */ }

.post-card-content {
  padding: 25px; }

.post-card a {
  text-decoration: none;
  color: inherit; }

.error-page {
  text-align: center;
  padding: 120px 0; }

.error-page h1 {
  font-size: 6rem;
  color: var(--blackstone-orange); }

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

.container-sm {
  width: 95%;
  max-width: 900px;
  margin: 0 auto; }

.container-sm {
  width: 92%;
  max-width: 850px;
  margin: 0 auto; }

.single-post {
  padding-bottom: 80px; }

.post-header {
  margin-bottom: 40px; }

.post-title {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 15px;
  color: var(--blackstone-black); }

.reading-time {
  color: var(--gray-600);
  font-size: .95rem;
  margin-bottom: 30px; }

.post-content {
  font-size: 1.15rem;
  line-height: 2;
  color: var(--gray-800); }

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

.post-content h2 {
  font-size: 2rem;
  margin-top: 60px;
  margin-bottom: 25px;
  color: var(--blackstone-orange);
  border-bottom: 3px solid var(--blackstone-orange);
  padding-bottom: 10px; }

.post-content h3 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--blackstone-black); }

.post-content h4 {
  font-size: 1.25rem;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--blackstone-black); }

.post-content ul,
.post-content ol {
  margin-bottom: 2rem;
  padding-left: 2rem; }

.post-content li {
  margin-bottom: .75rem; }

.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 40px 0; }

.guide-category-nav {
  margin: 40px 0;
  text-align: center; }

.guide-category-nav ul {
  list-style: none !important;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px; }

.guide-category-nav li {
  list-style: none !important;
  margin: 0;
  padding: 0; }

.guide-category-nav a {
  display: inline-block;
  padding: 12px 24px;
  background: var(--blackstone-light);
  border-radius: 50px;
  text-decoration: none;
  color: var(--blackstone-black);
  font-weight: 600;
  transition: all 0.3s ease; }

.guide-category-nav a:hover {
  background: var(--blackstone-orange);
  color: var(--white); }

.guide-category-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 40px 0 60px; }

.guide-category-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--white);
  color: var(--blackstone-black);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 10px 20px;
  font-size: .95rem;
  border: 2px solid var(--blackstone-orange); }

.guide-category-pill:hover {
  background: var(--blackstone-orange);
  color: var(--white); }

.guide-category-pill.active {
  background: var(--blackstone-orange);
  color: var(--white); }

/* =====================================
   REVIEWS ARCHIVE
===================================== */
.reviews-archive {
  padding: 80px 0; }

.review-category-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 40px 0 60px; }

.review-category-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border: 2px solid var(--blackstone-orange);
  border-radius: 999px;
  background: #fff;
  color: var(--blackstone-black);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease; }

.review-category-pill:hover {
  background: var(--blackstone-orange);
  color: #fff; }

.review-category-pill.active {
  background: var(--blackstone-orange);
  color: #fff; }

/* =====================================
   REVIEW CARDS
===================================== */
.review-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease; }

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12); }

.review-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease; }

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

.review-card-content {
  padding: 25px; }

.review-card-content h2 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--blackstone-black); }

.review-card-content p {
  margin-bottom: 20px;
  color: #555;
  line-height: 1.6; }

/* =====================================
   REVIEW SCORE BADGE
===================================== */
.review-score-badge {
  display: inline-block;
  background: var(--blackstone-orange);
  color: #fff;
  padding: 8px 14px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .9rem;
  margin-bottom: 15px; }

/* =====================================
   REVIEW CATEGORY BADGE
===================================== */
.review-category-badge {
  display: inline-block;
  margin-bottom: 15px;
  padding: 5px 12px;
  background: #f5f5f5;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px; }

/* =====================================
   RESPONSIVE
===================================== */
@media (max-width: 768px) {
  .review-category-nav {
    gap: 10px; }
  .review-category-pill {
    padding: 8px 16px;
    font-size: .9rem; } }

/* =====================================
   SINGLE REVIEW PAGE
===================================== */
.single-review {
  padding-bottom: 80px; }

/* =====================================
   REVIEW SUMMARY BOX
===================================== */
.review-summary-box {
  background: var(--blackstone-light);
  border-left: 6px solid var(--blackstone-orange);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 50px; }

/* =====================================
   REVIEW SCORE
===================================== */
.review-score {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--blackstone-orange);
  margin-bottom: 25px; }

/* =====================================
   PRICE & BEST FOR
===================================== */
.review-price,
.review-best-for {
  margin-bottom: 15px;
  font-size: 1.05rem; }

.review-price strong,
.review-best-for strong {
  color: var(--blackstone-black); }

/* =====================================
   PROS / CONS GRID
===================================== */
.review-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 30px; }

/* =====================================
   PROS
===================================== */
.review-pros h3 {
  color: #2e7d32;
  margin-bottom: 15px; }

.review-pros ul {
  list-style: none;
  padding: 0;
  margin: 0; }

.review-pros li {
  margin-bottom: 10px;
  line-height: 1.6; }

/* =====================================
   CONS
===================================== */
.review-cons h3 {
  color: #c62828;
  margin-bottom: 15px; }

.review-cons ul {
  list-style: none;
  padding: 0;
  margin: 0; }

.review-cons li {
  margin-bottom: 10px;
  line-height: 1.6; }

/* =====================================
   CONTENT
===================================== */
.single-review .post-content {
  font-size: 1.15rem;
  line-height: 2;
  color: #333; }

.single-review .post-content p {
  margin-bottom: 1.75rem; }

.single-review .post-content h2 {
  font-size: 2rem;
  margin-top: 60px;
  margin-bottom: 25px;
  color: var(--blackstone-orange);
  border-bottom: 3px solid var(--blackstone-orange);
  padding-bottom: 10px; }

.single-review .post-content h3 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--blackstone-black); }

.single-review .post-content ul,
.single-review .post-content ol {
  margin-bottom: 2rem;
  padding-left: 2rem; }

.single-review .post-content li {
  margin-bottom: .75rem; }

.single-review .post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 40px 0; }

/* =====================================
   MOBILE
===================================== */
@media (max-width: 768px) {
  .review-columns {
    grid-template-columns: 1fr;
    gap: 20px; }
  .review-score {
    font-size: 3rem; } }

/* =====================================
   PROJECTS
===================================== */
.project-summary-box {
  background: var(--blackstone-light);
  border-left: 6px solid var(--blackstone-orange);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 50px; }

.project-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px; }

.project-meta-item {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center; }

.project-meta-item strong {
  display: block;
  margin-bottom: 10px;
  color: var(--blackstone-orange); }

.project-meta-item span {
  font-size: 1.1rem;
  font-weight: 600; }

.project-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px; }

.project-tools h3,
.project-materials h3 {
  margin-bottom: 15px;
  color: var(--blackstone-orange); }

.project-tools ul,
.project-materials ul {
  list-style: none;
  padding: 0;
  margin: 0; }

.project-tools li,
.project-materials li {
  margin-bottom: 10px; }

.project-download {
  margin-top: 40px;
  text-align: center; }

.project-download .btn-primary {
  display: inline-block;
  padding: 14px 28px; }

@media (max-width: 768px) {
  .project-meta-grid {
    grid-template-columns: 1fr; }
  .project-columns {
    grid-template-columns: 1fr; } }

.post-card img,
.review-card img,
.project-card img {
  width: 100%;
  height: 220px;
  object-fit: cover; }

.post-card-content,
.review-card-content,
.project-card-content {
  padding: 30px; }

.project-assembly {
  margin: 50px 0;
  padding: 30px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 12px; }

.project-assembly h2 {
  margin-bottom: 20px;
  color: #f36c21;
  font-size: 2rem; }

.assembly-content h3 {
  margin-top: 30px;
  color: #333;
  border-bottom: 2px solid #f36c21;
  padding-bottom: 8px; }

.assembly-content p {
  line-height: 1.8;
  margin-bottom: 15px; }

.assembly-content ul,
.assembly-content ol {
  margin-left: 25px; }

.project-cut-sheet {
  margin: 50px 0; }

.cut-sheet-table {
  width: 100%;
  border-collapse: collapse; }

.cut-sheet-table th {
  background: #f36c21;
  color: #fff;
  padding: 12px;
  text-align: left; }

.cut-sheet-table td {
  padding: 12px;
  border: 1px solid #ddd; }

.cut-sheet-table tr:nth-child(even) {
  background: #f8f8f8; }

.project-assembly ol {
  counter-reset: step-counter;
  list-style: none;
  padding: 0;
  margin: 0; }

.project-assembly li {
  margin-bottom: 25px;
  padding: 20px;
  background: #f8f8f8;
  border-left: 5px solid #f36c21;
  border-radius: 8px; }

.project-assembly li strong {
  display: block;
  font-size: 1.1rem;
  color: #222;
  margin-bottom: 8px; }

.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px; }

.guide-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08); }

.guide-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover; }

.guide-card h2 {
  margin: 0;
  font-size: 18px; }

.guide-card p {
  padding: 0 20px 20px; }

/*

.single-guide{
    padding:60px 0;
}
*/
.guide-featured-image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover; }

.guide-header {
  max-width: 900px;
  margin: 40px auto; }

.guide-header h1 {
  margin-bottom: 15px; }

.guide-subtitle {
  font-size: 1.2rem;
  color: #666; }

.guide-meta {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  font-weight: 600; }

.guide-content {
  max-width: 900px;
  margin: auto; }

.guide-archive {
  padding: 60px 0; }

.archive-header {
  text-align: center;
  margin-bottom: 50px; }

.archive-header h1 {
  font-size: 36px;
  margin-bottom: 15px; }

.archive-header p {
  max-width: 700px;
  margin: auto;
  color: #666; }

.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px; }

.guide-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: .3s; }

.guide-card:hover {
  transform: translateY(-5px); }

.guide-card a {
  text-decoration: none;
  color: inherit; }

.guide-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover; }

.guide-content {
  padding: 15px; }

.guide-category {
  display: inline-block;
  background: var(--blackstone-orange);
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 12px; }

.guide-content h2 {
  font-size: 16px;
  margin-bottom: 10px; }

.guide-subtitle {
  color: #666;
  margin-bottom: 15px; }

.guide-meta {
  display: flex;
  gap: 15px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blackstone-orange); }

.guide-category-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px; }

.guide-category-nav a {
  padding: 10px 18px;
  background: #f5f5f5;
  border-radius: 30px;
  text-decoration: none;
  color: #111;
  font-weight: 600;
  transition: .3s; }

.guide-category-nav a:hover {
  background: var(--blackstone-orange);
  color: #fff; }

.guide-category-nav a.active {
  background: var(--blackstone-orange);
  color: #fff; }

/*
=========================================
Single Guide
=========================================
*/
.single-guide {
  padding: 60px 0; }

/*
=========================================
Hero Section
=========================================
*/
.guide-hero {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 50px; }

.guide-badge {
  display: inline-block;
  background: var(--blackstone-orange);
  color: #fff;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase; }

.guide-hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  margin-bottom: 20px; }

.guide-subtitle {
  font-size: 22px;
  color: #666;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 25px; }

.guide-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-weight: 700;
  color: var(--blackstone-orange); }

.guide-meta span {
  background: #f5f5f5;
  padding: 8px 14px;
  border-radius: 999px; }

/*
=========================================
Featured Image
=========================================
*/
.guide-featured-image {
  max-width: 1200px;
  margin: 0 auto 60px; }

.guide-featured-image img {
  width: 100%;
  display: block;
  border-radius: 14px; }

/*
=========================================
Guide Content
=========================================
*/
.guide-content {
  max-width: 900px;
  margin: 0 auto; }

.guide-content p {
  font-size: 19px;
  line-height: 1.9;
  margin-bottom: 24px; }

.guide-content h2 {
  font-size: 28px;
  font-weight: 550;
  line-height: 24px;
  margin-top: 10px;
  margin-bottom: 20px; }

.guide-content h3 {
  font-size: 32px;
  line-height: 1.2;
  margin-top: 50px;
  margin-bottom: 20px; }

.guide-content h4 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 15px; }

.guide-content ul,
.guide-content ol {
  margin: 25px 0 25px 30px; }

.guide-content li {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 10px; }

.guide-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px; }

.guide-content blockquote {
  border-left: 4px solid var(--blackstone-orange);
  padding-left: 20px;
  margin: 40px 0;
  font-style: italic; }

/*
=========================================
Video Section
=========================================
*/
.guide-video {
  max-width: 1200px;
  margin: 70px auto; }

.guide-video iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 14px;
  display: block; }

/*
=========================================
Related Guides
=========================================
*/
.related-guides {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid #e5e5e5; }

.related-guides h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 40px; }

.related-guides .guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px; }

.related-guides .guide-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: .3s; }

.related-guides .guide-card:hover {
  transform: translateY(-5px); }

.related-guides .guide-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover; }

.related-guides .guide-content {
  padding: 20px; }

.related-guides .guide-content h3 {
  margin: 0;
  font-size: 22px; }

/*
=========================================
Mobile
=========================================
*/
@media (max-width: 768px) {
  .single-guide {
    padding: 40px 0; }
  .guide-hero h1 {
    font-size: 38px; }
  .guide-subtitle {
    font-size: 18px; }
  .guide-content {
    padding: 0 20px; }
  .guide-content h2 {
    font-size: 32px; }
  .guide-content h3 {
    font-size: 26px; }
  .related-guides h2 {
    font-size: 32px; } }

/* ==================================================
   SINGLE GUIDE
================================================== */
.guide-single {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px; }

/* ==================================================
   HEADER
================================================== */
.guide-header {
  text-align: center;
  margin-bottom: 40px; }

.guide-category {
  display: inline-block;
  background: var(--blackstone-orange);
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px; }

.guide-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 15px; }

.guide-subtitle {
  max-width: 800px;
  margin: 0 auto 25px;
  font-size: 1.2rem;
  color: #666; }

.guide-details {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap; }

.guide-pill {
  background: #f5f5f5;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600; }

/* ==================================================
   FEATURED IMAGE
================================================== */
.guide-featured-image {
  margin-bottom: 50px; }

.guide-featured-image img {
  width: 100%;
  display: block;
  border-radius: 20px; }

/* ==================================================
   CONTENT
================================================== */
.guide-body {
  max-width: 850px;
  margin: 0 auto; }

.guide-body p {
  line-height: 1.9;
  margin-bottom: 1.5rem; }

.guide-body h2 {
  margin-top: 50px;
  margin-bottom: 20px;
  font-size: 2rem; }

.guide-body h3 {
  margin-top: 35px;
  margin-bottom: 15px; }

.guide-body ul,
.guide-body ol {
  margin-bottom: 25px;
  padding-left: 25px; }

.guide-body li {
  margin-bottom: 10px; }

/* ==================================================
   VIDEO
================================================== */
.guide-video-section {
  max-width: 850px;
  margin: 80px auto; }

.guide-video-section h2 {
  text-align: center;
  margin-bottom: 30px; }

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 16px; }

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

/* ==================================================
   RELATED GUIDES
================================================== */
.related-guides {
  margin-top: 80px; }

.related-guides h2 {
  text-align: center;
  margin-bottom: 40px; }

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px; }

.related-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: .3s; }

.related-card:hover {
  transform: translateY(-5px); }

.related-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover; }

.related-card h3 {
  padding: 20px;
  font-size: 1.1rem; }

.related-card a {
  text-decoration: none;
  color: inherit; }

/* ==================================================
   MOBILE
================================================== */
@media (max-width: 768px) {
  .related-grid {
    grid-template-columns: 1fr; }
  .guide-single {
    padding: 40px 20px; } }

.guide-page {
  padding: 40px 0 80px; }

.guide-page .container {
  max-width: 1200px;
  margin: 0 auto;
  width: 95%; }

.guide-page {
  background: yellow; }

/* ==================================================
   SINGLE GUIDE
================================================== */
.guide-single {
  background: #fff; }

/* HERO */
.guide-hero {
  position: relative;
  height: 600px;
  overflow: hidden; }

.guide-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block; }

.guide-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.75));
  display: flex;
  align-items: flex-end; }

.guide-hero-content {
  width: Min(1200px, 90%);
  margin: 0 auto;
  padding: 60px 0;
  color: #fff; }

.guide-category {
  display: inline-block;
  background: var(--blackstone-orange);
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 20px; }

.guide-hero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 20px; }

.guide-subtitle {
  font-size: 1.3rem;
  opacity: .95;
  max-width: 800px;
  margin-bottom: 30px; }

.guide-meta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap; }

.guide-pill {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px; }

/* CONTENT */
.guide-content-wrap {
  width: Min(900px, 90%);
  margin: 60px auto; }

.guide-content {
  font-size: 1.1rem;
  line-height: 1.9; }

.guide-content h2 {
  margin-top: 50px;
  margin-bottom: 20px; }

.guide-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px; }

/* VIDEO */
.guide-video-section {
  margin-top: 80px; }

.guide-video-section h2 {
  text-align: center;
  margin-bottom: 30px; }

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 16px; }

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%; }

/* RELATED */
.related-guides {
  background: #f5f5f5;
  padding: 80px 0; }

.related-guides h2 {
  text-align: center;
  margin-bottom: 40px; }

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px; }

.related-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: .3s; }

.related-card:hover {
  transform: translateY(-5px); }

.related-card a {
  text-decoration: none;
  color: inherit; }

.related-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block; }

.related-card-content {
  padding: 20px; }

.related-card-content h3 {
  margin: 0;
  font-size: 1.2rem; }

/* MOBILE */
@media (max-width: 768px) {
  .guide-hero {
    height: 450px; }
  .guide-hero-content {
    padding: 40px 0; }
  .related-grid {
    grid-template-columns: 1fr; }
  .guide-hero h1 {
    font-size: 2.2rem; } }

.main-navigation {
  color: var(--blackstone-charcoal); }

.main-navigation ul {
  list-style: none;
  display: flex;
  gap: 30px; }

.main-navigation a {
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 18px 0;
  font-weight: 600;
  text-transform: uppercase; }

.main-navigation a:hover {
  color: var(--blackstone-orange); }

.btn-primary {
  background: var(--blackstone-orange);
  color: #fff;
  padding: 14px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700; }

.btn-primary:hover {
  background: var(--blackstone-charcoal); }

a {
  color: var(--blackstone-orange); }

a:hover {
  color: var(--blackstone-charcoal); }

.guide-category-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px; }

.guide-category-nav a {
  padding: 10px 18px;
  background: #f5f5f5;
  border-radius: 30px;
  text-decoration: none;
  color: #111;
  font-weight: 600;
  transition: .3s; }

.guide-category-nav a:hover {
  background: var(--blackstone-orange);
  color: #fff; }

.guide-category-nav a.active {
  background: var(--blackstone-orange);
  color: #fff; }

/* ==================================================
   PRIMARY NAVIGATION
================================================== */
.main-navigation {
  background: var(--blackstone-black); }

.nav-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative; }

/* Desktop Menu */
.primary-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0; }

.primary-menu > li {
  position: relative; }

.primary-menu > li > a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 18px 22px;
  font-weight: 600;
  transition: .3s; }

.primary-menu > li:hover > a {
  color: var(--blackstone-orange); }

/* Dropdown */
.primary-menu .sub-menu {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 250px;
  background: #fff;
  list-style: none;
  padding: 0;
  margin: 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .25s;
  z-index: 999; }

.primary-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0); }

.primary-menu .sub-menu li {
  position: relative; }

.primary-menu .sub-menu a {
  display: block;
  padding: 14px 18px;
  color: #222;
  text-decoration: none; }

.primary-menu .sub-menu a:hover {
  background: #f5f5f5;
  color: var(--blackstone-orange); }

/* Nested Dropdown */
.primary-menu .sub-menu .sub-menu {
  left: 100%;
  top: 0; }

/* Hamburger */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer; }

.mobile-menu-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  background: #fff;
  margin: 6px 0; }

/* ==================================================
   MOBILE
================================================== */
@media (max-width: 991px) {
  .nav-container {
    justify-content: flex-end;
    padding: 15px 0; }
  .mobile-menu-toggle {
    display: block; }
  .primary-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: #111;
    flex-direction: column;
    overflow-y: auto;
    transition: .35s;
    z-index: 99999;
    padding-top: 80px; }
  .primary-menu.active {
    right: 0; }
  .primary-menu > li {
    width: 100%; }
  .primary-menu > li > a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 25px; }
  .primary-menu .sub-menu {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: #1b1b1b; }
  .primary-menu .sub-menu.active {
    display: block; }
  .primary-menu .sub-menu a {
    color: #fff;
    padding-left: 40px; } }

.recipe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px; }

.recipe-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08); }

.recipe-card img {
  width: 100%;
  height: 250px;
  object-fit: cover; }

.recipe-card h2 {
  padding: 20px;
  color: var(--blackstone-black);
  font-size: 1.2rem; }

.container-sm {
  width: 95%;
  max-width: 900px;
  margin: 0 auto; }

.single-recipe {
  padding-bottom: 80px; }

.recipe-hero-image {
  margin-bottom: 50px; }

.recipe-hero-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
  border-radius: 0 0 15px 15px; }

.recipe-header {
  margin-bottom: 40px; }

.recipe-title {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 30px;
  color: var(--blackstone-black); }

.recipe-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px; }

.meta-box {
  background: var(--blackstone-light);
  padding: 20px;
  border-radius: 10px;
  text-align: center; }

.meta-box span {
  display: block;
  font-size: .9rem;
  color: var(--gray-600);
  margin-bottom: 5px; }

.meta-box strong {
  font-size: 1.1rem; }

.recipe-description {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 40px; }

.recipe-print {
  margin-bottom: 50px; }

.recipe-section {
  margin-bottom: 60px; }

.recipe-section h2 {
  color: var(--blackstone-orange);
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--blackstone-orange); }

.recipe-section ul {
  padding-left: 25px; }

.recipe-section li {
  margin-bottom: 10px; }

.related-recipes {
  margin-top: 80px; }

.related-recipes h2 {
  margin-bottom: 30px; }

.recipe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px; }

.recipe-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08); }

.recipe-card img {
  width: 100%;
  height: 220px;
  object-fit: cover; }

.recipe-card h3 {
  padding: 20px;
  color: var(--blackstone-black); }

.recipe-card a {
  text-decoration: none; }

@media (max-width: 900px) {
  .recipe-meta {
    grid-template-columns: repeat(2, 1fr); }
  .recipe-grid {
    grid-template-columns: 1fr; }
  .recipe-title {
    font-size: 2.5rem; }
  .recipe-hero-image img {
    height: 350px; } }

.recipe-description,
.recipe-section {
  font-size: 1.1rem;
  line-height: 1.9; }

.recipe-description p,
.recipe-section p {
  margin-bottom: 1.5rem; }

.recipe-description {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--gray-800); }

.recipe-description p {
  margin-bottom: 1.75rem; }

.recipe-description h2 {
  font-size: 2rem;
  margin-top: 60px;
  margin-bottom: 25px;
  color: var(--blackstone-orange);
  border-bottom: 3px solid var(--blackstone-orange);
  padding-bottom: 10px; }

.recipe-description h3 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--blackstone-black); }

.recipe-description ul,
.recipe-description ol {
  margin: 25px 0;
  padding-left: 30px; }

.recipe-description li {
  margin-bottom: 12px; }

.recipe-description strong {
  color: var(--blackstone-black);
  font-weight: 700; }

.recipe-description blockquote {
  margin: 40px 0;
  padding: 25px;
  background: var(--blackstone-light);
  border-left: 5px solid var(--blackstone-orange);
  font-style: italic; }

.recipe-description img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px 0; }

html,
body {
  height: 100%; }

.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column; }

.site-main {
  flex: 1; }

.btn-primary {
  background: var(--blackstone-orange);
  color: var(--white);
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700; }

.btn-primary:hover {
  background: var(--blackstone-charcoal); }

.btn-secondary {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700; }

.wp-singular,
.guide-template-default,
.single,
.single-guide,
.postid-67,
.logged-in,
.admin-bar,
.wp-custom-logo,
.wp-theme-blackstone,
.customize-support {
  padding: 0;
  margin: 0; }

/*# sourceMappingURL=main.map */