/* Smokepit - Dark BBQ landing page (HTML layout from screenshots) */

@font-face {
  font-family: "Nashville";
  src: url("./assets/fonts/NASHVILL.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg0: #0f0a08;
  --bg1: #1a1411;
  --card: rgba(255, 255, 255, 0.06);
  --card2: rgba(255, 255, 255, 0.08);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.6);
  --muted2: rgba(255, 255, 255, 0.45);
  --red: #FF1500;
  --red2: #e12a1a;
  --line: rgba(255, 255, 255, 0.12);
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  /* background: radial-gradient(900px 450px at 50% -10%, rgba(198, 30, 18, 0.25), transparent 60%),
    linear-gradient(180deg, #120c09 0%, #0f0a08 70%); */
  background: #181311;
  color: var(--text);
}

img {
  max-width: 100%;
  display: block;
}

/* .skip-link {
  position: absolute;
  left: 10px;
  top: 10px;
  padding: 10px 12px;
  background: #fff;
  color: #000;
  border-radius: 10px;
  transform: translateY(-130%);
  transition: transform 0.2s ease;
  z-index: 1000;
}

.skip-link:focus {
  transform: translateY(0%);
} */

.section {
  padding: 72px 0;
}

.section__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section__inner--narrow {
  max-width: 920px;
}

.section-title {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 38px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.1px;
  text-align: center;
  margin: 0;
}

.section-title__underline {
  display: block;
  width: 80px;
  height: 3px;
  background: #FF1500;
  margin: 18px auto 0;
  border-radius: 6px;
}

.section-title--tight {
  margin-bottom: 16px;
}

.section-title--faq {
  text-align: center;
}

.section-subtitle {
  max-width: 820px;
  margin: 18px auto 0;
  text-align: center;
  color: #9CA3AF;
  font-size: 16px;
  line-height: 1.6;
}

.section__center {
  display: flex;
  justify-content: center;
  margin-top: 24px;
  margin-bottom: 28px;
}

.hero {
  position: relative;
  min-height: 720px;
  padding-bottom: 24px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('./assets/images/other/hero-bg-1.png');
  /* Swap this with a real hero background image if you have one */
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(24, 19, 17, 0) 0%, rgba(24, 19, 17, 0.5) 26.92%, #181311 84.13%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 60px 24px 40px;
}

.top-nav {
  position: relative;
  z-index: 2;
  padding: 10px 0;
  background: #181311E5;
}

.top-nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.top-nav__panel {
  display: contents;
}

.top-nav__toggle {
  display: none;
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  width: 44px;
  height: 40px;
  padding: 0;
  color: rgba(255, 255, 255, 0.9);
}

.top-nav__toggle-bars {
  display: inline-block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  position: relative;
}

.top-nav__toggle-bars::before,
.top-nav__toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.top-nav__toggle-bars::before {
  top: -6px;
}

.top-nav__toggle-bars::after {
  top: 6px;
}

.top-nav--open .top-nav__toggle-bars {
  background: transparent;
}

.top-nav--open .top-nav__toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}

.top-nav--open .top-nav__toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.top-nav__menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 26px;
  align-items: center;
}

.top-nav__link {
  text-decoration: none;
  color: #D1D5DB;
  font-size: 14px;
  font-weight: 500;
}

.top-nav__link:hover {
  color: #fff;
}

.top-nav__cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-nav__phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  border-radius: 8px;
  padding: 9px 26px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  user-select: none;
}

.btn--wide {
  min-width: 250px;
}

.btn--red {
  background: var(--red);
  color: #fff;
  border-color: rgba(0, 0, 0, 0.1);
}

.btn--black {
  background: #121212;
  color: #fff;
  border-color: #121212;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: #FFFFFF1A
}

.btn--small {
  padding: 12px 22px;
  border-radius: 10px;
}

.btn--white {
  background: #f4f4f4;
  color: var(--red);
  border-color: #f4f4f4;
}

