:root {
  --black: #050505;
  --dark: #0d0b09;
  --charcoal: #12100e;
  --gold: #c8a33a;
  --gold-soft: rgba(200, 163, 58, .38);
  --cream: #f6f1e7;
  --muted: #b8b0a3;
  --white: #fff;
  --wood: #4b2a18;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: Montserrat, Arial, sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #020202;
  transition: opacity .7s ease, visibility .7s ease;
}

.page-loader img {
  width: 210px;
  animation: pulseLogo 1.8s ease infinite alternate;
}

.page-loader span {
  position: absolute;
  bottom: 18%;
  width: 160px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  overflow: hidden;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

@keyframes pulseLogo {
  from { opacity: .55; transform: scale(.98); }
  to { opacity: 1; transform: scale(1.03); }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw;
  background: linear-gradient(180deg, rgba(0,0,0,.84), rgba(0,0,0,0));
  transition: .35s ease;
}

.site-header.scrolled {
  background: rgba(0,0,0,.92);
  padding: 12px 6vw;
  border-bottom: 1px solid rgba(200,163,58,.25);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 120px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
}

.main-nav a {
  position: relative;
  opacity: .86;
}

.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: .28s ease;
}

.main-nav a:hover {
  color: var(--gold);
  opacity: 1;
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-cta {
  border: 1px solid var(--gold);
  padding: 10px 17px;
  color: var(--gold) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 38px;
  cursor: pointer;
}

.nav-toggle span {
  height: 2px;
  background: #fff;
  margin: 7px 0;
  display: block;
  transition: .25s ease;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: bottom;
  padding: 160px 6vw 80px;
  overflow: hidden;
}

.hero-video,
.hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-fallback {
  background: linear-gradient(90deg, rgba(0,0,0,.9), rgba(0,0,0,.54), rgba(0,0,0,.15)), url('../img/detail.jpg') center/cover no-repeat;
  transform: scale(1.05);
  animation: slowZoom 16s ease-in-out infinite alternate;
}

.hero-video {
  z-index: 0;
}

.hero-video:not([src]) + .hero-fallback {
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(circle at 78% 58%, rgba(200,80,18,.18), transparent 32%), linear-gradient(90deg, rgba(0,0,0,.9), rgba(0,0,0,.64), rgba(0,0,0,.25));
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  z-index: 3;
  height: 220px;
  background: linear-gradient(0deg, var(--black), transparent);
}

.ember-layer,
.smoke-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}

.ember-layer {
  background-image: radial-gradient(circle, rgba(255,116,31,.9) 0 1px, transparent 2px), radial-gradient(circle, rgba(200,163,58,.7) 0 1px, transparent 2px);
  background-size: 120px 180px, 190px 240px;
  animation: emberMove 14s linear infinite;
  opacity: .25;
}

.smoke-layer {
  background: radial-gradient(ellipse at 15% 72%, rgba(255,255,255,.12), transparent 36%), radial-gradient(ellipse at 80% 25%, rgba(255,255,255,.09), transparent 30%);
  filter: blur(18px);
  animation: smokeDrift 12s ease-in-out infinite alternate;
  opacity: .65;
}

@keyframes slowZoom {
  to { transform: scale(1.13); }
}

@keyframes emberMove {
  to { background-position: 0 -420px, 80px -520px; }
}

@keyframes smokeDrift {
  to { transform: translate3d(40px, -25px, 0) scale(1.06); opacity: .42; }
}

.hero-content {
  position: relative;
  z-index: 4;
  width: min(780px, 100%);
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .25em;
  font-weight: 800;
  font-size: 13px;
  margin: 0 0 16px;
}

.center {
  text-align: center;
}

h1,
h2,
h3 {
  font-family: Cinzel, Georgia, serif;
  line-height: 1.08;
  margin: 0;
  color: var(--white);
}

h1 {
  font-size: clamp(58px, 9vw, 142px);
  letter-spacing: .04em;
  text-transform: uppercase;
  text-shadow: 0 18px 48px rgba(0,0,0,.68);
}

h2 {
  font-size: clamp(34px, 5vw, 72px);
}

h3 {
  font-size: 25px;
}

.lead {
  font-size: clamp(18px, 2vw, 24px);
  max-width: 710px;
  color: #eee;
  margin: 28px 0 34px;
}

.actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 900;
  font-size: 12px;
  border: 1px solid var(--gold);
  transition: .3s ease;
}

.btn.primary {
  background: var(--gold);
  color: #070707;
}

.btn.secondary {
  color: var(--gold);
  background: rgba(0,0,0,.25);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(200,163,58,.18);
}

.hero-card {
  position: absolute;
  right: 7vw;
  bottom: 90px;
  z-index: 4;
  border: 1px solid rgba(200,163,58,.55);
  padding: 24px 30px;
  background: rgba(0,0,0,.58);
  backdrop-filter: blur(12px);
}

