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

    :root {
      --white: #ffffff;
      --off-white: #fafaf8;
      --cream: #fff8f0;
      --charcoal: #1a1a18;
      --smoke: #2e2e2b;
      --ember: #e8420a;
      --ember-light: #ff6b2b;
      --gold: #f0a020;
      --gray: #6b6b65;
      --light-gray: #e8e4dc;
      --nav-bg: #ff5a1a;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--white);
      color: var(--charcoal);
      overflow-x: hidden;
    }

    /*  NAVBAR  */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 50px;
      height: 80px;
      background: #ffffff;
      box-shadow: 0 2px 20px rgba(0,0,0,0.10);
      transition: box-shadow 0.3s ease;
    }

    nav.scrolled {
      box-shadow: 0 4px 30px rgba(0,0,0,0.15);
    }

    .logo {
      display: inline-flex;
      align-items: center;
      text-decoration: none;
      transition: opacity 0.3s;
      flex-shrink: 0;
    }
    .logo:hover { opacity: 0.85; }

    /* Nav links evenly spaced across full width */
    .nav-left {
      display: contents;
    }

    .nav-links {
      display: flex;
      flex: 1;
      justify-content: space-evenly;
      align-items: center;
      list-style: none;
      margin: 0 40px;
    }

    .nav-links a {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      color: var(--charcoal);
      text-decoration: none;
      transition: color 0.3s;
      position: relative;
      padding-bottom: 4px;
      white-space: nowrap;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 0; height: 2px;
      background: var(--ember);
      transition: width 0.3s;
    }
    .nav-links a:hover { color: var(--ember); }
    .nav-links a:hover::after { width: 100%; }

    .nav-cta {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--white);
      background: var(--ember);
      border: none;
      padding: 11px 28px;
      text-decoration: none;
      transition: all 0.3s;
      border-radius: 2px;
      flex-shrink: 0;
    }
    .nav-cta:hover {
      background: var(--ember-light);
      transform: translateY(-1px);
    }

    /*  HERO VIDEO  */
    .hero {
      position: relative;
      width: 100%;
      min-height: 700px;
      margin-top: 80px;
      height: calc(100vh - 80px);
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
    }

    .hero-video-wrap {
      position: absolute;
      inset: 0;
      z-index: 0;
      background: #1a0800;
    }
    #hero-video {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      min-width: 100%;
      min-height: 100%;
      width: auto;
      height: auto;
      object-fit: cover;
      z-index: 1;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.15) 0%,
        rgba(0,0,0,0.45) 50%,
        rgba(0,0,0,0.65) 100%
      );
      z-index: 2;
    }

    .hero-content {
      position: absolute;
      bottom: 200px;
      left: 50%;
      transform: translateX(-50%) translateY(30px);
      z-index: 10;
      text-align: center;
      color: white;
      padding: 0 40px;
      width: 100%;
      animation: heroReveal 1.2s ease forwards;
      opacity: 0;
    }

    @keyframes heroReveal {
      to { opacity: 1; transform: translateX(-50%) translateY(0); }
    }

    .hero-eyebrow {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--ember-light);
      margin-top: -8px;
      margin-bottom: 16px;
      display: block;
    }

    .hero-logo {
      margin-bottom: 8px;
      filter: drop-shadow(0 4px 30px rgba(0,0,0,0.5));
    }

    .hero-logo svg {
      max-width: 90vw;
    }

    .hero-sub {
      font-size: 16px;
      font-weight: 300;
      letter-spacing: 1px;
      color: rgba(255,255,255,0.75);
      max-width: 480px;
      margin: 0 auto 48px;
      line-height: 1.7;
    }

    .hero-actions {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: var(--ember);
      color: white;
      padding: 16px 44px;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 2px;
      text-transform: uppercase;
      text-decoration: none;
      transition: background 0.3s, transform 0.2s;
      display: inline-block;
    }
    .btn-primary:hover { background: var(--ember-light); transform: translateY(-2px); }

    .btn-outline {
      border: 1.5px solid rgba(255,255,255,0.5);
      color: white;
      padding: 16px 44px;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 2px;
      text-transform: uppercase;
      text-decoration: none;
      transition: all 0.3s;
      display: inline-block;
    }
    .btn-outline:hover { border-color: white; background: rgba(255,255,255,0.1); }

    /* Scroll indicator */
    .scroll-indicator {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,0.5);
      font-size: 10px;
      letter-spacing: 2px;
      text-transform: uppercase;
    }
    .scroll-line {
      width: 1px;
      height: 48px;
      background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
      animation: scrollDrop 1.8s ease-in-out infinite;
    }
    @keyframes scrollDrop {
      0%, 100% { transform: scaleY(1); opacity: 1; }
      50% { transform: scaleY(0.5); opacity: 0.3; }
    }

    /*  MARQUEE STRIP  */
    .marquee-strip {
      background: var(--charcoal);
      padding: 14px 0;
      overflow: hidden;
      white-space: nowrap;
    }
    .marquee-inner {
      display: inline-flex;
      animation: marquee 25s linear infinite;
    }
    .marquee-inner span {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 15px;
      letter-spacing: 3px;
      color: white;
      padding: 0 40px;
    }
    .marquee-inner span.dot {
      color: rgba(255,255,255,0.4);
      padding: 0;
    }
    @keyframes marquee {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    /*  STATS BAR  */
    .stats-bar {
      background: #ff5a1a;
      display: flex !important;
      flex-direction: row !important;
      justify-content: space-evenly;
      align-items: stretch;
      gap: 0;
      flex-wrap: nowrap !important;
      width: 100%;
      overflow-x: auto;
    }
    .stat-item {
      flex: 1 1 0 !important;
      text-align: center;
      padding: 48px 20px;
      border-right: 1px solid rgba(255,255,255,0.15);
      border-bottom: none !important;
      min-width: 120px;
    }
    .stat-item:last-child {
      border-right: none;
    }
    .stat-item:last-child { border-right: none; }
    .stat-number {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(28px, 4vw, 56px);
      color: #ffffff;
      line-height: 1;
      margin-bottom: 8px;
    }
    .stat-label {
      font-size: clamp(8px, 1vw, 11px);
      font-weight: 500;
      letter-spacing: clamp(1px, 0.2vw, 2px);
      text-transform: uppercase;
      color: rgba(255,255,255,0.75);
    }

    /*  ABOUT  */
    .about-section {
      padding: 100px 120px;
      max-width: 860px;
    }

    .about-section p {
      font-size: 17px;
      font-weight: 300;
      line-height: 1.8;
      color: var(--gray);
      margin-top: 20px;
      max-width: 680px;
    }

    /*  FEATURED SECTION  */
    .section {
      padding: 120px 60px;
    }

    .section-label {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--ember);
      margin-bottom: 16px;
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(36px, 5vw, 64px);
      font-weight: 700;
      line-height: 1.1;
      color: var(--charcoal);
      max-width: 640px;
    }

    /*  SPLIT FEATURE  */
    .feature-split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      min-height: 600px;
    }

    .feature-img {
      position: relative;
      overflow: hidden;
      background: var(--charcoal);
    }

    .feature-img-placeholder {
      width: 100%;
      height: 100%;
      min-height: 600px;
      background:
        linear-gradient(135deg, #2a1500 0%, #3d2010 40%, #1a1000 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 80px;
      position: relative;
      overflow: hidden;
    }

    .feature-img-placeholder::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 40% 70%, rgba(200,65,10,0.3) 0%, transparent 60%);
    }

    .feature-img-placeholder .img-icon {
      position: relative;
      z-index: 1;
      filter: drop-shadow(0 0 30px rgba(200,65,10,0.6));
    }

    .feature-content {
      background: #fff8f0;
      padding: 80px 70px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .feature-content p {
      font-size: 17px;
      font-weight: 300;
      line-height: 1.8;
      color: var(--gray);
      margin: 24px 0 40px;
      max-width: 420px;
    }

    /*  CARDS GRID  */
    .cards-section {
      background: #fff4e8;
      padding: 100px 60px;
    }

    .cards-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 60px;
    }

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

    .card {
      background: white;
      overflow: hidden;
      transition: transform 0.3s ease;
      cursor: pointer;
    }
    .card:hover { transform: translateY(-6px); }

    .card-img {
      height: 220px;
      background: var(--charcoal);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 56px;
      position: relative;
      overflow: hidden;
    }

    .card-img-1 { background: linear-gradient(135deg, #1a0a00, #3d1a08); }
    .card-img-2 { background: linear-gradient(135deg, #0d1a0a, #1a2e10); }
    .card-img-3 { background: linear-gradient(135deg, #1a1000, #2e2008); }

    .card-img::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.2);
    }

    .card-img span {
      position: relative;
      z-index: 1;
      filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
    }
    .card-emoji {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 22px;
      letter-spacing: 4px;
      color: rgba(255,255,255,0.5);
      position: relative;
      z-index: 1;
    }
    .img-icon {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 28px;
      letter-spacing: 4px;
      color: rgba(255,255,255,0.4);
      position: relative;
      z-index: 1;
    }

    .card-body {
      padding: 28px 32px 36px;
    }

    .card-tag {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--ember);
      margin-bottom: 10px;
    }

    .card-title {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--charcoal);
      margin-bottom: 12px;
      line-height: 1.2;
    }

    .card-desc {
      font-size: 14px;
      font-weight: 300;
      color: var(--gray);
      line-height: 1.7;
    }

    .card-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 20px;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--ember);
      text-decoration: none;
      transition: gap 0.3s;
    }
    .card-link:hover { gap: 14px; }

    /*  PHILOSOPHY  */
    .philosophy {
      background: #1e1e1c;
      padding: 120px 60px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 100px;
      align-items: center;
    }

    .philosophy-left .section-label { color: var(--ember-light); }

    .philosophy-left .section-title {
      color: white;
      margin-bottom: 28px;
    }

    .philosophy-left p {
      font-size: 16px;
      font-weight: 300;
      color: rgba(255,255,255,0.55);
      line-height: 1.9;
      margin-bottom: 20px;
    }

    .philosophy-right {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .pillar {
      border-left: 2px solid var(--ember);
      padding: 28px 36px;
      background: rgba(255,255,255,0.03);
      transition: background 0.3s;
    }
    .pillar:hover { background: rgba(255,255,255,0.06); }

    .pillar-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 13px;
      letter-spacing: 3px;
      color: var(--ember);
      margin-bottom: 8px;
    }

    .pillar-title {
      font-family: 'Playfair Display', serif;
      font-size: 20px;
      color: white;
      margin-bottom: 8px;
    }

    .pillar-desc {
      font-size: 14px;
      font-weight: 300;
      color: rgba(255,255,255,0.45);
      line-height: 1.7;
    }

    
    /*  PAGE SWITCHING  */
    #page-seasonings { display: none; }
    #page-recipes { display: none; }
    #page-about { display: none; }
    .home-section { display: block; }
    body.show-seasonings #page-seasonings { display: block; }
    body.show-recipes #page-recipes { display: block; }
    body.show-about #page-about { display: block; }
    body.show-seasonings .home-section { display: none !important; }
    body.show-recipes .home-section { display: none !important; }
    body.show-about .home-section { display: none !important; }
    body.show-videos .home-section { display: none !important; }
    body.show-seasonings .cta-banner { display: none; }
    body.show-recipes .cta-banner { display: none; }
    body.show-about .cta-banner { display: none; }
    body.show-videos .cta-banner { display: none; }
    #page-videos { display: none; }
    body.show-videos #page-videos { display: block; }

    .seasonings-page-hero {
      margin-top: 80px;
      background: linear-gradient(135deg, #1a1a18 0%, #2e1a0a 60%, #1a1a18 100%);
      padding: 80px 60px;
      text-align: center;
    }
    .seasonings-page-hero .section-label { color: var(--ember-light); }
    .seasonings-page-hero h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(48px, 8vw, 96px);
      color: white;
      letter-spacing: 4px;
      line-height: 1;
      margin: 12px 0 16px;
    }
    .seasonings-page-hero p {
      font-size: 16px;
      font-weight: 300;
      color: rgba(255,255,255,0.6);
      letter-spacing: 1px;
    }

    /*  SEASONINGS  */
    .seasonings-section {
      padding: 100px 60px;
      background: #fff8f0;
    }

    .seasonings-header {
      text-align: center;
      margin-bottom: 70px;
    }

    .seasonings-intro {
      font-size: 17px;
      font-weight: 300;
      color: var(--gray);
      max-width: 600px;
      margin: 20px auto 0;
      line-height: 1.8;
    }

    .seasonings-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 40px;
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 20px;
    }



    

    .seasoning-card {
      background: white;
      width: 300px;
      flex: 0 0 300px;
      box-shadow: 0 4px 24px rgba(0,0,0,0.07);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      overflow: hidden;
    }

    .seasoning-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 40px rgba(0,0,0,0.14);
    }

    .seasoning-jar {
      height: 260px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: transparent;
    }

    

    

    

    

    

    .seasoning-info {
      padding: 28px 28px 32px;
    }

    .seasoning-name {
      font-family: 'Playfair Display', serif;
      font-size: 20px;
      font-weight: 700;
      color: var(--charcoal);
      margin-bottom: 12px;
      line-height: 1.2;
    }

    .seasoning-desc {
      font-size: 14px;
      font-weight: 300;
      color: var(--gray);
      line-height: 1.7;
      margin-bottom: 16px;
    }

    .seasoning-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 14px;
    }

    .seasoning-tags span {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--ember);
      border: 1px solid var(--ember);
      padding: 4px 10px;
    }

    .seasoning-meta {
      font-size: 12px;
      font-weight: 400;
      color: #999;
      font-style: italic;
      line-height: 1.5;
    }

    /*  CTA BANNER  */
    .cta-banner {
      background: linear-gradient(135deg, #ff5a1a 0%, #e8420a 100%);
      padding: 80px 60px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 40px;
    }

    .cta-banner h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(36px, 5vw, 64px);
      color: white;
      letter-spacing: 3px;
      line-height: 1;
    }

    .cta-banner h2 em {
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-size: 0.75em;
      display: block;
      color: rgba(255,255,255,0.7);
      letter-spacing: 1px;
    }

    .btn-white {
      background: white;
      color: var(--ember);
      padding: 18px 50px;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      text-decoration: none;
      white-space: nowrap;
      transition: all 0.3s;
      display: inline-block;
    }
    .btn-white:hover { background: var(--charcoal); color: white; }

    /*  FOOTER  */
    footer {
      background: var(--smoke);
      padding: 70px 60px 36px;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 60px;
      margin-bottom: 60px;
      padding-bottom: 60px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .footer-brand .logo {
      display: block;
      margin-bottom: 18px;
      font-size: 32px;
    }

    .footer-brand p {
      font-size: 14px;
      font-weight: 300;
      color: rgba(255,255,255,0.4);
      line-height: 1.8;
      max-width: 280px;
    }

    .footer-col h4 {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.3);
      margin-bottom: 20px;
    }

    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 12px; }
    .footer-col ul li a {
      font-size: 14px;
      font-weight: 300;
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-col ul li a:hover { color: var(--ember-light); }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
    }

    .footer-bottom p {
      font-size: 12px;
      color: rgba(255,255,255,0.25);
      letter-spacing: 0.5px;
    }

    .footer-bottom a {
      font-size: 12px;
      color: rgba(255,255,255,0.25);
      text-decoration: none;
    }
    .footer-bottom a:hover { color: rgba(255,255,255,0.5); }

    /*  VIDEO NOTE  */
    .video-note {
      position: absolute;
      bottom: 100px;
      right: 40px;
      z-index: 4;
      background: rgba(255,255,255,0.1);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,0.2);
      padding: 14px 20px;
      color: rgba(255,255,255,0.7);
      font-size: 11px;
      letter-spacing: 1px;
      max-width: 220px;
      line-height: 1.5;
    }

    /* Responsive */
    @media (max-width: 900px) {
      nav { padding: 0 24px; }
      .nav-links { display: none; }
      .nav-left { gap: 0; }
      .section, .cards-section { padding: 80px 24px; }
      .feature-split { grid-template-columns: 1fr; }
      .cards-grid { grid-template-columns: 1fr; }
      .philosophy { grid-template-columns: 1fr; padding: 80px 24px; gap: 60px; }
      .cta-banner { flex-direction: column; text-align: center; padding: 60px 24px; }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
      .stats-bar { flex-direction: row !important; flex-wrap: nowrap !important; overflow-x: auto; }
      .stat-item { flex: 1 1 0 !important; min-width: 80px; border-right: 1px solid rgba(255,255,255,0.15) !important; border-bottom: none !important; padding: 28px 8px; }
      .stat-number { font-size: clamp(22px, 5vw, 38px); }
      .stat-label { font-size: clamp(7px, 1.5vw, 9px); letter-spacing: 1px; }
    }
  

    /*  ABOUT PAGE  */
    .ap-hero {
      margin-top: 80px;
      background: linear-gradient(135deg, #1a1a18 0%, #2e1a0a 60%, #1a1a18 100%);
      padding: 90px 60px 80px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .ap-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff5a1a' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      opacity: 0.3;
    }
    .ap-hero-inner { position: relative; z-index: 1; }
    .ap-hero-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(56px, 8vw, 100px);
      color: #fff;
      line-height: 1;
      letter-spacing: 4px;
      margin: 12px 0 0;
    }
    .ap-hero-sub {
      font-size: 16px;
      color: rgba(255,255,255,0.6);
      margin-top: 16px;
      letter-spacing: 1px;
    }

    .ap-body {
      max-width: 900px;
      margin: 0 auto;
      padding: 80px 40px 100px;
    }

    .ap-story {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
      margin-bottom: 80px;
    }

    .ap-story-text h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(36px, 4vw, 52px);
      color: #1a1a18;
      line-height: 1.05;
      margin-bottom: 24px;
    }
    .ap-story-text h2 em {
      color: var(--ember);
      font-style: normal;
    }
    .ap-story-text p {
      font-size: 16px;
      line-height: 1.85;
      color: #555;
      margin-bottom: 20px;
    }
    .ap-story-text p strong {
      color: #1a1a18;
      font-weight: 600;
    }

    .ap-pull {
      position: sticky;
      top: 100px;
    }
    .ap-pull-quote-block {
      background: #1a1a18;
      padding: 28px 28px 24px;
      margin-bottom: 16px;
    }
    .ap-pull-quote {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 17px;
      font-style: italic;
      color: #fff;
      line-height: 1.6;
      margin-bottom: 14px;
    }
    .ap-pull-quote::before {
      content: '"';
      font-size: 48px;
      color: var(--ember);
      line-height: 0;
      vertical-align: -16px;
      margin-right: 4px;
      font-style: normal;
    }
    .ap-pull-attr {
      font-size: 10px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
    }

    .ap-arsenal-label {
      background: var(--ember);
      padding: 14px 20px;
      margin-bottom: 6px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .ap-arsenal-label span {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 22px;
      letter-spacing: 3px;
      color: #fff;
    }
    .ap-arsenal-label::after {
      content: '';
      font-size: 18px;
    }
    .ap-grill-sidebar {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6px;
    }
    .ap-grill-sidebar-card {
      position: relative;
      overflow: hidden;
      aspect-ratio: 1/1;
      background: #111;
    }
    .ap-grill-sidebar-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      transition: transform 0.4s ease;
      filter: brightness(0.7) saturate(0.85);
    }
    .ap-grill-sidebar-card:hover img {
      transform: scale(1.08);
      filter: brightness(0.55) saturate(1.1);
    }
    .ap-grill-sidebar-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 55%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 10px 12px 12px;
    }
    .ap-grill-sidebar-tag {
      font-size: 8px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--ember-light);
      margin-bottom: 3px;
    }
    .ap-grill-sidebar-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 14px;
      letter-spacing: 0.5px;
      color: #fff;
      line-height: 1.1;
    }

    .ap-values {
      border-top: 1px solid #e8e0d8;
      padding-top: 60px;
      margin-bottom: 60px;
    }
    .ap-values-label {
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--ember);
      margin-bottom: 12px;
    }
    .ap-values h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(32px, 4vw, 48px);
      color: #1a1a18;
      margin-bottom: 40px;
    }
    .ap-values-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }
    .ap-value-item {
      position: relative;
      overflow: hidden;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      min-height: 320px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      border-bottom: 3px solid var(--ember);
    }
    .ap-value-item::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(10,6,2,0.92) 0%, rgba(10,6,2,0.55) 55%, rgba(10,6,2,0.2) 100%);
      transition: background 0.3s ease;
    }
    .ap-value-item:hover::before {
      background: linear-gradient(to top, rgba(10,6,2,0.95) 0%, rgba(10,6,2,0.7) 55%, rgba(10,6,2,0.35) 100%);
    }
    .ap-value-inner {
      position: relative;
      z-index: 1;
      padding: 28px 28px 30px;
    }
    .ap-value-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 26px;
      letter-spacing: 1px;
      color: #ffffff;
      margin-bottom: 10px;
    }
    .ap-value-desc {
      font-size: 14px;
      line-height: 1.7;
      color: rgba(255,255,255,0.75);
    }

    .ap-cta {
      background: var(--ember);
      padding: 60px 40px;
      text-align: center;
    }
    .ap-cta h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(36px, 5vw, 60px);
      color: #fff;
      letter-spacing: 2px;
      margin-bottom: 8px;
    }
    .ap-cta p {
      color: rgba(255,255,255,0.8);
      font-size: 15px;
      margin-bottom: 28px;
    }
    .ap-social-links {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .ap-social-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(255,255,255,0.15);
      color: #fff;
      padding: 14px 28px;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 1px;
      text-decoration: none;
      text-transform: uppercase;
      border: 1px solid rgba(255,255,255,0.3);
      transition: all 0.2s ease;
    }
    .ap-social-btn:hover {
      background: rgba(255,255,255,0.25);
      border-color: #fff;
    }
    .ap-social-btn svg { flex-shrink: 0; }

    @media (max-width: 780px) {
      .ap-story { grid-template-columns: 1fr; gap: 40px; }
      .ap-pull { position: static; }
  
    .ap-arsenal-label {
      background: var(--ember);
      padding: 14px 20px;
      margin-bottom: 6px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .ap-arsenal-label span {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 22px;
      letter-spacing: 3px;
      color: #fff;
    }
    .ap-arsenal-label::after {
      content: '';
      font-size: 18px;
    }
    .ap-grill-sidebar { grid-template-columns: repeat(2, 1fr); }
      .ap-values-grid { grid-template-columns: 1fr; gap: 20px; }
      .ap-body { padding: 60px 24px 80px; }
    }

    /*  SOCIAL LINKS IN FOOTER  */
    .footer-social {
      display: flex;
      gap: 14px;
      margin-top: 20px;
    }
    .footer-social a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      color: rgba(255,255,255,0.6);
      transition: all 0.2s ease;
      text-decoration: none;
    }
    .footer-social a:hover {
      background: var(--ember);
      border-color: var(--ember);
      color: #fff;
    }


    /*  GRILL ARSENAL  */
    .ap-arsenal {
      background: #1a1a18;
      padding: 80px 0 0;
    }
    .ap-arsenal-header {
      text-align: center;
      padding: 0 40px 60px;
    }
    .ap-arsenal-header .ap-values-label {
      color: var(--ember);
    }
    .ap-arsenal-header h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(36px, 5vw, 56px);
      color: #fff;
      margin-top: 8px;
    }
    .ap-arsenal-header p {
      color: rgba(255,255,255,0.5);
      font-size: 15px;
      max-width: 500px;
      margin: 12px auto 0;
      line-height: 1.7;
    }
    .ap-arsenal-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }
    .ap-grill-card {
      position: relative;
      overflow: hidden;
      aspect-ratio: 3/4;
      background: #111;
    }
    .ap-grill-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      transition: transform 0.5s ease;
      filter: brightness(0.75) saturate(0.9);
    }
    .ap-grill-card:hover img {
      transform: scale(1.05);
      filter: brightness(0.6) saturate(1.1);
    }
    .ap-grill-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 24px 20px;
    }
    .ap-grill-tag {
      font-size: 10px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--ember-light);
      margin-bottom: 6px;
    }
    .ap-grill-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 22px;
      letter-spacing: 1px;
      color: #fff;
      line-height: 1.1;
      margin-bottom: 8px;
    }
    .ap-grill-desc {
      font-size: 12px;
      line-height: 1.6;
      color: rgba(255,255,255,0.6);
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, opacity 0.3s ease;
      opacity: 0;
    }
    .ap-grill-card:hover .ap-grill-desc {
      max-height: 80px;
      opacity: 1;
    }
    @media (max-width: 780px) {
      .ap-arsenal-grid { grid-template-columns: repeat(2, 1fr); }
      .ap-grill-card { aspect-ratio: 1/1; }
    }


    /* ════════════════════════════════════════
       VIDEOS PAGE — Complete Rebuild
    ════════════════════════════════════════ */

    /* Hero */
    .vp-hero {
      margin-top: 80px;
      background: #0e0b08;
      position: relative;
      overflow: hidden;
      padding: 100px 60px 90px;
      text-align: center;
    }
    .vp-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 50% 100%, rgba(232,66,10,0.18) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 20% 20%, rgba(255,90,26,0.07) 0%, transparent 60%);
    }
    .vp-hero-eyebrow {
      position: relative;
      font-size: 10px;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: var(--ember-light);
      margin-bottom: 20px;
    }
    .vp-hero h1 {
      position: relative;
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(64px, 10vw, 130px);
      color: #fff;
      line-height: 0.88;
      letter-spacing: 3px;
      margin-bottom: 28px;
    }
    .vp-hero h1 em {
      color: var(--ember);
      font-style: normal;
    }
    .vp-hero-sub {
      position: relative;
      color: rgba(255,255,255,0.45);
      font-size: 16px;
      max-width: 520px;
      margin: 0 auto;
      line-height: 1.7;
    }
    .vp-hero-rule {
      position: relative;
      width: 48px;
      height: 2px;
      background: var(--ember);
      margin: 28px auto 0;
    }

    /* Page shell */
    .vp-page { background: #0e0b08; min-height: 100vh; }

    /* ── FEATURED HERO VIDEO ── */
    .vp-feature-wrap {
      position: relative;
      background: #080604;
    }
    .vp-feature-inner {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 60px 70px;
    }
    .vp-feature-tag {
      display: inline-block;
      background: var(--ember);
      color: #fff;
      font-size: 9px;
      letter-spacing: 4px;
      text-transform: uppercase;
      padding: 6px 14px;
      margin-bottom: 20px;
      margin-top: 60px;
    }
    .vp-feature-layout {
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: 48px;
      align-items: start;
    }
    .vp-video-frame {
      position: relative;
      width: 100%;
      padding-bottom: 56.25%;
      background: #000;
      overflow: hidden;
    }
    .vp-video-frame iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: none;
    }

    .vp-yt-thumb {
      position: absolute;
      inset: 0;
      display: block;
      overflow: hidden;
      background: #000;
      text-decoration: none;
    }
    .vp-yt-thumb img {
      width: 100%; height: 100%;
      object-fit: cover;
      opacity: 0.85;
      transition: opacity 0.3s, transform 0.4s;
    }
    .vp-yt-thumb:hover img {
      opacity: 0.55;
      transform: scale(1.03);
    }
    .vp-yt-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
    }
    .vp-yt-btn {
      filter: drop-shadow(0 4px 20px rgba(0,0,0,0.7));
      transition: transform 0.2s;
    }
    .vp-yt-thumb:hover .vp-yt-btn {
      transform: scale(1.12);
    }
    .vp-yt-watch {
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.7);
      background: rgba(0,0,0,0.5);
      padding: 8px 18px;
      transition: background 0.2s, color 0.2s;
    }
    .vp-yt-thumb:hover .vp-yt-watch {
      background: var(--ember);
      color: #fff;
    }

    .vp-yt-facade {
      position: absolute;
      inset: 0;
      cursor: pointer;
      background: #000;
    }
    .vp-yt-facade img {
      width: 100%; height: 100%;
      object-fit: cover;
      opacity: 0.82;
      transition: opacity 0.2s;
    }
    .vp-yt-facade:hover img { opacity: 0.6; }
    .vp-yt-play {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: none;
    }
    .vp-yt-play svg { filter: drop-shadow(0 4px 24px rgba(0,0,0,0.6)); transition: transform 0.2s; }
    .vp-yt-facade:hover .vp-yt-play svg { transform: scale(1.1); }
    .vp-yt-label {
      position: absolute;
      bottom: 16px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 10px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      pointer-events: none;
      white-space: nowrap;
    }
    .vp-feature-sidebar {
      padding-top: 4px;
    }
    .vp-feature-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(36px, 3.5vw, 52px);
      color: #fff;
      letter-spacing: 1px;
      line-height: 0.95;
      margin-bottom: 16px;
    }
    .vp-feature-desc {
      color: rgba(255,255,255,0.5);
      font-size: 14px;
      line-height: 1.8;
      margin-bottom: 28px;
      border-left: 2px solid var(--ember);
      padding-left: 16px;
    }
    .vp-feature-meta {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 32px;
    }
    .vp-meta-row {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 12px;
      color: rgba(255,255,255,0.35);
      letter-spacing: 1px;
      text-transform: uppercase;
    }
    .vp-meta-row strong {
      color: rgba(255,255,255,0.75);
      font-size: 13px;
      text-transform: none;
      letter-spacing: 0;
    }
    .vp-meta-dot {
      width: 4px; height: 4px;
      border-radius: 50%;
      background: var(--ember);
      flex-shrink: 0;
    }
    .vp-feature-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--ember);
      color: #fff;
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      padding: 14px 24px;
      text-decoration: none;
      font-weight: 600;
      transition: background 0.2s;
    }
    .vp-feature-btn:hover { background: #c73508; }
    .vp-feature-btn svg { width: 14px; height: 14px; fill: #fff; }

    /* ── SECTION DIVIDER ── */
    .vp-section-header {
      max-width: 1400px;
      margin: 0 auto;
      padding: 70px 60px 32px;
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      border-top: 1px solid rgba(255,255,255,0.06);
    }
    .vp-section-header h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(28px, 3vw, 40px);
      color: #fff;
      letter-spacing: 2px;
    }
    .vp-section-header h2 span {
      color: var(--ember);
    }
    .vp-section-count {
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.25);
    }

    /* ── VIDEO GRID ── */
    .vp-grid-wrap {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 60px 80px;
    }
    .vp-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 3px;
    }
    /* First card in each section spans 2 cols */
    .vp-card-wide {
      grid-column: span 2;
    }

    /* ── VIDEO CARD ── */
    .vp-card {
      position: relative;
      overflow: hidden;
      background: #141210;
      cursor: pointer;
      display: block;
    }
    .vp-card-thumb {
      position: relative;
      width: 100%;
      padding-bottom: 56.25%;
      overflow: hidden;
    }
    .vp-card-wide .vp-card-thumb {
      padding-bottom: 56.25%;
    }
    .vp-card-thumb img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transition: transform 0.5s ease;
      filter: brightness(0.75) saturate(0.9);
    }
    .vp-card:hover .vp-card-thumb img {
      transform: scale(1.06);
      filter: brightness(0.5) saturate(1.1);
    }

    /* Play button overlay */
    .vp-play-btn {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.25s ease;
    }
    .vp-card:hover .vp-play-btn { opacity: 1; }
    .vp-play-circle {
      width: 54px; height: 54px;
      border-radius: 50%;
      background: var(--ember);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 0 0 8px rgba(232,66,10,0.2);
    }
    .vp-card-wide .vp-play-circle {
      width: 68px; height: 68px;
    }
    .vp-play-circle svg { width: 20px; height: 20px; fill: #fff; margin-left: 3px; }
    .vp-card-wide .vp-play-circle svg { width: 26px; height: 26px; }

    /* Coming soon overlay */
    .vp-coming-badge {
      position: absolute;
      top: 12px; right: 12px;
      background: rgba(14,11,8,0.85);
      border: 1px solid rgba(255,255,255,0.12);
      color: rgba(255,255,255,0.5);
      font-size: 8px;
      letter-spacing: 3px;
      text-transform: uppercase;
      padding: 5px 10px;
    }
    .vp-live-badge {
      position: absolute;
      top: 12px; right: 12px;
      background: var(--ember);
      color: #fff;
      font-size: 8px;
      letter-spacing: 3px;
      text-transform: uppercase;
      padding: 5px 10px;
    }

    /* Card info bar */
    .vp-card-info {
      padding: 14px 16px 18px;
      background: #141210;
      border-top: 1px solid rgba(255,255,255,0.04);
    }
    .vp-card-wide .vp-card-info {
      padding: 16px 20px 22px;
    }
    .vp-card-cat {
      font-size: 8px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--ember-light);
      margin-bottom: 5px;
    }
    .vp-card-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 18px;
      letter-spacing: 0.5px;
      color: #fff;
      line-height: 1.1;
      margin-bottom: 4px;
    }
    .vp-card-wide .vp-card-name { font-size: 22px; }
    .vp-card-sub {
      font-size: 11px;
      color: rgba(255,255,255,0.35);
      line-height: 1.5;
    }

    /* Thumbnail placeholder (no image) */
    .vp-thumb-placeholder {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: linear-gradient(135deg, #1a1410 0%, #0e0b08 100%);
    }
    .vp-thumb-placeholder svg {
      width: 32px; height: 32px;
      fill: none;
      stroke: rgba(255,255,255,0.12);
      stroke-width: 1.5;
    }
    .vp-thumb-placeholder span {
      font-size: 9px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.12);
    }

    /* ── SUBSCRIBE STRIP ── */
    .vp-subscribe {
      background: var(--ember);
      padding: 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
    }
    .vp-subscribe-text h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(28px, 3vw, 42px);
      color: #fff;
      letter-spacing: 2px;
      margin-bottom: 6px;
    }
    .vp-subscribe-text p {
      color: rgba(255,255,255,0.7);
      font-size: 14px;
      line-height: 1.6;
    }
    .vp-subscribe-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #fff;
      color: var(--ember);
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      font-weight: 700;
      padding: 16px 30px;
      text-decoration: none;
      white-space: nowrap;
      flex-shrink: 0;
      transition: background 0.2s, color 0.2s;
    }
    .vp-subscribe-btn:hover { background: #1a1a18; color: #fff; }
    .vp-subscribe-btn svg { width: 16px; height: 16px; }

    /* Responsive */
    @media (max-width: 1100px) {
      .vp-grid { grid-template-columns: repeat(3, 1fr); }
      .vp-feature-layout { grid-template-columns: 1fr 300px; gap: 32px; }
    }
    @media (max-width: 860px) {
      .vp-hero { padding: 80px 24px 60px; }
      .vp-feature-inner { padding: 0 24px 50px; }
      .vp-feature-layout { grid-template-columns: 1fr; }
      .vp-feature-sidebar { padding-top: 0; }
      .vp-section-header { padding: 50px 24px 24px; }
      .vp-grid-wrap { padding: 0 24px 60px; }
      .vp-grid { grid-template-columns: repeat(2, 1fr); }
      .vp-card-wide { grid-column: span 2; }
      .vp-subscribe { flex-direction: column; text-align: center; padding: 50px 24px; }
    }
    @media (max-width: 540px) {
      .vp-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
      .vp-card-wide { grid-column: span 2; }
    }


    /* ════════════════════════════════════════
       CONTACT PAGE
    ════════════════════════════════════════ */
    #page-contact { display: none; }
    body.show-contact #page-contact { display: block; }
    body.show-contact .home-section { display: none !important; }
    body.show-contact .cta-banner { display: none; }

    .cp-page { background: #0e0b08; min-height: 100vh; }

    /* Hero */
    .cp-hero {
      margin-top: 80px;
      padding: 90px 60px 0;
      position: relative;
      overflow: hidden;
      background: #0e0b08;
    }
    .cp-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 50% at 100% 0%, rgba(232,66,10,0.12) 0%, transparent 65%),
        radial-gradient(ellipse 40% 60% at 0% 100%, rgba(255,90,26,0.06) 0%, transparent 60%);
      pointer-events: none;
    }
    .cp-hero-inner {
      max-width: 1300px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: end;
      padding-bottom: 80px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .cp-hero-left {}
    .cp-eyebrow {
      font-size: 10px;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: var(--ember-light);
      margin-bottom: 22px;
    }
    .cp-hero h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(72px, 9vw, 120px);
      color: #fff;
      line-height: 0.88;
      letter-spacing: 2px;
      margin-bottom: 30px;
    }
    .cp-hero h1 em {
      color: var(--ember);
      font-style: normal;
      display: block;
    }
    .cp-hero-desc {
      color: rgba(255,255,255,0.4);
      font-size: 15px;
      line-height: 1.8;
      max-width: 400px;
    }
    .cp-hero-right {
      padding-bottom: 8px;
    }

    /* Contact methods */
    .cp-methods {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    .cp-method {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 22px 24px;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.06);
      text-decoration: none;
      transition: background 0.2s, border-color 0.2s;
    }
    .cp-method:hover {
      background: rgba(232,66,10,0.08);
      border-color: rgba(232,66,10,0.3);
    }
    .cp-method-icon {
      width: 42px; height: 42px;
      border-radius: 50%;
      background: rgba(232,66,10,0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .cp-method-icon svg {
      width: 18px; height: 18px;
      fill: var(--ember);
    }
    .cp-method-text {}
    .cp-method-label {
      font-size: 9px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.3);
      margin-bottom: 3px;
    }
    .cp-method-value {
      font-size: 14px;
      color: rgba(255,255,255,0.8);
      font-weight: 500;
    }
    .cp-method-arrow {
      margin-left: auto;
      color: rgba(255,255,255,0.15);
      font-size: 18px;
      transition: color 0.2s, transform 0.2s;
    }
    .cp-method:hover .cp-method-arrow {
      color: var(--ember);
      transform: translateX(4px);
    }

    /* Social row */
    .cp-social-row {
      display: flex;
      gap: 2px;
      margin-top: 2px;
    }
    .cp-social-btn {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.06);
      color: rgba(255,255,255,0.5);
      font-size: 9px;
      letter-spacing: 3px;
      text-transform: uppercase;
      text-decoration: none;
      transition: background 0.2s, color 0.2s, border-color 0.2s;
    }
    .cp-social-btn svg { width: 16px; height: 16px; fill: currentColor; }
    .cp-social-btn:hover {
      background: rgba(232,66,10,0.1);
      color: var(--ember-light);
      border-color: rgba(232,66,10,0.3);
    }

    /* ── FORM SECTION ── */
    .cp-form-section {
      max-width: 1300px;
      margin: 0 auto;
      padding: 80px 60px 100px;
      display: grid;
      grid-template-columns: 380px 1fr;
      gap: 80px;
      align-items: start;
    }

    /* Reason cards */
    .cp-reasons {}
    .cp-reasons-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 28px;
      color: #fff;
      letter-spacing: 2px;
      margin-bottom: 4px;
    }
    .cp-reasons-sub {
      font-size: 12px;
      color: rgba(255,255,255,0.3);
      margin-bottom: 28px;
      line-height: 1.6;
    }
    .cp-reason-cards {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    .cp-reason-card {
      padding: 20px 22px;
      background: rgba(255,255,255,0.025);
      border-left: 2px solid transparent;
      cursor: pointer;
      transition: background 0.2s, border-color 0.2s;
    }
    .cp-reason-card:hover,
    .cp-reason-card.active {
      background: rgba(232,66,10,0.07);
      border-left-color: var(--ember);
    }
    .cp-reason-card.active .cp-reason-name {
      color: #fff;
    }
    .cp-reason-name {
      font-size: 13px;
      font-weight: 600;
      color: rgba(255,255,255,0.6);
      margin-bottom: 4px;
      transition: color 0.2s;
    }
    .cp-reason-desc {
      font-size: 11px;
      color: rgba(255,255,255,0.25);
      line-height: 1.6;
    }

    /* Form */
    .cp-form-wrap {}
    .cp-form-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 28px;
      color: #fff;
      letter-spacing: 2px;
      margin-bottom: 4px;
    }
    .cp-form-sub {
      font-size: 12px;
      color: rgba(255,255,255,0.3);
      margin-bottom: 36px;
      line-height: 1.6;
    }
    .cp-form {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }
    .cp-field-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3px;
    }
    .cp-field {
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .cp-field label {
      font-size: 9px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.3);
      padding: 12px 16px 0;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.07);
      border-bottom: none;
    }
    .cp-field input,
    .cp-field select,
    .cp-field textarea {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.07);
      border-top: none;
      color: #fff;
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      padding: 10px 16px 14px;
      outline: none;
      transition: background 0.2s, border-color 0.2s;
      width: 100%;
      -webkit-appearance: none;
    }
    .cp-field select {
      cursor: pointer;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.3)' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 16px center;
      padding-right: 40px;
    }
    .cp-field select option { background: #1a1410; color: #fff; }
    .cp-field textarea { resize: vertical; min-height: 140px; }
    .cp-field input:focus,
    .cp-field select:focus,
    .cp-field textarea:focus {
      background: rgba(232,66,10,0.06);
      border-color: rgba(232,66,10,0.4);
    }
    .cp-field input::placeholder,
    .cp-field textarea::placeholder { color: rgba(255,255,255,0.2); }

    /* Submit */
    .cp-submit-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      margin-top: 4px;
    }
    .cp-submit-note {
      font-size: 11px;
      color: rgba(255,255,255,0.2);
      line-height: 1.5;
    }
    .cp-submit-btn {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: var(--ember);
      color: #fff;
      font-size: 10px;
      letter-spacing: 4px;
      text-transform: uppercase;
      font-weight: 700;
      padding: 16px 32px;
      border: none;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s;
      white-space: nowrap;
      font-family: 'DM Sans', sans-serif;
    }
    .cp-submit-btn:hover { background: #c73508; transform: translateY(-1px); }
    .cp-submit-btn svg { width: 14px; height: 14px; fill: #fff; }

    /* Success state */
    .cp-success {
      display: none;
      text-align: center;
      padding: 60px 40px;
      background: rgba(232,66,10,0.05);
      border: 1px solid rgba(232,66,10,0.2);
    }
    .cp-success.show { display: block; }
    .cp-success-icon {
      width: 56px; height: 56px;
      border-radius: 50%;
      background: var(--ember);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
    }
    .cp-success-icon svg { width: 24px; height: 24px; fill: #fff; }
    .cp-success h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 32px;
      color: #fff;
      letter-spacing: 2px;
      margin-bottom: 10px;
    }
    .cp-success p { color: rgba(255,255,255,0.4); font-size: 14px; line-height: 1.7; }

    /* Bottom strip */
    .cp-bottom-strip {
      background: #080604;
      border-top: 1px solid rgba(255,255,255,0.05);
      padding: 40px 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 60px;
    }
    .cp-strip-item {
      text-align: center;
    }
    .cp-strip-label {
      font-size: 9px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.2);
      margin-bottom: 6px;
    }
    .cp-strip-value {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 20px;
      color: rgba(255,255,255,0.5);
      letter-spacing: 1px;
    }
    .cp-strip-div {
      width: 1px;
      height: 36px;
      background: rgba(255,255,255,0.08);
    }

    /* Responsive */
    @media (max-width: 960px) {
      .cp-hero { padding: 80px 24px 0; }
      .cp-hero-inner { grid-template-columns: 1fr; gap: 40px; }
      .cp-form-section { grid-template-columns: 1fr; gap: 48px; padding: 60px 24px 80px; }
      .cp-bottom-strip { flex-wrap: wrap; gap: 30px; padding: 40px 24px; }
    }
    @media (max-width: 600px) {
      .cp-field-row { grid-template-columns: 1fr; }
      .cp-submit-row { flex-direction: column; align-items: stretch; }
      .cp-submit-btn { justify-content: center; }
      .cp-bottom-strip { gap: 24px; }
    }


    /* ════════════════════════════════════════
       CART SYSTEM
    ════════════════════════════════════════ */

    /* Cart icon in navbar */
    .nav-cart-btn {
      position: relative;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
      display: flex;
      align-items: center;
      gap: 6px;
      color: var(--charcoal);
      font-family: 'DM Sans', sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1px;
      transition: color 0.2s;
      margin-right: 8px;
    }
    .nav-cart-btn:hover { color: var(--ember); }
    .nav-cart-btn svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; }
    .nav-cart-count {
      position: absolute;
      top: 2px; right: 2px;
      width: 16px; height: 16px;
      background: var(--ember);
      color: #fff;
      font-size: 9px;
      font-weight: 700;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transform: scale(0);
      transition: opacity 0.2s, transform 0.2s;
    }
    .nav-cart-count.has-items {
      opacity: 1;
      transform: scale(1);
    }

    /* Drawer overlay */
    .cart-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.6);
      z-index: 998;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s;
    }
    .cart-overlay.open {
      opacity: 1;
      pointer-events: all;
    }

    /* Drawer */
    .cart-drawer {
      position: fixed;
      top: 0; right: 0;
      width: 420px;
      max-width: 100vw;
      height: 100vh;
      background: #fafaf8;
      z-index: 999;
      transform: translateX(100%);
      transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      display: flex;
      flex-direction: column;
      box-shadow: -8px 0 40px rgba(0,0,0,0.15);
    }
    .cart-drawer.open {
      transform: translateX(0);
    }
    .cart-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 24px 28px;
      border-bottom: 1px solid var(--light-gray);
    }
    .cart-header-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 26px;
      letter-spacing: 2px;
      color: var(--charcoal);
    }
    .cart-header-sub {
      font-size: 11px;
      color: var(--gray);
      letter-spacing: 1px;
    }
    .cart-close {
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px;
      color: var(--gray);
      font-size: 22px;
      line-height: 1;
      transition: color 0.2s;
    }
    .cart-close:hover { color: var(--charcoal); }

    /* Cart body */
    .cart-body {
      flex: 1;
      overflow-y: auto;
      padding: 20px 28px;
    }
    .cart-empty {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100%;
      gap: 12px;
      text-align: center;
    }
    .cart-empty svg { width: 48px; height: 48px; stroke: var(--light-gray); fill: none; stroke-width: 1.5; }
    .cart-empty-title { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 2px; color: var(--charcoal); }
    .cart-empty-sub { font-size: 13px; color: var(--gray); }

    /* Cart items */
    .cart-item {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 16px 0;
      border-bottom: 1px solid var(--light-gray);
    }
    .cart-item-img {
      width: 60px; height: 60px;
      border-radius: 4px;
      overflow: hidden;
      flex-shrink: 0;
      background: var(--light-gray);
    }
    .cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
    .cart-item-info { flex: 1; }
    .cart-item-name { font-size: 13px; font-weight: 600; color: var(--charcoal); margin-bottom: 2px; }
    .cart-item-sub { font-size: 11px; color: var(--gray); margin-bottom: 8px; }
    .cart-item-controls { display: flex; align-items: center; gap: 8px; }
    .cart-qty-btn {
      width: 26px; height: 26px;
      border: 1px solid var(--light-gray);
      background: #fff;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      font-size: 14px; color: var(--charcoal);
      transition: border-color 0.2s, background 0.2s;
    }
    .cart-qty-btn:hover { border-color: var(--ember); color: var(--ember); }
    .cart-qty-num { font-size: 13px; font-weight: 600; width: 20px; text-align: center; }
    .cart-item-price { font-size: 14px; font-weight: 700; color: var(--charcoal); white-space: nowrap; }
    .cart-item-remove { background: none; border: none; cursor: pointer; color: var(--gray); font-size: 16px; padding: 4px; transition: color 0.2s; }
    .cart-item-remove:hover { color: var(--ember); }

    /* Cart footer */
    .cart-footer {
      padding: 20px 28px 28px;
      border-top: 1px solid var(--light-gray);
      background: #fafaf8;
    }
    .cart-subtotal {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 6px;
    }
    .cart-subtotal-label { font-size: 12px; color: var(--gray); letter-spacing: 1px; text-transform: uppercase; }
    .cart-subtotal-price { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 1px; color: var(--charcoal); }
    .cart-subtotal-note { font-size: 11px; color: var(--gray); margin-bottom: 16px; }
    .cart-checkout-btn {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      background: var(--ember);
      color: #fff;
      border: none;
      padding: 16px 22px;
      font-family: 'DM Sans', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 0.2s;
    }
    .cart-checkout-btn:hover { background: #c73508; }
    .cart-checkout-btn svg { width: 16px; height: 16px; fill: #fff; }
    .cart-continue-btn {
      display: block;
      width: 100%;
      margin-top: 10px;
      background: none;
      border: 1px solid var(--light-gray);
      color: var(--gray);
      padding: 12px;
      font-family: 'DM Sans', sans-serif;
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      cursor: pointer;
      transition: border-color 0.2s, color 0.2s;
    }
    .cart-continue-btn:hover { border-color: var(--charcoal); color: var(--charcoal); }

    /* Add to cart button animation */
    .shop-card-btn.added {
      background: #2e7d32 !important;
      pointer-events: none;
    }

    /*  SHOP PAGE  */
    .shop-hero {
      margin-top: 80px;
      background: linear-gradient(135deg, #1a1a18 0%, #2e1a0a 60%, #1a1a18 100%);
      padding: 70px 60px 60px;
      text-align: center;
    }
    .shop-hero-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(48px, 8vw, 96px);
      color: #fff;
      letter-spacing: 3px;
      margin: 8px 0 16px;
      line-height: 1;
    }
    .shop-hero-sub {
      color: rgba(255,255,255,0.5);
      font-size: 15px;
      letter-spacing: 2px;
    }
    .shop-section {
      background: #f5f5f0;
      padding: 60px 40px 80px;
    }
    .shop-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 28px;
      max-width: 1020px;
      margin: 0 auto;
    }
    .shop-card {
      background: #fff;
      border-radius: 4px;
      box-shadow: 0 2px 16px rgba(0,0,0,0.08);
      overflow: hidden;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      display: flex;
      flex-direction: column;
      width: 300px;
      flex: 0 0 300px;
    }
    .shop-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 32px rgba(0,0,0,0.14);
    }
    .shop-card-img {
      background: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px 16px 8px;
      height: 280px;
    }
    .shop-card-img img {
      height: 100%;
      width: auto;
      object-fit: contain;
    }
    .shop-card-body {
      padding: 16px 20px 24px;
      display: flex;
      flex-direction: column;
      gap: 6px;
      border-top: 1px solid #f0f0f0;
    }
    .shop-card-sub {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: #e8420a;
    }
    .shop-card-name {
      font-size: 17px;
      font-weight: 700;
      color: #1a1a18;
      line-height: 1.3;
    }
    .shop-card-flavor {
      font-size: 12px;
      color: #888;
      letter-spacing: 1px;
    }
    .shop-card-btn {
      display: inline-block;
      margin-top: 10px;
      background: #1a1a18;
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 12px 20px;
      text-decoration: none;
      text-align: center;
      border-radius: 2px;
      transition: background 0.2s ease;
    }
    .shop-card-btn:hover { background: #e8420a; }

  
    
    /*  RECIPES PAGE  */
    .rp-hero {
      margin-top: 80px;
      background: linear-gradient(135deg, #1a1a18 0%, #2e1a0a 60%, #1a1a18 100%);
      padding: 70px 60px 60px;
      text-align: center;
    }
    .rp-hero-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(48px, 8vw, 96px);
      color: #fff;
      letter-spacing: 3px;
      margin: 8px 0 16px;
      line-height: 1;
    }
    .rp-hero-sub { color: rgba(255,255,255,0.5); font-size: 15px; letter-spacing: 1px; }

    .rc-filter-bar {
      background: #1a1a18;
      display: flex;
      justify-content: center;
      gap: 0;
      padding: 0 40px;
      border-bottom: 1px solid #2e2e2e;
    }
    .rc-filter {
      background: none;
      border: none;
      color: rgba(255,255,255,0.45);
      font-family: 'Montserrat', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 18px 28px;
      cursor: pointer;
      border-bottom: 3px solid transparent;
      transition: all 0.2s;
    }
    .rc-filter:hover { color: #fff; }
    .rc-filter.active { color: #e8420a; border-bottom-color: #e8420a; }

    .rc-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      background: #f5f5f0;
    }
    @media (max-width: 1100px) { .rc-grid { grid-template-columns: repeat(3, 1fr); } }
    @media (max-width: 780px)  { .rc-grid { grid-template-columns: repeat(2, 1fr); } }

        .rc-card {
      background: #1a1a18 center/cover no-repeat;
      border: none;
      padding: 0;
      cursor: pointer;
      transition: all 0.25s ease;
      display: flex;
      flex-direction: column;
      position: relative;
      overflow: hidden;
      aspect-ratio: 4/3;
    }
    .rc-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0.15) 100%);
      transition: background 0.25s ease;
      z-index: 1;
      pointer-events: none;
    }
    .rc-card:hover::before {
      background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 60%, rgba(0,0,0,0.3) 100%);
    }
    .rc-card:hover { transform: scale(1.02); z-index: 2; box-shadow: 0 16px 48px rgba(0,0,0,0.4); }
    .rc-card.hidden { display: none; }
    .rc-card-inner {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 20px 18px 18px;
      z-index: 2;
      pointer-events: none;
    }
    .rc-card-emoji { display: none; }
    .rc-card-cat {
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: #e8420a;
      margin-bottom: 4px;
    }
    .rc-card-title {
      font-size: 16px;
      font-weight: 700;
      color: #fff;
      line-height: 1.2;
      margin-bottom: 4px;
    }
    .rc-card-sub {
      font-size: 12px;
      color: rgba(255,255,255,0.6);
      font-style: italic;
      line-height: 1.3;
      margin-bottom: 8px;
    }
    .rc-card-meta {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      font-size: 10px;
      color: rgba(255,255,255,0.5);
      margin-bottom: 8px;
    }
    .rc-card-tags { display: flex; flex-wrap: wrap; gap: 5px; }
    .rc-tag {
      background: rgba(232,66,10,0.85);
      color: #fff;
      font-size: 8px;
      font-weight: 700;
      letter-spacing: 1px;
      padding: 3px 9px;
      border-radius: 100px;
      text-transform: uppercase;
      white-space: nowrap;
    }
    .rc-card-cta { display: none; }

    /*  Modal  */
    .rc-modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.75);
      z-index: 1000;
      overflow-y: auto;
      padding: 40px 20px;
    }
    .rc-modal-overlay.open { display: flex; align-items: flex-start; justify-content: center; }
    .rc-modal {
      background: #fff;
      max-width: 760px;
      width: 100%;
      border-radius: 6px;
      overflow: hidden;
      position: relative;
      margin: auto;
    }
    .rc-modal-close {
      position: absolute;
      top: 16px; right: 16px;
      background: rgba(0,0,0,0.3);
      border: none;
      color: #fff;
      font-size: 18px;
      width: 36px; height: 36px;
      border-radius: 50%;
      cursor: pointer;
      z-index: 10;
      transition: background 0.2s;
    }
    .rc-modal-close:hover { background: #e8420a; }
    .rc-modal-header {
      background: linear-gradient(135deg, #1a1a18 0%, #2c1608 100%);
      padding: 48px 48px 36px;
    }
    .rc-modal-emoji { font-size: 52px; margin-bottom: 12px; display: block; }
    .rc-modal-cat {
      font-size: 9px; font-weight: 700;
      letter-spacing: 4px; color: #e8420a;
      text-transform: uppercase; margin-bottom: 8px;
    }
    .rc-modal-title {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(28px, 5vw, 44px);
      font-style: italic;
      color: #fff;
      line-height: 1.1;
      margin-bottom: 10px;
    }
    .rc-modal-sub {
      color: rgba(255,255,255,0.5);
      font-size: 14px;
      font-style: italic;
      margin-bottom: 24px;
    }
    .rc-modal-meta {
      display: flex; gap: 24px; flex-wrap: wrap;
    }
    .rc-meta-item { display: flex; flex-direction: column; gap: 3px; }
    .rc-meta-label {
      font-size: 9px; font-weight: 700;
      letter-spacing: 2px; color: rgba(255,255,255,0.35);
      text-transform: uppercase;
    }
    .rc-meta-value { font-size: 13px; font-weight: 600; color: #fff; }
    .rc-modal-body { padding: 36px 48px 48px; }
    .rc-modal-body h3 {
      font-size: 10px; font-weight: 700;
      letter-spacing: 3px; text-transform: uppercase;
      color: #e8420a; margin: 28px 0 12px;
      border-bottom: 2px solid #f0f0f0; padding-bottom: 8px;
    }
    .rc-modal-body h3:first-child { margin-top: 0; }
    .rc-modal-body ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
    .rc-modal-body ul li {
      font-size: 14px; color: #333;
      padding: 9px 14px;
      background: #fafafa;
      border-left: 3px solid #f0f0f0;
      border-radius: 0 3px 3px 0;
      line-height: 1.5;
    }
    .rc-modal-body ul li.schmitys-ing { border-left-color: #e8420a; background: #fff8f5; }
    .rc-modal-body ol {
      padding: 0; margin: 0;
      list-style: none;
      counter-reset: steps;
      display: flex; flex-direction: column; gap: 10px;
    }
    .rc-modal-body ol li {
      font-size: 14px; color: #333; line-height: 1.7;
      padding: 13px 16px 13px 52px;
      background: #fafafa; border-radius: 3px;
      position: relative;
      counter-increment: steps;
    }
    .rc-modal-body ol li::before {
      content: counter(steps);
      position: absolute; left: 14px; top: 13px;
      width: 24px; height: 24px;
      background: #1a1a18; color: #fff;
      font-size: 11px; font-weight: 700;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
    }
    .rc-tip-box {
      background: #fff8f5;
      border-left: 4px solid #e8420a;
      padding: 16px 20px;
      border-radius: 0 4px 4px 0;
      font-size: 14px; color: #333;
      line-height: 1.7; font-style: italic;
    }
    .rc-season-banner {
      background: linear-gradient(135deg, #1a1a18, #2c1608);
      border-radius: 6px;
      padding: 20px 24px;
      margin-top: 28px;
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }
    .rc-season-banner strong { color: #fff; font-size: 14px; display: block; margin-bottom: 4px; }
    .rc-season-banner span { color: rgba(255,255,255,0.45); font-size: 12px; }
    .rc-season-tags { display: flex; gap: 8px; flex-wrap: wrap; }
    .rc-season-tag {
      background: #e8420a; color: #fff;
      font-size: 10px; font-weight: 700;
      letter-spacing: 1px; padding: 6px 14px;
      border-radius: 100px; text-transform: uppercase;
    }
    .rc-shop-btn {
      display: inline-block;
      margin-top: 20px;
      background: #e8420a; color: #fff;
      font-size: 11px; font-weight: 700;
      letter-spacing: 2px; text-transform: uppercase;
      padding: 13px 28px;
      text-decoration: none; border-radius: 3px;
      cursor: pointer; border: none;
      transition: background 0.2s; width: 100%;
      text-align: center;
    }
    .rc-shop-btn:hover { background: #c73308; }

    /*  Recipe Card  */
    .rp-card {
      max-width: 860px;
      margin: 0 auto;
      background: #fff;
      border-radius: 6px;
      box-shadow: 0 4px 40px rgba(0,0,0,0.10);
      overflow: hidden;
    }
    .rp-card-header {
      background: linear-gradient(135deg, #1a1a18 0%, #2c1608 100%);
      padding: 40px 48px 36px;
      position: relative;
    }
    .rp-card-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 4px;
      color: #e8420a;
      text-transform: uppercase;
      margin-bottom: 10px;
    }
    .rp-card-title {
      font-family: 'Playfair Display', 'Georgia', serif;
      font-size: clamp(32px, 5vw, 52px);
      font-style: italic;
      color: #fff;
      line-height: 1.1;
      margin-bottom: 20px;
    }
    .rp-card-meta {
      display: flex;
      gap: 28px;
      flex-wrap: wrap;
    }
    .rp-meta-item {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }
    .rp-meta-label {
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 2px;
      color: rgba(255,255,255,0.4);
      text-transform: uppercase;
    }
    .rp-meta-value {
      font-size: 14px;
      font-weight: 600;
      color: #fff;
    }
    .rp-card-body { padding: 40px 48px; }
    .rp-card-body h3 {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: #e8420a;
      margin: 32px 0 14px;
      border-bottom: 2px solid #f0f0f0;
      padding-bottom: 8px;
    }
    .rp-card-body h3:first-child { margin-top: 0; }
    .rp-card-body ul {
      list-style: none;
      padding: 0; margin: 0;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .rp-card-body ul li {
      font-size: 15px;
      color: #333;
      padding: 10px 14px;
      background: #fafafa;
      border-left: 3px solid #f0f0f0;
      border-radius: 0 3px 3px 0;
      line-height: 1.5;
    }
    .rp-card-body ul li.highlight-ing {
      border-left-color: #e8420a;
      background: #fff8f5;
    }
    .rp-card-body ol {
      padding: 0; margin: 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
      counter-reset: steps;
      list-style: none;
    }
    .rp-card-body ol li {
      font-size: 15px;
      color: #333;
      line-height: 1.7;
      padding: 14px 18px 14px 56px;
      background: #fafafa;
      border-radius: 3px;
      position: relative;
      counter-increment: steps;
    }
    .rp-card-body ol li::before {
      content: counter(steps);
      position: absolute;
      left: 16px;
      top: 14px;
      width: 26px; height: 26px;
      background: #1a1a18;
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .rp-seasonings-banner {
      background: linear-gradient(135deg, #1a1a18, #2c1608);
      border-radius: 6px;
      padding: 24px 28px;
      margin-top: 32px;
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }
    .rp-seasonings-banner-text { flex: 1; min-width: 180px; }
    .rp-seasonings-banner-text strong {
      display: block;
      color: #fff;
      font-size: 15px;
      margin-bottom: 4px;
    }
    .rp-seasonings-banner-text span {
      color: rgba(255,255,255,0.5);
      font-size: 13px;
    }
    .rp-seasonings-tags { display: flex; gap: 8px; flex-wrap: wrap; }
    .rp-season-tag {
      background: #e8420a;
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1px;
      padding: 7px 14px;
      border-radius: 100px;
      text-transform: uppercase;
      white-space: nowrap;
    }
    .rp-shop-btn {
      display: inline-block;
      margin-top: 24px;
      background: #e8420a;
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 14px 32px;
      text-decoration: none;
      border-radius: 3px;
      transition: background 0.2s;
      cursor: pointer;
      border: none;
    }
    .rp-shop-btn:hover { background: #c73308; }

    /* SEASONINGS COMING SOON STYLES */
    .seasonings-coming-soon-banner {
      background: linear-gradient(90deg, var(--charcoal) 0%, var(--smoke) 100%);
      padding: 20px 40px;
      text-align: center;
      margin-bottom: 40px;
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .cs-badge {
      background: var(--ember);
      color: var(--white);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 3px;
      display: inline-block;
    }

    .cs-text {
      color: var(--off-white);
      font-size: 15px;
      margin: 0;
    }

    .cs-text a {
      color: var(--gold);
      text-decoration: none;
      font-weight: 500;
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s;
    }

    .cs-text a:hover {
      border-bottom-color: var(--gold);
    }

    .shop-card-coming-soon {
      background: var(--light-gray);
      color: var(--gray);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 14px 32px;
      text-align: center;
      border-radius: 3px;
      margin-top: 16px;
    }

    @media (max-width: 768px) {
      .seasonings-coming-soon-banner {
        padding: 16px 20px;
        flex-direction: column;
        gap: 10px;
      }

      .cs-text {
        font-size: 14px;
      }
    }

    /* BLOG PAGE STYLES */
    .blog-page {
      background: var(--off-white);
    }

    .blog-hero {
      background: linear-gradient(135deg, var(--charcoal) 0%, var(--smoke) 100%);
      padding: 100px 50px 80px;
      text-align: center;
    }

    .blog-hero-inner {
      max-width: 800px;
      margin: 0 auto;
    }

    .blog-hero h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 72px;
      letter-spacing: 3px;
      color: var(--white);
      margin: 20px 0;
    }

    .blog-hero-sub {
      font-size: 18px;
      line-height: 1.7;
      color: var(--light-gray);
    }

    .blog-section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 80px 50px;
    }

    .blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
      gap: 40px;
    }

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

    .blog-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    }

    .blog-card-img {
      width: 100%;
      padding-bottom: 60%;
      background: var(--light-gray);
      position: relative;
      overflow: hidden;
    }

    .blog-placeholder {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--cream) 0%, var(--light-gray) 100%);
      gap: 15px;
    }

    .blog-placeholder-icon {
      font-size: 60px;
      animation: flicker 3s ease-in-out infinite;
    }

    .blog-placeholder span {
      font-size: 14px;
      font-weight: 600;
      color: var(--gray);
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .blog-card-body {
      padding: 30px;
    }

    .blog-card-date {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--ember);
      margin-bottom: 12px;
    }

    .blog-card-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 28px;
      letter-spacing: 1px;
      color: var(--charcoal);
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .blog-card-excerpt {
      font-size: 15px;
      line-height: 1.6;
      color: var(--smoke);
      margin-bottom: 20px;
    }

    .blog-card-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 1px;
      color: var(--ember);
      text-decoration: none;
      transition: gap 0.2s ease;
    }

    .blog-card-link:hover {
      gap: 12px;
    }

    /* Newsletter Section */
    .blog-newsletter {
      background: linear-gradient(135deg, var(--charcoal) 0%, var(--smoke) 100%);
      padding: 80px 50px;
    }

    .blog-newsletter-inner {
      max-width: 600px;
      margin: 0 auto;
      text-align: center;
    }

    .blog-newsletter h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 48px;
      letter-spacing: 2px;
      color: var(--white);
      margin-bottom: 15px;
    }

    .blog-newsletter > p {
      font-size: 16px;
      line-height: 1.6;
      color: var(--light-gray);
      margin-bottom: 30px;
    }

    .blog-newsletter-form {
      display: flex;
      gap: 10px;
      margin-bottom: 15px;
    }

    .blog-newsletter-form input {
      flex: 1;
      padding: 16px 20px;
      font-size: 15px;
      border: 2px solid rgba(255,255,255,0.2);
      border-radius: 4px;
      background: rgba(255,255,255,0.1);
      color: var(--white);
      transition: all 0.3s ease;
    }

    .blog-newsletter-form input::placeholder {
      color: rgba(255,255,255,0.5);
    }

    .blog-newsletter-form input:focus {
      outline: none;
      border-color: var(--ember);
      background: rgba(255,255,255,0.15);
    }

    .blog-newsletter-form button {
      padding: 16px 32px;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      background: var(--ember);
      color: var(--white);
      border: none;
      border-radius: 4px;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(232, 66, 10, 0.3);
    }

    .blog-newsletter-form button:hover {
      background: var(--ember-light);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(232, 66, 10, 0.4);
    }

    .blog-newsletter-note {
      font-size: 13px;
      color: rgba(255,255,255,0.6);
      font-style: italic;
    }

    @media (max-width: 768px) {
      .blog-hero {
        padding: 80px 20px 60px;
      }

      .blog-hero h1 {
        font-size: 48px;
      }

      .blog-section {
        padding: 60px 20px;
      }

      .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .blog-newsletter {
        padding: 60px 20px;
      }

      .blog-newsletter h2 {
        font-size: 36px;
      }

      .blog-newsletter-form {
        flex-direction: column;
      }
    }

    /* Blog Page Visibility */
    body.show-blog #page-blog { display: block; }
    body.show-blog .home-section { display: none !important; }
    body.show-blog .cta-banner { display: none; }