.btn--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
}

.hero__copy {
  max-width: 660px;
}

.hero__tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  /* background: rgba(198, 30, 18, 0.16); */
  background: #FF150066;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.6px;
}

.hero__headline {
  margin: 22px 0 0;
  font-family: "Nashville", "Courier New", monospace;
  text-transform: uppercase;
  letter-spacing: -0.8px;
  font-weight: 400;
  line-height: 0.95;
  font-size: 80px;
}

.hero__line {
  display: block;
}

.hero__line--white {
  color: #ffffff;
  -webkit-text-stroke: 1px rgb(204 204 204 / 60%);
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.hero__line--red {
  color: #FF1500;
  -webkit-text-stroke: 1px rgb(163 34 34 / 65%);
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.hero__description {
  margin: 18px 0 0;
  color: #D1D5DB;
  font-size: 18px;
  line-height: 1.65;
  max-width: 560px;
}

.hero__buttons {
  display: flex;
  gap: 14px;
  margin-top: 26px;
  align-items: center;
}

.hero__infobar {
  position: relative;
  z-index: 3;
  background: #231B16;
  padding: 10px 0;
  /* margin-top: 36px; */
}

.hero__infobar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.info-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 220px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  font-weight: 500;
}

.hero__infobar .info-item__icon {
  display: inline-flex;
  color: var(--red);
}

.hero__infobar .info-item__text {
  color: #9CA3AF;
  font-size: 15px;
  font-weight: 400;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.gallery__main,
.gallery__side {
  display: grid;
}

.gallery__main {
  grid-template-rows: 1fr;
}

.gallery__side {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
}

.gallery__photo {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  min-height: 220px;
  position: relative;
  overflow: hidden;
}

.gallery__photo--main {
  min-height: 320px;
}

.gallery__photo--sm {
  min-height: 180px;
}

/* Placeholder "photo" surface */
.gallery__photo .gallery__photo--main::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px 220px at 60% 10%, rgba(198, 30, 18, 0.22), transparent 60%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.35));
}

.play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: none;
  background: transparent;
  cursor: pointer;
}

.play__triangle {
  width: 66px;
  height: 66px;
  border-radius: 999px;
  background: white;
  /* border: 2px solid rgba(255, 255, 255, 0.25); */
  position: relative;
}

.play__triangle::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 22px;
  width: 0;
  height: 0;
  border-left: 18px solid rgba(255, 0, 0, 0.92);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

/* Cards */
.cards {
  display: grid;
  gap: 22px;
}

.cards--3 {
  grid-template-columns: repeat(3, 1fr);
}

.deal-card,
.feature-card,
.quote-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.deal-card__day {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex;
  padding: 6px 10px;
  background: rgba(198, 30, 18, 0.92);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  border-radius: 0px 0px 0px 7px;
  letter-spacing: 0.6px;
  margin-bottom: 10px;
  align-self: flex-start;
}

.deal-card__title {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
}

.deal-card__price {
  margin-top: 8px;
  color: var(--red);
  font-weight: 800;
  font-size: 17px;
}

.deal-card__desc {
  margin: 12px 0 0;
  color: #9CA3AF;
  font-size: 13px;
  line-height: 1.65;
}

.deal-card__image {
  margin-top: 18px;
  height: 170px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(0, 0, 0, 0.35));
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.feature-card {
  text-align: center;
}

.feature-card__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: #c61e122b;
  display: grid;
  place-items: center;
}

.feature-card__title {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
}

.feature-card__desc {
  margin: 10px 0 0;
  color: #9CA3AF;
  font-size: 15px;
  line-height: 1.65;
}

/* Quote cards */
.quote-card {
  padding: 22px 20px 18px;
}

.quote-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.stars {
  color: #ffcf3a;
  font-size: 14px;
  letter-spacing: 3px;
}

.quote-card__score {
  color: var(--red2);
  font-size: 18px;
  font-weight: 900;
}