.hero-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .18em;
}

.hero-card strong {
  font-family: Cinzel, serif;
  color: #fff;
  font-size: 24px;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 5;
  transform: translateX(-50%);
  width: 28px;
  height: 52px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 999px;
}

.scroll-cue span {
  position: absolute;
  left: 50%;
  top: 10px;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scrollDot 1.7s infinite;
}

@keyframes scrollDot {
  0% { transform: translate(-50%, 0); opacity: 1; }
  100% { transform: translate(-50%, 22px); opacity: 0; }
}

.section {
  padding: 115px 6vw;
  position: relative;
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: rgba(200,163,58,.18);
}

.strip-item {
  background: #080706;
  padding: 38px 34px;
}

.strip-item span {
  color: var(--gold);
  font-family: Cinzel, serif;
  font-size: 28px;
}

.strip-item strong {
  display: block;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.strip-item p {
  margin: 8px 0 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 72px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: .9fr 1.1fr;
}

.image-frame {
  position: relative;
  border: 1px solid rgba(200,163,58,.28);
  padding: 12px;
  background: rgba(255,255,255,.03);
  overflow: hidden;
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255,255,255,.08);
  pointer-events: none;
}

.image-frame img {
  height: 620px;
  width: 100%;
  object-fit: cover;
  transition: .7s ease;
}

.image-frame:hover img {
  transform: scale(1.04);
}

.content p {
  color: #d8d0c4;
  max-width: 650px;
}

.features {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.features span,
.shop-filters button {
  border: 1px solid rgba(200,163,58,.35);
  color: var(--gold);
  background: transparent;
  padding: 8px 12px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
}

.dark {
  background: radial-gradient(circle at 50% 0%, rgba(200,163,58,.08), transparent 34%), #0b0907;
}

.cards {
  display: grid;
  gap: 24px;
  margin-top: 52px;
}

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

.three {
  grid-template-columns: repeat(3, 1fr);
}

.cards article {
  border: 1px solid rgba(200,163,58,.22);
  padding: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.02));
}

.premium-cards article {
  position: relative;
  overflow: hidden;
  transition: .35s ease;
}

.premium-cards article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(200,163,58,.18), transparent 38%);
  opacity: 0;
  transition: .35s ease;
}

.premium-cards article:hover {
  transform: translateY(-9px);
  border-color: rgba(200,163,58,.6);
}

.premium-cards article:hover::before {
  opacity: 1;
}

.cards b {
  color: var(--gold);
  font-family: Cinzel, serif;
  font-size: 28px;
}

.cards p {
  color: #c9c0b5;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 52px;
}

.product {
  background: #111;
  border: 1px solid rgba(200,163,58,.2);
  overflow: hidden;
  transition: .35s ease;
}

.product:hover {
  transform: translateY(-10px);
  border-color: rgba(200,163,58,.6);
  box-shadow: 0 24px 65px rgba(0,0,0,.44);
}

.product img {
  height: 330px;
  width: 100%;
  object-fit: cover;
  transition: .6s ease;
}

.product:hover img {
  transform: scale(1.08);
}

.product div {
  padding: 26px;
}

.product span,
.shop-body small,
.card-content span {
  display: inline-block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 10px;
}

.product p {
  color: #c9c0b5;
}

.product a,
.shop-grid a,
.smoked-card a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}

.product a::after,
.shop-grid a::after,
.smoked-card a::after {
  content: "→";
  transition: .25s ease;
}

.product a:hover::after,
.shop-grid a:hover::after,
.smoked-card a:hover::after {
  transform: translateX(7px);
}

.aging {
  background: linear-gradient(180deg, #050505, #110c08);
}

.stat-row {
  display: flex;
  gap: 18px;
  margin-top: 34px;
}

.stat-row div {
  min-width: 170px;
  border: 1px solid rgba(200,163,58,.25);
  padding: 20px;
}

.stat-row strong {
  display: block;
  font-family: Cinzel, serif;
  color: var(--gold);
  font-size: 34px;
}

.stat-row span {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: .13em;
}

.shop {
  background: radial-gradient(circle at 12% 24%, rgba(200,163,58,.09), transparent 30%), #070707;
}

.section-intro {
  text-align: center;
  color: #d2cabf;
  max-width: 820px;
  margin: 18px auto 32px;
}

.shop-filters {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 38px;
}

.shop-filters button {
  cursor: pointer;
  transition: .25s ease;
}

.shop-filters button:hover {
  background: var(--gold);
  color: #050505;
}

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

.shop-grid article {
  background: #111;
  border: 1px solid rgba(200,163,58,.22);
  overflow: hidden;
  transition: .35s ease;
}

.shop-grid article:hover {
  transform: translateY(-10px);
  border-color: rgba(200,163,58,.6);
}

.shop-grid img {
  height: 300px;
  width: 100%;
  object-fit: cover;
  transition: .55s ease;
}

.shop-grid article:hover img {
  transform: scale(1.08);
}

.shop-body {
  padding: 24px;
}

.shop-grid p {
  color: #c9c0b5;
}

.smoked {
  min-height: 850px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.smoked-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(200,163,58,.12), transparent 34%), linear-gradient(rgba(0,0,0,.84), rgba(0,0,0,.9)), url('../img/grill.jpg') center/cover no-repeat;
  background-attachment: fixed;
}

