@font-face {
  font-family: "CQLogo";
  src: url("../assets/fonts/Handlee-Regular.ttf") format("truetype");
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fff;
  color: #151515;
}

/* Header */

.cq-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 72px;
  padding: 0 32px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid #eee;
}

.cq-logo {
  font-family: "CQLogo", sans-serif;

  color: #111;
  text-decoration: none;

  font-size: 34px;
  font-weight: 400;

  letter-spacing: 0.01em;
  line-height: 1;
}

.cq-logo span {
  color: #de0f0f;
}

.cq-nav {
  display: flex;
  gap: 24px;
}

.cq-nav a {
  color: #111;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
}

.cq-nav a.active,
.cq-nav a:hover {
  color: #de0f0f;
}

/* Tabs */

.menu-tabs {
  position: sticky;
  top: 72px;
  z-index: 90;

  display: flex;
  gap: 10px;
  overflow-x: auto;

  padding: 14px 20px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid #eee;
}

.menu-tabs a {
  white-space: nowrap;
  color: #111;
  background: #f3f3f3;

  padding: 10px 16px;
  border-radius: 999px;

  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
}

.menu-tabs a:hover {
  background: #111;
  color: white;
}

/* Sections */

.menu-intro {
  padding: 96px 24px 70px;
  max-width: 1180px;
  margin: 0 auto;
}

.section-kicker {
  margin-bottom: 16px;
  color: #de0f0f;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.menu-intro h1 {
  max-width: 920px;
  font-size: clamp(48px, 7vw, 104px);
  line-height: .95;
  letter-spacing: -0.05em;
  margin-bottom: 24px;
}

.menu-intro p:not(.section-kicker) {
  max-width: 760px;
  color: #555;
  font-size: 22px;
  line-height: 1.55;
}

.menu-intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
  align-items: center;
  margin-top: 34px;
}

.menu-intro-actions span {
  max-width: 440px;
  color: #666;
  font-size: 16px;
  line-height: 1.5;
}

.menu-service-link {
  color: #111;
  font-size: 18px;
  font-weight: 900;
  text-decoration-color: #de0f0f;
  text-underline-offset: 5px;
}

.menu-section {
  padding: 90px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.menu-section.soft {
  max-width: none;
  background: #f7f7f7;
}

.menu-section.soft > * {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading h2 {
  font-size: clamp(38px, 5vw, 76px);
  line-height: .95;
  letter-spacing: -0.06em;
}

.section-heading p {
  color: #de0f0f;
}

/* Cards */

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

.featured-grid {
  grid-template-columns: repeat(2, 1fr);
}

.small-grid {
  grid-template-columns: repeat(4, 1fr);
}

.menu-card {
  background: white;
  border: 1px solid #eee;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,.08);
}

.menu-card {
  transition: transform .25s ease, box-shadow .25s ease;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,.13);
}

.menu-card picture {
  display: block;
}

.menu-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;

  background:
    linear-gradient(135deg, #222, #de0f0f);
  display: block;
}

.menu-card.large img {
  height: 360px;
}

.menu-card.dark {
  background: #111;
  color: white;
  border-color: #111;
}

.card-content {
  padding: 26px;
}

.card-content h3,
.simple-card h3 {
  font-size: 28px;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.card-content p,
.simple-card p {
  font-size: 17px;
  line-height: 1.5;
  color: #555;
}

.menu-card.dark .card-content p {
  color: rgba(255,255,255,.75);
}

.tag {
  display: inline-block;
  background: #de0f0f;
  color: white;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 14px;
}

.tag.gold {
  background: #ffcf33;
  color: #111;
}

.simple-card {
  padding: 28px;
}

/* CTA */

.menu-cta {
  padding: 100px 24px;
  text-align: center;
  color: white;
  background: #111;
}

.menu-cta h2 {
  font-size: clamp(40px, 6vw, 82px);
  line-height: .95;
  letter-spacing: -0.06em;
  margin-bottom: 20px;
}

.menu-cta p {
  max-width: 720px;
  margin: 0 auto 32px;
  color: rgba(255,255,255,.78);
  font-size: 22px;
  line-height: 1.45;
}

.cta-btn {
  display: inline-block;
  background: #de0f0f;
  color: white;
  padding: 16px 30px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
}

/* Mobile */

@media (max-width: 900px) {
  .cq-header {
    height: auto;
    padding: 18px 22px;
    flex-direction: column;
    gap: 14px;
  }

  .cq-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .menu-tabs {
    top: 117px;
  }

  .menu-grid,
  .featured-grid {
    grid-template-columns: 1fr;
  }

  .menu-card.large img,
  .menu-card img {
    height: 260px;
  }

  .menu-intro {
    padding: 72px 24px 42px;
  }

  .menu-intro h1 {
    letter-spacing: -0.04em;
  }

  .menu-section {
    padding: 56px 24px;
  }

  /* FOOTER */

  .cq-footer {
    background: #0f0f0f;
    color: white;

    padding: 90px 24px 40px;

    margin-top: 120px;
  }

  .footer-grid {
    max-width: 1400px;

    margin: auto;

    display: grid;
    grid-template-columns:
      1.6fr
      1fr
      1fr
      1fr;

    gap: 54px;
  }

  .footer-logo {
    font-family: "CQLogo", sans-serif;

    color: white;
    text-decoration: none;

    font-size: 38px;

    display: inline-block;

    margin-bottom: 22px;
  }

  .footer-logo span {
    color: #de0f0f;
  }

  .footer-brand p {
    color: rgba(255,255,255,.72);

    line-height: 1.8;

    max-width: 440px;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .footer-links h3 {
    font-size: 14px;

    text-transform: uppercase;
    letter-spacing: .12em;

    color: #ffcf33;

    margin-bottom: 10px;
  }

  .footer-links a {
    color: rgba(255,255,255,.78);

    text-decoration: none;

    transition: opacity .2s ease;
  }

  .footer-links a:hover {
    opacity: .65;
  }

  .footer-bottom {
    max-width: 1400px;

    margin: 70px auto 0;
    padding-top: 26px;

    border-top: 1px solid rgba(255,255,255,.10);

    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
  }

  .footer-bottom p {
    color: rgba(255,255,255,.52);

    font-size: 14px;
  }

  /* MOBILE */

  @media (max-width: 950px) {

    .footer-grid {
      grid-template-columns: 1fr;
      gap: 44px;
    }

    .footer-bottom {
      flex-direction: column;
    }

  }
}