.quote-card__text {
  margin: 18px 0 0;
  color: #D1D5DB;
  font-size: 15px;
  line-height: 1.55;
}

.quote-card__person {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 800;
  font-size: 12px;
}

.quote-card__name {
  font-weight: 800;
  font-size: 13px;
}

.quote-card__role {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  margin-top: 2px;
}

/* FAQ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.faq__item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
}

.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 20px;
  font-weight: 500;
  color: #ffffff;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "˅";
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
}

.faq__body {
  padding: 0 18px 16px;
  color: #9CA3AF;
  font-size: 14px;
  line-height: 1.6;
}

/* Instagram strip */
.instagram {
  display: block;
}

.instagram__handle {
  font-weight: 900;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  margin-bottom: 22px;
  font-size: 20px;
}

.instagram__row {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 24px;
}

.thumb {
  /* width: 170px;
  height: 90px; */
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.45));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Find Us */
.find {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 22px;
  align-items: center;
}

.find__title {
  font-size: 34px;
  margin: 0;
  font-weight: 900;
  text-align: left;
}

.find__list {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.find-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.find-item__icon {
  width: 34px;
  height: 34px;
  border-radius: 4px;
  background: #FF150033;
  /* border: 1px solid rgba(198, 30, 18, 0.25); */
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  margin-top: 2px;
}

.find-item__label {
  font-weight: 900;
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
}

.find-item__value {
  color: #9CA3AF;
  margin-top: 6px;
  font-size: 16px;
  line-height: 1.6;
}

.find-item__link {
  display: inline-block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

.find__map {
  /* height: 250px; */
  height: 100%;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(0, 0, 0, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .find__map::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(450px 220px at 50% 10%, rgba(198, 30, 18, 0.16), transparent 60%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.25));
  opacity: 0.9;
} */

.map-pin {
  background: #181311;
  padding: 15px 20px;
  z-index: 2;
  display: flex;
  border-radius: 8px;
  gap: 10px;
}

/* Ready banner + footer */
.ready__banner {
  background: var(--red);
  padding: 72px 0 72px;
}

.ready__inner {
  padding: 0 24px;
}

.ready__title {
  font-family: "Nashville", "Courier New", monospace;
  margin: 0;
  text-transform: uppercase;
  font-weight: 400;
  /* letter-spacing: -0.8px; */
  font-size: 54px;
  text-align: center;
  color: white;
  /* -webkit-text-stroke: 2px #f3f3f3; */
}

.ready__subtitle {
  text-align: center;
  color: rgb(255, 255, 255);
  margin: 16px auto 0;
  max-width: 640px;
  font-size: 17px;
  line-height: 1.6;
}

.ready__buttons {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.site-footer {
  background: #15100d;
  padding: 44px 0 46px;
}

.site-footer__inner {
  /* display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px; */
  display: block;
}

.footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__copy {
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  line-height: 1.5;
}

.footer__links {
  margin-top: 6px;
}

.footer__links a {
  color: #9CA3AF;
  text-decoration: none;
  /* font-weight: 700; */
}

.footer__links a:hover {
  color: rgba(255, 255, 255, 0.85);
}

.footer__links .dot {
  display: inline-block;
  margin: 0 12px;
  color: rgba(255, 255, 255, 0.25);
}

.footer__pager {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: flex-end;
}

.pager-btn {
  width: 44px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 900;
}

.pager-count {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 800;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 980px) {
  .section {
    padding: 56px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero__content {
    padding: 84px 24px 28px;
  }

  .top-nav__inner {
    flex-wrap: wrap;
    row-gap: 12px;
  }

  .top-nav__menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .top-nav__cta {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 10px;
  }

  .hero__headline {
    font-size: 44px;
  }

  .hero__buttons {
    flex-direction: column;
  }

  .btn--wide {
    min-width: 0;
    width: 100%;
  }

  .hero__infobar-inner {
    flex-wrap: wrap;
  }

  .info-item {
    min-width: 240px;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery__side {
    grid-template-columns: repeat(4, 1fr);
  }

  .gallery__photo--sm {
    min-height: 120px;
  }

  .cards--3 {
    grid-template-columns: 1fr;
  }

  .find {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: stretch;
  }

  .find__left {
    order: 1;
  }

  .find__map {
    order: 2;
    min-height: 320px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .footer__pager {
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .section__inner {
    padding: 0 18px;
  }

  .section-title {
    font-size: 30px;
  }

  .top-nav__inner {
    padding: 0 18px;
    flex-wrap: nowrap;
  }

  .top-nav__menu {
    width: 100%;
    gap: 12px 14px;
  }

  .top-nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
  }

  .top-nav__panel {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    background: rgba(24, 19, 17, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 18px 16px;
    z-index: 20;
  }

  .top-nav--open .top-nav__panel {
    display: block;
  }

  .top-nav__menu {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .top-nav__link {
    display: block;
    padding: 12px 10px;
    border-radius: 10px;
    font-size: 13px;
  }

  .top-nav__cta {
    width: 100%;
    margin-top: 12px;
    gap: 10px;
  }

  .top-nav__phone {
    width: 100%;
    justify-content: center;
    font-size: 13px;
  }

  .top-nav__cta .btn {
    width: 100%;
    font-size: 14px;
    padding: 12px 16px;
  }

  .hero__content {
    padding: 74px 18px 24px;
  }

  .hero__headline {
    font-size: 38px;
    letter-spacing: -0.6px;
    /* Template 1 has inline values; override them for better mobile rhythm */
    line-height: 0.98 !important;
    letter-spacing: -0.6px !important;
  }

  .hero__description {
    font-size: 16px;
  }

  .hero__buttons .btn {
    font-size: 14px !important;
    min-height: 48px !important;
    padding: 0 22px !important;
  }

  .hero__infobar-inner {
    padding: 14px 18px;
  }

  .info-item {
    min-width: 0;
    width: 100%;
    justify-content: flex-start;
  }

  .find__title {
    font-size: 28px;
  }

  .find__list {
    margin-top: 16px;
    gap: 14px;
  }

  .find-item {
    gap: 10px;
  }

  .find-item__icon {
    width: 30px;
    height: 30px;
  }

  .find-item__label {
    font-size: 14px;
  }

  .find-item__value {
    margin-top: 4px;
    font-size: 14px;
    line-height: 1.5;
  }

  .find-item__link {
    margin-top: 8px;
    font-size: 12px;
  }

  .find__map {
    min-height: 260px;
    border-radius: 14px;
  }

  .map-pin {
    position: relative;
    left: 47%;
    top: auto;
    bottom: 12px;
    transform: translateX(-50%);
    width: calc(100% - 30px);
    justify-content: center;
    padding: 12px 14px;
    gap: 8px;
  }

  .map-pin span {
    font-size: 13px;
  }

  .gallery__side {
    grid-template-columns: repeat(2, 1fr);
  }

  .ready__banner {
    padding: 56px 0 56px;
  }

  .ready__title {
    font-size: 40px;
  }

  .ready__buttons .btn {
    font-size: 14px !important;
    padding: 14px 18px !important;
  }
}

@media (max-width: 420px) {
  .section {
    padding: 48px 0;
  }

  .hero__headline {
    font-size: 34px;
    line-height: 0.98;
    letter-spacing: 3.6px !important;
  }

  .btn {
    padding: 12px 18px;
  }

  .ready__title {
    font-size: 34px;
  }

  .find__title {
    font-size: 24px;
  }

  .find__map {
    min-height: 220px;
  }

  .map-pin {
    width: calc(100% - 16px);
    bottom: 8px;
    padding: 10px 12px;
  }

  .find-item__value {
    font-size: 13px;
  }
}