.smoked-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 4% 70%, rgba(205,67,19,.22), transparent 24%), radial-gradient(circle at 98% 30%, rgba(205,67,19,.18), transparent 22%);
}

.smoked-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.smoked-card {
  background: linear-gradient(180deg, #171514, #0f0e0d);
  border: 1px solid rgba(200,163,58,.42) !important;
  overflow: hidden;
  border-radius: 14px;
  padding: 0 !important;
  transition: .35s ease;
}

.smoked-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 28px 75px rgba(0,0,0,.55);
}

.smoked-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: .6s ease;
}

.smoked-card:hover img {
  transform: scale(1.08);
}

.card-content {
  padding: 34px 30px 36px;
  text-align: center;
}

.card-content h3 {
  font-size: 29px;
  margin-bottom: 16px;
}

.card-content p {
  color: #d0c8bd;
}

.catering {
  min-height: 860px;
  display: flex;
  align-items: center;
}

.catering-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.94), rgba(0,0,0,.56), rgba(0,0,0,.14)), url('../img/catering.jpg') center/cover no-repeat;
}

.catering-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.65));
}

.catering-box {
  position: relative;
  z-index: 2;
  max-width: 760px;
  background: rgba(0,0,0,.7);
  border: 1px solid rgba(200,163,58,.48);
  padding: 58px;
  backdrop-filter: blur(14px);
  box-shadow: 0 34px 90px rgba(0,0,0,.45);
}

.catering-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 30px 0 34px;
}

.catering-grid span {
  border: 1px solid rgba(200,163,58,.25);
  color: #eee;
  padding: 12px 14px;
  background: rgba(255,255,255,.04);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 44px;
}

.gallery-grid button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
}

.gallery-grid img {
  height: 360px;
  width: 100%;
  object-fit: cover;
  filter: saturate(.94) brightness(.88);
  transition: .35s ease;
}

.gallery-grid button:hover img {
  filter: saturate(1.12) brightness(1.08);
  transform: scale(1.06);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 6vw;
  background: rgba(0,0,0,.88);
  opacity: 0;
  visibility: hidden;
  transition: .3s ease;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-height: 86vh;
  max-width: 92vw;
  border: 1px solid rgba(200,163,58,.45);
  box-shadow: 0 30px 90px rgba(0,0,0,.7);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 34px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(200,163,58,.45);
  background: #080808;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}

.contact {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  background: #0c0a08;
}

.contact-info p {
  color: #d2cabf;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: #050505;
  border: 1px solid rgba(200,163,58,.28);
  padding: 16px;
  color: #fff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,163,58,.12);
}

.contact-form button {
  background: var(--gold);
  border: 0;
  padding: 17px;
  color: #050505;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .14em;
  cursor: pointer;
}

.footer {
  text-align: center;
  padding: 70px 6vw 42px;
  border-top: 1px solid rgba(200,163,58,.22);
  background: #050505;
}

.footer img {
  width: 190px;
  margin: 0 auto 18px;
}

.footer p {
  color: #c9c0b5;
}

.footer div {
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .13em;
  margin-top: 25px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .85s ease, transform .85s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

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

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

@media (max-width: 1050px) {
  .main-nav {
    position: fixed;
    inset: 78px 0 auto 0;
    background: rgba(0,0,0,.96);
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 6vw;
    display: none;
  }

  .main-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .hero-card {
    display: none;
  }

  .split,
  .split.reverse,
  .contact {
    grid-template-columns: 1fr;
  }

  .three,
  .gallery-grid,
  .intro-strip {
    grid-template-columns: 1fr 1fr;
  }

  .image-frame img {
    height: 460px;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 14px 22px;
  }

  .brand img {
    width: 118px;
  }

  .hero {
    padding: 130px 24px 70px;
  }

  .section {
    padding: 78px 24px;
  }

  .product-grid,
  .four,
  .three,
  .shop-grid,
  .gallery-grid,
  .intro-strip,
  .catering-grid,
  .stat-row {
    grid-template-columns: 1fr;
    display: grid;
  }

  .image-frame img,
  .product img,
  .shop-grid img,
  .gallery-grid img,
  .smoked-card img {
    height: 300px;
  }

  .catering-box {
    padding: 32px;
  }

  .actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  h1 {
    font-size: 52px;
  }
}
