@font-face{ 
  font-family: 'Things';
  src: url('../fonts/Things-Regular.otf') format('opentype');
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}
@font-face{ 
  font-family: 'ThingsRegular';
  src: url('../fonts/Things-Regular.ttf') format('truetype');
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}
@font-face{ 
  font-family: 'Impact';
  src: url('../fonts/impact.ttf') format('truetype');
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}
@font-face{ 
  font-family: 'inter';
  src: url('../fonts/Inter-Regular.ttf') format('truetype');
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}
@font-face{ 
  font-family: 'Sherly';
  src: url('../fonts/sherly-kitchen.regular.ttf') format('truetype');
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}
 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {  font-family: 'Inter', sans-serif; background: #ffffff; color: #000000;  overflow-x: hidden; padding-top: 95px; }
    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; }
    button { font-family: inherit; cursor: pointer; border: none; background: none; }
    input, textarea, select { font-family: inherit; }
    h1, h2, h3, h4, h5, h6{ margin-bottom: 20px;}
    p{ margin-bottom: 15px;}
.container{ width: 80%; margin: 0 auto;}
    /* ============ NAVBAR ============ */
    .navbar {
      position: fixed; top: 0; left: 0; right: 0;
      height: 95px;
      background: rgba(26, 26, 26, 0.9);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      z-index: 1000;
      display: flex; align-items: center; justify-content: center;
      padding: 0 clamp(16px, 4vw, 80px);
    }
    .navbar-container {
      width: 100%;
      max-width: 1281px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }
    .navbar-brand {
      display: flex; align-items: center; gap: 14px;
      flex-shrink: 0;
    }
    .navbar-logo {
      width: 36px; height: 36px; border-radius: 50%; overflow: hidden;
      flex-shrink: 0;
    }
    .navbar-logo img { width: 36px; height: 36px; object-fit: cover; }
    .navbar-brand-text {
      font-weight: 900; font-size: 20px; line-height: 28px;
      letter-spacing: -0.5px; color: #ffffff; white-space: nowrap;
    }
    .navbar-brand-text .red { color: #c1121f; }

    .navbar-menu {
      display: flex; gap: clamp(24px, 3vw, 45px);
      align-items: center;
    }
    .navbar-menu a {
      font-weight: 400; font-size: 22px; line-height: 20px; font-family: 'Things';
      letter-spacing: 2px; color: #ffffff;
      text-transform: uppercase; white-space: nowrap;
      transition: color 0.2s ease;
    }
    .navbar-menu a:hover, .navbar-menu a.active { color: #c1121f; }

    .navbar-cta {
      background: #c1121f;
      color: #ffffff;
      font-weight: 500;
      font-size: 14px;
      line-height: 20px;
      padding: 10px 20px;
      border-radius: 9999px;
      white-space: nowrap;
      transition: background 0.2s ease;
      flex-shrink: 0;
    }
    .navbar-cta:hover { background: #a10f1a; }

    .mobile-nav-toggle {
      display: none;
      background: transparent; border: none;
      width: 36px; height: 36px;
      cursor: pointer; padding: 0;
      position: relative; color: #ffffff;
    }
    .mobile-nav-toggle span {
      display: block; position: absolute;
      width: 22px; height: 2px;
      background: currentColor;
      left: 50%; top: 50%; margin-top: -1px;
      transform: translateX(-50%);
      transition: background 0.2s ease;
    }
    .mobile-nav-toggle span::before,
    .mobile-nav-toggle span::after {
      content: '';
      position: absolute; left: 0;
      width: 22px; height: 2px;
      background: currentColor;
      transition: transform 0.2s ease, top 0.2s ease;
    }
    .mobile-nav-toggle span::before { top: -7px; }
    .mobile-nav-toggle span::after  { top: 7px; }
    .mobile-nav-toggle.is-open span { background: transparent; }
    .mobile-nav-toggle.is-open span::before { top: 0; transform: rotate(45deg); }
    .mobile-nav-toggle.is-open span::after  { top: 0; transform: rotate(-45deg); }

    /* ============ HERO ============ */
    .hero {
      background: #1a1a1a;
      position: relative;
      min-height: clamp(520px, 80vh, 870px);
      overflow: hidden;
      display: flex;
      align-items: center;
    }
    .hero-bg { position: absolute; inset: 0; opacity: 0.4; }
    .hero-bg img { width: 100%; height: 100%; object-fit: cover; }
    .hero-overlay {
      position: absolute; inset: 0;
      opacity: 0.67;
      background: linear-gradient(to right, #1a1a1a 0%, rgba(26, 26, 26, 0.8) 50%, rgba(0, 0, 0, 0) 100%);
    }
    .hero-content {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 1281px;
      margin: 0 auto;
      padding: 0 clamp(20px, 6vw, 128px);
    }
    .hero-heading {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 32px;
    }
    .hero-heading h1 {
      font-family: 'Anton', 'Impact', 'Arial Black', sans-serif;
      font-weight: 400;
      font-size: clamp(40px, 8vw, 84px);
      line-height: 1;
      color: #ffffff;
      letter-spacing: 1px;
      text-transform: uppercase;
    }
    .hero-heading h1 span{ font-family: 'Things', serif;}
    .accent-red { color: #c1121f; }
    .hero-description {
      font-weight: 500;
      font-size: clamp(15px, 1.6vw, 20px);
      line-height: 1.5;
      color: rgba(255, 255, 255, 0.7);
      max-width: 560px;
      margin-bottom: 36px;
    }
    .hero-buttons {
      display: flex; gap: 16px; align-items: center;
      flex-wrap: wrap;
    }
    .btn-primary {
      background: #c1121f; color: #ffffff;
      font-weight: 500;
      font-size: 16px; line-height: 24px;
      padding: 17px 28px;
      border-radius: 9999px;
      display: inline-flex; align-items: center; gap: 12px;
      transition: background 0.2s ease, transform 0.2s ease;
    }
    .btn-primary:hover { background: #a10f1a; transform: translateY(-2px); }
    .btn-primary svg { width: 20px; height: 20px; }
    .btn-outline {
      border: 1px solid rgba(255, 255, 255, 0.3);
      color: #ffffff;
      font-weight: 500;
      font-size: 16px; line-height: 24px;
      padding: 17px 29px;
      border-radius: 9999px;
      display: inline-flex; align-items: center;
      transition: background 0.2s ease, border-color 0.2s ease;
    }
    .btn-outline:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.6);
    }

    /* ============ WHAT WE SERVE ============ */
    .serve {
      background: #ffffff;
      padding: clamp(56px, 7vw, 96px) clamp(20px, 6vw, 113px);
    }
    .serve-inner {
      max-width: 1310px;
      margin: 0 auto;
    }
    .serve-title {
      font-weight: 100;
      font-size: clamp(34px, 5.5vw, 76px);
      line-height: 1.1;
      letter-spacing: normal;
      color: #000000;
      text-align: center;
      margin-bottom: 20px;
      font-family: 'Sherly', serif;
    }
    .serve-subtitle {
      font-weight: 600;
      font-size: clamp(16px, 1.8vw, 24px);
      line-height: 1.4;
      color: #000000;
      text-align: center;
      max-width: 800px;
      margin: 0 auto clamp(40px, 5vw, 72px);
    }
    .serve-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: clamp(24px, 3vw, 70px);
    }
    /* Image card with label overlaid on the dark gradient at the bottom */
    .serve-card {
      width: 100%;
      aspect-ratio: 390 / 453;
     
    }
    .serve-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .serve-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 44%;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000000 100%);
      pointer-events: none;
    }
    .serve-card-label {
      bottom: clamp(16px, 2vw, 28px);
      text-align: center;
      font-weight: 100;
      line-height: 1.2;
      color: #000;
      padding: 16px;
      font-family: 'Things', serif;
      font-size: 35px;
    }

    /* ============ MORE THAN A RESTAURANT ============ */
    .more {
      background: #c1121f;
      padding: clamp(80px, 10vw, 120px) clamp(17px, 5vw, 71px) clamp(60px, 8vw, 100px);
    }
    .more-inner {
      max-width: 1350px;
      margin: 0 auto;
    }
    .more-title {
      font-weight: 100;
      font-size: clamp(36px, 5.5vw, 76px);
      line-height: 1.1;
      letter-spacing: -1.5px;
      text-align: center;
      margin-bottom: clamp(60px, 8vw, 100px);
      font-family: 'Things', serif;
    }
    .more-title .black { color: #000000; }
    .more-title .white { color: #ffffff; }
    .more-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: clamp(80px, 5vw, 62px) clamp(24px, 3vw, 62px);
    }
    .more-card {
      background: #ffffff;
      min-height: 380px;
      position: relative;
      padding: 90px 24px 30px;
      text-align: center;
    }
    .more-card-icon {
      position: absolute;
      top: -74px;
      left: 50%;
      transform: translateX(-50%);
      width: 148px;
      height: 148px;
      background: #c1121f;
      border-radius: 50%;
      border: 5px solid #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .more-card-icon svg {
      width: 64px;
      height: 64px;
      color: #ffffff;
    }
    /* Smaller title like original — NOT the huge 60px from rebuild */
    .more-card-title {
      margin-top: 40px;
      font-weight: 400;
      font-size: 50px;
      line-height: 1.2;
      color: #c1121f;
      font-family: 'Things', serif;
    }
    .more-card-desc {
      margin-top: 20px;
      font-weight: 600;
      font-size: 16px;
      line-height: 1.5;
      color: #000000;
    }

    /* ============ CTA BAND ============ */
    .cta {
      background: #000000;
      min-height: 500px;
      position: relative;
      overflow: hidden;
      padding: clamp(60px, 6vw, 80px) clamp(20px, 5vw, 80px);
      display: flex;
      align-items: center;
    }
    .cta .container{ max-width: 1295px; margin: 0 auto;}
    .cta-bg { position: absolute; inset: 0; z-index: 0; }
    .cta-bg img { width: 100%; height: 100%; object-fit: cover; }
    .cta-overlay {
      position: absolute; inset: 0; z-index: 1;
      background: linear-gradient(
        266.79deg,
        rgba(0, 0, 0, 0.6) 5.57%,
        rgb(0, 0, 0) 102.17%
      );
    }
    .cta-inner {
      position: relative; z-index: 2;
      width: 100%;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      flex-wrap: wrap;
    }
    .cta-text {
      flex: 1 1 400px;
      min-width: 0;
      width: 60%;
    }
    .cta-heading {
      font-weight: 500;
      font-size: 75px;
      line-height: 1.15;
      letter-spacing: 0;
      color: #ffffff;
      margin-bottom: 20px;
      font-family: 'Sherly',serif;
    }
    .cta-subtitle {
      font-weight: 600;
      font-size: clamp(20px, 2.8vw, 42px);
      line-height: 1.2;
      color: #c1121f;
      font-size: 42px;
    }
    .cta-buttons {
      display: flex;
      flex-direction: row;
      gap: 20px;
      flex-shrink: 0;
      width: 40%;
    }
    /* Original sizes: 210px / 273px wide, 80px tall */
    .cta-btn-primary {
      background: #ffffff;
      height: 80px;
      width: 45%;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #c1121f;
      font-weight: 600;
      font-size: 20px;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .cta-btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
    }
    .cta-btn-outline {
      border: 1px solid #ffffff;
      height: 80px;
      width: 45%;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      font-weight: 600;
      font-size: 20px;
      transition: background 0.2s ease;
      text-align: center;
    }
    .cta-btn-outline:hover { background: rgba(255, 255, 255, 0.1); }

    /* ============ CATERING HERO ============ */
    .catering-hero {
      position: relative;
      width: 100%;
      min-height: clamp(520px, 80vh, 1000px);
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: clamp(60px, 8vw, 120px) clamp(20px, 5vw, 80px);
    }
    .catering-hero-bg { position: absolute; inset: 0; }
    .catering-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
    .catering-hero-bg::after {
      content: '';
      position: absolute; inset: 0;
      background: rgba(0, 0, 0, 0.1);
    }
    .catering-hero-content {
      position: relative; z-index: 1;
      width: 100%;
      max-width: 1300px;
      display: flex; flex-direction: column;
      align-items: center; text-align: center;
    }
    .catering-hero-title {
      font-family: 'Anton', 'Impact', sans-serif;
      font-weight: 400;
      font-size: clamp(48px, 10vw, 140px);
      line-height: 1;
      text-transform: uppercase;
      color: #e5e2e1;
      margin-bottom: clamp(24px, 3vw, 40px);
    }
    .catering-hero-title .white-line {
      display: block;
      margin-bottom: clamp(12px, 2vw, 24px);
      font-family: 'Things', serif;
    }
    .catering-hero-title .red {
      color: #c62828;
      font-family: 'Things', serif;
      font-weight: 500;
      display: block;
      line-height: 1;
      letter-spacing: 2px;
      text-transform: uppercase;
    }
    .catering-hero-subtitle {
      font-weight: 400;
      font-size: clamp(15px, 1.7vw, 24px);
      line-height: 1.4;
      color: #ffffff;
      max-width: 731px;
      margin-bottom: clamp(32px, 4vw, 48px);
    }
    .catering-hero-cta {
      background: #c62828;
      color: #ffe0dd;
      font-weight: 700;
      font-size: clamp(14px, 1.4vw, 20px);
      line-height: 1.4;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: clamp(14px, 1.6vw, 16px) clamp(28px, 4vw, 40px);
      border-radius: 8px;
      display: inline-flex;
      transition: background 0.2s ease;
    }
    .catering-hero-cta:hover { background: #a51f1f; }

    /* ============ WHAT WE OFFER ============ */
    .what-we-offer {
      max-width: 1232px;
      margin: 0 auto;
      padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 40px);
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: clamp(20px, 2.5vw, 32px);
    }
    .offer-card {
      background: #2a2a2a;
      border-radius: 12px;
      padding: clamp(24px, 3vw, 40px);
      min-height: clamp(240px, 28vw, 328px);
      display: flex;
      flex-direction: column;
      position: relative;
      transition: transform 0.3s ease, background 0.3s ease;
    }
    .offer-card:hover { transform: translateY(-4px); background: #333333; }
    .offer-card-icon {
      width: clamp(40px, 4vw, 48px);
      height: clamp(40px, 4vw, 48px);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: clamp(20px, 3vw, 32px);
      color: #c62828;
    }
    .offer-card-icon svg { width: 100%; height: 100%; }
    .offer-card-title {
      font-weight: 100;
      font-size: 32px;
      line-height: 1.3;
      color: #e5e2e1;
      text-transform: uppercase;
      margin-bottom: clamp(16px, 2vw, 24px);
      letter-spacing: normal;
      font-family: 'Things', serif;
    }
    .offer-card-desc {
      font-weight: 400;
      font-size: 17px;
      line-height: 1.5;
      color: rgba(255, 255, 255, 0.4);
    }

    /* ============ FULL-SERVICE ============ */
    .full-service {
      max-width: 1280px;
      margin: 0 auto;
      padding: clamp(56px, 8vw, 96px) clamp(20px, 4vw, 40px);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(32px, 5vw, 57px);
      align-items: center;
    }
    .full-service-text h2 {
      font-weight: 100;
      line-height: 1.05;
      color: #e5e2e1;
      text-transform: uppercase;
      margin-bottom: clamp(20px, 3vw, 32px);
      letter-spacing: 1px;
      font-family: 'Things', serif;
      font-size: clamp(48px, 6vw, 140px);
    }
    .full-service-divider {
      width: 96px; height: 4px;
      background: #c62828;
      margin-bottom: clamp(20px, 3vw, 32px);
    }
    .full-service-text p {
      font-weight: 400;
      font-size: clamp(15px, 1.7vw, 20px);
      line-height: 1.6;
      color: #ffffff;
    }
    .full-service-image { position: relative; }
    .full-service-image::before {
      content: '';
      position: absolute;
      bottom: -64px; left: -54px;
      width: 192px; height: 192px;
      border-radius: 50%;
      background: rgba(198, 40, 40, 0.1);
      filter: blur(32px);
      z-index: 0;
    }
    .full-service-image img {
      position: relative; z-index: 1;
      width: 100%;
      height: clamp(280px, 35vw, 466px);
      object-fit: cover;
      border-radius: 12px;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    }

    /* ============ TAILORED SECTION ============ */
    .tailored-section {
      background: #1c1b1b;
      padding: clamp(64px, 10vw, 128px) clamp(20px, 6vw, 192px);
      display: flex; flex-direction: column;
      align-items: center; text-align: center;
    }
    .tailored-eyebrow {
      font-weight: 500;
      font-size: clamp(13px, 1.2vw, 16px);
      line-height: 1.4;
      letter-spacing: 3.2px;
      text-transform: uppercase;
      color: #ffffff;
      margin-bottom: 16px;
    }
    .tailored-title {
      font-weight: 100;
      font-size: clamp(48px, 6vw, 140px);
      line-height: 1.1;
      color: #c1121f;
      text-transform: uppercase;
      margin-bottom: clamp(20px, 3vw, 32px);
      letter-spacing: 1px;
      font-family: 'Things', serif;
    }
    .tailored-desc {
      font-weight: 400;
      font-size: clamp(15px, 1.7vw, 20px);
      line-height: 1.6;
      color: #ffffff;
      max-width: 810px;
    }

    /* ============ FOOD TRUCK SECTION ============ */
    .food-truck-section {
      max-width: 1280px;
      margin: 0 auto;
      background: #ffffff;
      padding: clamp(48px, 6vw, 84px) clamp(24px, 5vw, 91px);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(32px, 5vw, 58px);
      align-items: center;
      border-radius: 0;
    }
    .food-truck-image {
      width: 100%;
      height: clamp(260px, 32vw, 426px);
    }
    .food-truck-image img {
      width: 100%; height: 100%;
      object-fit: cover;
    }
    .food-truck-content { color: #000; }
    .food-truck-title {
      font-weight: 100;
      font-size: clamp(48px, 6vw, 140px);
      line-height: 1.1;
      color: #c1121f;
      letter-spacing: 2px;
      margin-bottom: clamp(24px, 3vw, 40px);
      text-transform: uppercase;
      font-family: 'Things', serif;
    }
    .food-truck-subtitle {
      font-weight: 700;
      font-size: clamp(18px, 2.2vw, 26px);
      color: #000;
      margin-bottom: clamp(16px, 2vw, 24px);
    }
    .food-truck-list { list-style: none; margin-bottom: clamp(24px, 3vw, 32px); }
    .food-truck-list li {
      display: flex; align-items: center;
      gap: 16px;
      font-weight: 500;
      font-size: clamp(15px, 1.7vw, 20px);
      color: #000;
      margin-bottom: 12px;
    }
    .food-truck-list li::before {
      content: '';
      width: 10px; height: 10px;
      border-radius: 50%;
      background: #c1121f;
      flex-shrink: 0;
    }
    .food-truck-banner {
      background: linear-gradient(to right, #c1121f 0%, #1c1b1b 100%);
      border-radius: 6px;
      padding: clamp(18px, 2vw, 22px) clamp(20px, 3vw, 37px);
      width: 100%;
    }
    .food-truck-banner p {
      font-weight: 700;
      font-size: clamp(14px, 1.6vw, 20px);
      color: #ffffff;
      line-height: 1.3;
      margin-bottom: 4px;
    }
    .food-truck-banner p:last-child { margin-bottom: 0; }

    /* ============ QUOTE FORM ============ */
    .quote-form-section {
      background: #131313;
      padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 24px);
      display: flex; justify-content: center;
    }
    .quote-form {
      background: #2a2a2a;
      border-radius: 12px;
      max-width: 768px;
      width: 100%;
      padding: clamp(28px, 4vw, 48px) clamp(24px, 4vw, 48px) clamp(40px, 5vw, 64px);
    }
    .quote-form-header { text-align: center; margin-bottom: clamp(32px, 4vw, 48px); }
    .quote-form-title {
      font-weight: 100;
      font-size: clamp(48px, 4vw, 140px);
      line-height: 1.1;
      color: #c1121f;
      text-transform: uppercase;
      margin-bottom: 16px;
      letter-spacing: 1px;
      font-family: 'Things', serif;
    }
    .quote-form-subtitle {
      font-family: 'Work Sans', sans-serif;
      font-weight: 400;
      font-size: clamp(14px, 1.3vw, 16px);
      line-height: 1.5;
      color: #ffffff;
    }
    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(20px, 3vw, 32px);
    }
    .form-field { display: flex; flex-direction: column; gap: 8px; }
    .form-field.full { grid-column: span 2; }
    .form-field label {
      font-family: 'Work Sans', sans-serif;
      font-weight: 400;
      font-size: 14px;
      line-height: 20px;
      letter-spacing: 0.7px;
      text-transform: uppercase;
      color: #ffffff;
    }
    .form-field input,
    .form-field textarea,
    .form-field select {
      background: #0e0e0e;
      border: none;
      border-bottom: 2px solid #c1121f;
      color: #e5e2e1;
      font-family: 'Work Sans', sans-serif;
      font-size: 16px;
      padding: 14px 15px 17px;
      width: 100%;
      outline: none;
      transition: background 0.2s ease;
    }
    .form-field input::placeholder,
    .form-field textarea::placeholder { color: rgba(229, 226, 225, 0.2); }
    .form-field input:focus,
    .form-field textarea:focus,
    .form-field select:focus { background: #1a1a1a; }
    .form-field textarea {
      min-height: 120px;
      resize: vertical;
      line-height: 24px;
    }
    .form-field select {
      appearance: none;
      -webkit-appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23e5e2e1' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 15px center;
      padding-right: 45px;
      cursor: pointer;
    }
    .form-submit-wrapper { grid-column: span 2; padding-top: clamp(16px, 2vw, 24px); }
    .form-submit {
      width: 100%;
      background: #c1121f;
      color: #ffe0dd;
      font-weight: 900;
      font-size: clamp(15px, 1.6vw, 20px);
      line-height: 1.4;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: clamp(14px, 1.8vw, 20px);
      border-radius: 8px;
      transition: background 0.2s ease;
      display: block;
      text-align: center;
    }
    .form-submit:hover { background: #a10f1a; }
    /* ============ CONTACT HERO ============ */
    .contact-hero {
      position: relative;
      width: 100%;
      height: clamp(220px, 28vw, 358px);
      overflow: hidden;
      display: flex; align-items: center; justify-content: center;
    }
    .contact-hero-bg { position: absolute; inset: 0; }
    .contact-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
    .contact-hero-overlay { position: absolute; inset: 0; background: #000; opacity: 0.69; }
    .contact-hero-content { position: relative; z-index: 1; text-align: center; padding: 0 20px; }
    .contact-hero-title {
      font-family: 'Things', serif;
      font-weight: 100;
      font-size: clamp(44px, 8vw, 96px);
      line-height: 1;
      color: #ffffff;
      letter-spacing: 2px;
      margin-bottom: 14px;
      text-transform: uppercase;
    }
    .contact-hero-title .red { color: #c1121f; font-family: 'Things', serif; }
    .contact-hero-subtitle {
      font-weight: 600;
      font-size: clamp(15px, 1.8vw, 24px);
      color: #ffffff;
      line-height: 1.4;
    }

    /* ============ GET IN TOUCH ============ */
    .get-in-touch {
      background: #0a0a0a;
      padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 120px);
      display: grid;
      grid-template-columns: minmax(300px, 440px) 1fr;
      gap: clamp(32px, 5vw, 60px);
      max-width: 1536px;
      margin: 0 auto;
    }
    .section-title {
      font-family: 'Things', serif;
      font-weight: 400;
      font-size: clamp(30px, 4vw, 48px);
      line-height: 1;
      letter-spacing: 1.5px;
      color: #ffffff;
      margin-bottom: clamp(28px, 4vw, 48px);
    }
    .section-title .red { color: #c1121f; }
    .info-list { display: flex; flex-direction: column; gap: clamp(20px, 3vw, 32px); }
    .info-item { display: flex; gap: 16px; align-items: flex-start; }
    .info-icon {
      width: 40px; height: 40px; border-radius: 50%;
      background: #c1121f;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; color: #fff;
    }
    .info-icon svg { width: 18px; height: 18px; }
    .info-content { flex: 1; padding-top: 6px; min-width: 0; }
    .info-label {
      font-family: 'Things', serif;
      font-weight: 400;
      font-size: clamp(18px, 2vw, 22px);
      letter-spacing: 1.2px;
      color: #ffffff;
      margin-bottom: 6px;
    }
    .info-value {
      font-weight: 500;
      font-size: clamp(14px, 1.4vw, 16px);
      color: #99a1aa;
      line-height: 1.5;
    }
    .info-value.phone {
      font-weight: 600;
      font-size: clamp(17px, 1.8vw, 20px);
      color: #dc2626;
    }
    .hours-list { display: flex; flex-direction: column; gap: 6px; }
    .hours-row {
      display: flex; justify-content: space-between; gap: 20px;
      max-width: 260px;
    }
    .hours-day { color: #99a1aa; font-size: clamp(14px, 1.4vw, 16px); font-weight: 500; }
    .hours-time { color: #ffffff; font-size: clamp(13px, 1.3vw, 14px); font-weight: 500; }
    .question-card {
      background: #141414;
      border-radius: 8px;
      padding: clamp(20px, 2.5vw, 28px);
      margin-top: clamp(28px, 4vw, 40px);
      max-width: 440px;
    }
    .question-card h4 {
      font-family: 'Things', serif;
      font-weight: 400;
      font-size: clamp(18px, 2vw, 22px);
      letter-spacing: 1px;
      color: #ffffff;
      margin-bottom: 8px;
    }
    .question-card p {
      font-weight: 400;
      font-size: clamp(13px, 1.3vw, 15px);
      color: #99a1aa;
      line-height: 1.5;
      margin-bottom: 14px;
    }
    .question-card a {
      font-weight: 600;
      font-size: clamp(16px, 1.7vw, 18px);
      color: #c1121f;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    /* MAP */
    .map-container {
      width: 100%;
      height: clamp(300px, 40vw, 520px);
      border-radius: 8px;
      overflow: hidden;
      background: #1a1a1a;
    }
    .map-container iframe {
      width: 100%; height: 100%;
      border: none; filter: grayscale(20%);
    }

    /* ============ RESERVATIONS ============ */
    .reservations-section {
      background: #000000;
      padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 120px);
    }
    .reservations-header {
      text-align: center;
      margin-bottom: clamp(32px, 4vw, 48px);
    }
    .reservations-title {
      font-family: 'Things', serif;
      font-weight: 400;
      font-size: clamp(32px, 5vw, 56px);
      letter-spacing: 2px;
      color: #ffffff;
      margin-bottom: 8px;
      line-height: 1.1;
    }
    .reservations-title .red { color: #c1121f; }
    .reservations-subtitle {
      font-weight: 500;
      font-size: clamp(14px, 1.5vw, 17px);
      color: #99a1aa;
    }
    .reservations-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: clamp(20px, 3vw, 32px);
      max-width: 900px;
      margin: 0 auto;
    }
    .reservation-card {
      background: #1a1a1a;
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 12px;
      padding: clamp(36px, 4vw, 48px) clamp(24px, 3vw, 32px);
      text-align: center;
      transition: transform 0.3s ease, border-color 0.3s ease;
    }
    .reservation-card:hover {
      transform: translateY(-4px);
      border-color: rgba(193, 18, 31, 0.5);
    }
    .reservation-card-icon {
      width: clamp(56px, 6vw, 64px);
      height: clamp(56px, 6vw, 64px);
      border-radius: 50%;
      background: rgba(193, 18, 31, 0.15);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 20px;
      color: #c1121f;
    }
    .reservation-card-icon svg { width: 28px; height: 28px; }
    .reservation-card-title {
      font-weight: 100;
      font-size: 28px;
      color: #ffffff;
      margin-bottom: 12px;
      font-family: 'Things', serif;
    }
    .reservation-card-desc {
      font-weight: 400;
      font-size: clamp(13px, 1.3vw, 15px);
      color: #99a1aa;
      line-height: 1.5;
      margin-bottom: clamp(20px, 3vw, 28px);
    }
    .reservation-card-btn {
      background: #dc2626;
      color: #ffffff;
      font-weight: 700;
      font-size: clamp(14px, 1.4vw, 16px);
      padding: clamp(12px, 1.5vw, 14px) clamp(22px, 3vw, 28px);
      border-radius: 4px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: background 0.2s ease;
    }
    .reservation-card-btn:hover { background: #a10f1a; }
    .reservation-card-btn svg { width: 18px; height: 18px; }


    /* ============ FOOTER ============ */
    .footer {
      background: #111111;  position: relative; 
      padding: clamp(40px, 5vw, 64px) clamp(20px, 6vw, 120px) clamp(24px, 3vw, 40px);
    }
    .footer-inner { max-width: 1295px; margin: 0 auto;}
    .footer-top {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: clamp(32px, 4vw, 48px);
      padding-bottom: clamp(24px, 3vw, 36px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .footer-brand-logo {
      display: flex; align-items: center; gap: 8px;
      margin-bottom: 20px;
    }
    .footer-description {
      font-size: 14px;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.4);
      max-width: 300px;
    }
    .footer-heading {
      font-weight: 700;
      font-size: 14px;
      letter-spacing: 1.4px;
      color: #ffffff;
      text-transform: uppercase;
      margin-bottom: 16px;
    }
    .footer-list {
      list-style: none;
      display: flex; flex-direction: column;
      gap: 12px;
    }
    .footer-list a, .footer-list span {
      font-size: 14px;
      line-height: 1.4;
      color: rgba(255, 255, 255, 0.4);
      transition: color 0.2s ease;
    }
    .footer-list a:hover { color: #ffffff; }
    .footer-hours-item {
      display: flex; justify-content: space-between; gap: 12px;
    }
    .footer-hours-day { color: rgba(255, 255, 255, 0.4); font-size: 14px; }
    .footer-hours-time { color: rgba(255, 255, 255, 0.7); font-size: 14px; }
    .footer-social-heading {
      font-weight: 700;
      font-size: 14px;
      letter-spacing: 1.4px;
      color: #ffffff;
      text-transform: uppercase;
      margin-bottom: 16px;
    }
    .footer-socials {
      display: flex;
      gap: 12px;
      margin-bottom: 20px;
      flex-wrap: wrap;
    }
    .footer-social-link {
      width: 40px; height: 40px; border-radius: 50%;
      background: #ffffff;
      display: flex; align-items: center; justify-content: center;
      transition: transform 0.2s ease;
    }
    .footer-social-link:hover { transform: scale(1.1); }
    .footer-social-link svg { width: 18px; height: 18px; }
    .footer-social-link.whatsapp {
      background: transparent;
      color: #25d366;
    }
    .footer-social-link.whatsapp svg { width: 24px; height: 24px; }
    .footer-bottom {
      padding-top: 20px;
      display: flex; justify-content: space-between;
      align-items: center; gap: 16px;
      flex-wrap: wrap;
    }
    .footer-copyright {
      display: flex; flex-direction: column; gap: 2px;
      font-size: 12px;
      color: rgba(255, 255, 255, 0.3);
    }
    .footer-legal {
      display: flex; gap: 20px; flex-wrap: wrap;
    }
    .footer-legal a {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.3);
      transition: color 0.2s ease;
    }
    .footer-legal a:hover { color: rgba(255, 255, 255, 0.6); }

    .footer-arrow-up {
      position: fixed;
      right: 20px; bottom: 20px;
      width: 44px; height: 44px;
      background: #c1121f;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      z-index: 100;
      transition: background 0.2s ease, transform 0.2s ease;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
    .footer-arrow-up:hover {
      background: #a10f1a;
      transform: translateY(-2px);
    }
    .footer-arrow-up svg { width: 18px; height: 18px; color: #ffffff; }
    /* phone-icon */
    .phone-icon{
       width: 45px;
    height: 45px;
    stroke: #fff;
    stroke-width: 2;
    cursor: pointer;
    transition: 0.3s ease;
    position: fixed;
    right: 20px;
    bottom: 73px;
    background: #c1121f;
    padding: 15px;
    border-radius: 50%;
    z-index: 2;
}

.phone-icon:hover{
    stroke: #ff4d4d;
    transform: scale(1.1);
}
    
/* Page Menu */
/* ============ MENU HERO ============ */
.body-content{ background: #0a0a0a;}
    .menu-hero {
      position: relative; width: 100%;
      height: clamp(240px, 30vw, 381px);
      overflow: hidden; background: #000;
    }
    .menu-hero-bg { position: absolute; width: 100%;
  height: 100%; }
    .menu-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
    
    .menu-hero-bg .slide {position: absolute; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.8s ease-in-out;}
    .menu-hero-bg .slide.active { opacity: 1;}
    .menu-hero-overlay { position: absolute; width: 100%; height: 100%; background: rgba(0,0,0,0.4); z-index: 1;}
    .menu-hero-content {
     position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  top: 50%;
  transform: translateY(-50%);
    }
    .menu-hero-title {
      font-weight: 100;
      font-size: clamp(44px, 8vw, 96px);
      line-height: 1.1;
      color: #ffffff; font-family: 'Things', serif; 
    }
    .menu-hero-title .red { color: #dc2626; }
    .red {color: #c1121f;}
    .menu-hero-subtitle {
      margin-top: 14px;
      font-weight: 600;
      font-size: clamp(14px, 1.6vw, 20px);
      color: #ffffff;
    }
/* dots */
.hero-dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  z-index: 3;
}

.hero-dots span {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  cursor: pointer;
}

.hero-dots span.active {
  background: #fff;
}
    /* ============ TOGGLE PILL ============ */
    .section-toggle {
      display: flex; justify-content: center;
      padding: clamp(32px, 5vw, 60px) 20px clamp(24px, 3vw, 40px);
    }
    .section-toggle-pill {
      background: #373737;
      border-radius: 60px;
      padding: clamp(12px, 1.5vw, 20px) clamp(20px, 4vw, 60px);
      display: flex; gap: clamp(12px, 3vw, 40px); align-items: center;
      flex-wrap: wrap;
      justify-content: center;
    }
    .toggle-btn {
      font-weight: 600; font-size: clamp(14px, 1.4vw, 20px);
      color: #ffffff; text-transform: capitalize;
      padding: clamp(10px, 1.2vw, 14px) clamp(18px, 2vw, 28px);
      border-radius: 40px;
      white-space: nowrap;
      transition: all 0.2s ease;
    }
    .toggle-btn.active { background: #dc2626; }
    .toggle-btn:not(.active):hover { color: #dc2626; }

    /* ============ CATEGORY TABS ============ */
    .category-tabs-wrapper {
      display: flex; justify-content: center;
      padding: 0 clamp(16px, 3vw, 40px) clamp(32px, 5vw, 60px);
    }
    .category-tabs {
      background: #373737;
      border-radius: 40px;
      min-height: 72px;
      display: flex; align-items: center;
      overflow-x: auto;
      scrollbar-width: none;
      -ms-overflow-style: none;
      padding: 8px clamp(12px, 3vw, 40px);
      gap: clamp(8px, 2vw, 32px);
      max-width: 100%;
    }
    .category-tabs::-webkit-scrollbar { display: none; }
    .category-tab {
      font-weight: 600; font-size: clamp(13px, 1.3vw, 18px);
      color: #ffffff; text-transform: capitalize;
      padding: clamp(10px, 1.2vw, 14px) clamp(16px, 2vw, 26px);
      border-radius: 40px;
      white-space: nowrap;
      transition: all 0.2s ease;
      flex-shrink: 0;
    }
    .category-tab.active { background: #dc2626; }
    .category-tab:not(.active):hover { color: #dc2626; }

    /* ============ MENU CONTENT ============ */
    .menu-content {
      max-width: 1208px;
      margin: 0 auto;
      padding: 0 clamp(20px, 4vw, 40px) clamp(40px, 6vw, 80px);
    }
    .menu-section {
      display: none;
      flex-direction: column;
      gap: clamp(24px, 3vw, 48px);
      padding: clamp(24px, 3vw, 40px) 0;
    }
    .menu-section.active { display: flex; }
    .menu-section-header { text-align: center; }
    .menu-section-title {
      font-weight: 100;
      font-size: clamp(32px, 5vw, 56px);
      color: #ffffff; margin-bottom: 12px;
      letter-spacing: 1px;
      font-family: 'Things', serif;
    }
    .menu-section-subtitle {
      font-weight: 500; font-size: clamp(15px, 1.5vw, 20px);
      color: #ffffff; line-height: 1.5;
    }
    .menu-info-box {
      border: 4px solid #c1121f;
      padding: clamp(24px, 3vw, 44px) clamp(24px, 3.5vw, 52px);
      display: flex; flex-direction: column; gap: clamp(14px, 1.5vw, 22px);
    }
    .menu-info-box p {
      font-weight: 600; font-size: clamp(16px, 1.8vw, 26px);
      color: #ffffff; line-height: 1.3;
    }
    .menu-info-box p .red { color: #c1121f; }
    .menu-item {
      display: flex; flex-direction: column; gap: 6px;
      padding-bottom: clamp(18px, 2vw, 26px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }
    .menu-item-header {
      display: flex; justify-content: space-between;
      align-items: center; gap: 16px;
      flex-wrap: wrap;
    }
    .menu-item-name {
      font-weight: 700; font-size: clamp(18px, 2.2vw, 28px);
      color: #ffffff; flex: 1; min-width: 160px;
    }
    .menu-item-price {
      font-weight: 700; font-size: clamp(18px, 2.2vw, 28px);
      color: #c1121f; white-space: nowrap;
    }
    .menu-item-desc {
      font-weight: 400; font-size: clamp(14px, 1.4vw, 18px);
      color: #ffffff; line-height: 1.5;
    }
    .menu-item-desc .red { color: #c1121f; }
    .sides-box {
      border: 4px solid #c1121f;
      padding: clamp(24px, 3vw, 44px); text-align: center;
    }
    .sides-box-title {
      font-weight: 700; font-size: clamp(22px, 2.8vw, 32px);
      color: #ffffff; margin-bottom: 20px;
      letter-spacing: 1px;
    }
    .sides-box p {
      font-weight: 600; font-size: clamp(15px, 1.7vw, 22px);
      color: #ffffff; line-height: 1.4;
    }
    .wings-box {
      border: 4px solid #c1121f;
      padding: clamp(24px, 3vw, 44px) clamp(24px, 3.5vw, 52px);
      display: flex; flex-direction: column; gap: clamp(20px, 2vw, 26px);
    }
    .wings-box-section h4 {
      font-weight: 700; font-size: clamp(20px, 2.3vw, 28px);
      color: #ffffff;
      text-decoration: underline;
      text-decoration-color: #c1121f;
      margin-bottom: 12px;
    }
    .wings-box-section p {
      font-weight: 400; font-size: clamp(14px, 1.4vw, 18px);
      color: #ffffff; text-transform: capitalize;
      line-height: 1.6;
    }
    .wings-box-section ul {
      list-style: none;
      font-weight: 400; font-size: clamp(14px, 1.4vw, 18px);
      color: #ffffff; text-transform: capitalize;
      line-height: 1.8;
    }
    /* ============ PAGINATION ============ */
    .menu-pagination {
      display: flex; justify-content: center;
      gap: 16px;
      padding: clamp(24px, 3vw, 40px) 0 clamp(32px, 5vw, 60px);
    }
    .pagination-btn {
      width: clamp(56px, 6vw, 80px);
      height: clamp(56px, 6vw, 80px);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: all 0.2s ease;
    }
    .pagination-btn.prev {
      border: 2px solid rgba(255, 255, 255, 0.3);
      background: transparent; color: #ffffff;
    }
    .pagination-btn.prev:hover {
      border-color: #ffffff; background: rgba(255, 255, 255, 0.1);
    }
    .pagination-btn.next {
      background: #c1121f; color: #ffffff;
    }
    .pagination-btn.next:hover { background: #a10f1a; }
    .pagination-btn svg {
      width: clamp(20px, 2.5vw, 28px);
      height: clamp(20px, 2.5vw, 28px);
    }
/* Privacy */
.privacy{ color: #fff; padding: 50px 0; min-height: 500px;}
.privacy h1{ text-align: center; font-family: 'Things'; text-transform: uppercase; letter-spacing: 4px; font-size: 50px;}
.privacy h2{ margin-top: 30px;}
.privacy ul{ margin:0 0 15px 30px;}
.privacy ul li{ line-height: 22px;}
.coming-soon{ display: flex; min-height: 300px; justify-content: center; align-items: center; font-size: 25px;}
.privacy a{ text-decoration: underline;}
.privacy a:hover{ text-decoration: none;}
    /* ============ MOBILE NAV ============ */
    @media screen and (max-width: 1199px) and (min-width: 992px) {
      .cta-heading{ font-size: 54px;}
      .cta-subtitle{ font-size: 37px;}
    }
    @media (max-width: 1024px) {
      .navbar-menu {
        position: fixed;
        top: 95px; left: 0; right: 0;
        flex-direction: column;
        gap: 0;
        background: rgba(20, 20, 20, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 8px 24px 20px;
        max-height: calc(100vh - 95px);
        overflow-y: auto;
        display: none;
        align-items: stretch;
      }
      .navbar-menu.mobile-open { display: flex; }
      .navbar-menu a {
        padding: 16px 4px;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        text-align: left;
        font-size: 15px;
      }
      .navbar-menu a:last-child { border-bottom: none; }
      .mobile-nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
      }
      .full-service { grid-template-columns: 1fr; gap: 40px; }
      .food-truck-section { grid-template-columns: 1fr; gap: 32px; }
      .get-in-touch { grid-template-columns: 1fr; gap: 40px; }
    }
@media screen and (max-width: 991px) and (min-width: 768px) {
  .cta-subtitle{ font-size: 32px; }
  .cta-heading{ font-size: 48px; }
  .cta-buttons, .cta-text{width: 100%;}
  .more-title{ margin-bottom: clamp(60px, 13vw, 100px);}
}
    @media (max-width: 767px) {
      body { padding-top: 64px; }
      .navbar { height: 64px; padding: 0 16px; }
      .navbar-menu { top: 64px; max-height: calc(100vh - 64px); }
      .navbar-brand { gap: 10px; }
      .navbar-logo, .navbar-logo img { width: 32px; height: 32px; }
      .navbar-brand-text { font-size: 15px; }
      .navbar-cta { font-size: 12px; padding: 7px 14px; }

      .hero-buttons { width: 100%; }
      .btn-primary, .btn-outline {
        width: 100%;
        justify-content: center;
      }
      .cta-text{ width: 100%;}
      .serve{ padding: 100px 35px;}
      .cta-inner {
        flex-direction: column;
        text-align: center;
        align-items: stretch;
      }
      .cta-buttons {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
      }
      .cta-btn-primary, .cta-btn-outline {
        width: 100%;
        height: 64px;
        font-size: 17px;
      }

      .more-card-icon {
        width: 120px; height: 120px;
        top: -60px;
      }
      .more-card-icon svg { width: 52px; height: 52px; }

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
       .menu-item-header { flex-direction: column; align-items: flex-start; gap: 4px; }
      .menu-item-price { align-self: flex-start; }
      .form-grid { grid-template-columns: 1fr; }
      .form-field.full, .form-submit-wrapper { grid-column: auto; }
      .catering-hero-cta { width: 100%; max-width: 340px; justify-content: center; }
      .footer-hours-day{ width: 46%;}
      .footer-hours-time{ width: 50%;}
    }
    @media screen and (max-width: 480px) {
      .cta-heading{ font-size: 29px;}
      .cta-text{ flex: auto;}
      .cta-subtitle{ font-size: 22px;}
      .serve-card{ width: 90%; aspect-ratio: 390 / 453;}
      .menu-hero-content{ width: 90%; margin: auto;}
      .reservations-cards { max-width: 100%;}
      .reservation-card{ width: 94%;}
    }