:root {
  --black: #030303;
  --charcoal: #0a0907;
  --ink: #12100d;
  --gold: #c98a26;
  --gold-soft: #efc574;
  --gold-dark: #6b4212;
  --cream: #fff6df;
  --muted: #b7a98f;
  --ruby: #6f1215;
  --forest: #18301d;
  --line: rgba(201, 138, 38, 0.58);
  --max: 2048px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(111, 18, 21, 0.25), transparent 34rem),
    linear-gradient(135deg, var(--black), var(--charcoal) 45%, #050402);
  color: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  min-width: 320px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 75%);
}

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

img {
  display: block;
  width: 100%;
  height: auto;
}

button,
input {
  font: inherit;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 20;
  width: auto;
  height: auto;
  clip: auto;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  background: var(--gold);
  color: #100902;
  border-radius: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(3, 3, 3, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.topbar,
.navbar,
main,
.site-footer {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 35px;
  padding: 0.35rem clamp(1rem, 2vw, 2rem);
  color: var(--gold-soft);
  border-bottom: 1px solid rgba(201, 138, 38, 0.34);
  font-size: clamp(0.63rem, 1vw, 0.76rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.topbar p {
  margin: 0;
}

.topbar p span::before {
  content: "-";
  margin-inline: 0.75rem;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--cream);
  letter-spacing: 0;
}

.topbar-actions a {
  font-size: 0.72rem;
  text-transform: uppercase;
  opacity: 0.88;
}

.topbar-actions a:hover,
.topbar-actions a:focus-visible,
.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--gold-soft);
}

.navbar {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 3rem);
  min-height: 80px;
  padding: 0 clamp(1rem, 2vw, 2rem);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: clamp(2.5rem, 4vw, 3.4rem);
  aspect-ratio: 1;
  color: #120a02;
  border: 1px solid var(--gold-soft);
  border-radius: 4px;
  background: linear-gradient(140deg, #fff3bd, var(--gold), #5f350d);
  box-shadow: 0 0 24px rgba(201, 138, 38, 0.26);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
}

.brand-name {
  display: grid;
  gap: 0.1rem;
  text-transform: uppercase;
}

.brand-name strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2vw, 1.75rem);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.brand-name small {
  color: var(--gold-soft);
  font-size: 0.63rem;
  letter-spacing: 0.38em;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.8rem, 1.8vw, 2rem);
  font-size: clamp(0.66rem, 0.9vw, 0.82rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.primary-nav a {
  position: relative;
  padding-block: 2rem;
  color: rgba(255, 246, 223, 0.86);
}

.primary-nav a.active {
  color: var(--gold-soft);
}

.primary-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--gold);
}

.search-button,
.nav-toggle {
  border: 1px solid var(--line);
  color: var(--cream);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
}

.search-button {
  position: relative;
  width: 2.5rem;
  aspect-ratio: 1;
  border-radius: 50%;
}

.search-button span {
  position: absolute;
  inset: 0.7rem;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.search-button span::after {
  content: "";
  position: absolute;
  width: 0.6rem;
  height: 2px;
  right: -0.45rem;
  bottom: -0.18rem;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: left center;
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 4px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 1.35rem;
  height: 2px;
  margin: 0.28rem auto;
  background: currentColor;
}

.site-search {
  display: flex;
  gap: 0.7rem;
  padding: 0 2rem 1rem;
  border-top: 1px solid rgba(201, 138, 38, 0.24);
}

.site-search input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--line);
  background: #050505;
  color: var(--cream);
  padding: 0.85rem 1rem;
}

.site-search button,
.newsletter button {
  border: 1px solid rgba(255, 236, 187, 0.35);
  background: linear-gradient(140deg, #efd088, var(--gold) 45%, #7d4b14);
  color: #120902;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

main {
  border-inline: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.35);
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero img {
  min-height: clamp(320px, 28vw, 570px);
  object-fit: cover;
  object-position: center;
}

.hero-hotspots {
  position: absolute;
  inset: 0;
}

.hotspot {
  position: absolute;
  display: block;
  border-radius: 6px;
  outline-offset: 4px;
}

.hotspot span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.hotspot:focus-visible {
  outline: 2px solid var(--gold-soft);
  background: rgba(239, 197, 116, 0.12);
}

.hotspot-products {
  left: 5.6%;
  bottom: 7.5%;
  width: 13.8%;
  height: 8.2%;
}

.hotspot-about {
  left: 20.1%;
  bottom: 7.6%;
  width: 11.8%;
  height: 8.1%;
}

.hotspot-call {
  right: 1.35%;
  top: 25.5%;
  width: 4.8%;
  height: 17%;
}

.hotspot-directions {
  right: 1.35%;
  top: 42.8%;
  width: 4.8%;
  height: 17%;
}

.hotspot-specials {
  right: 1.35%;
  top: 60%;
  width: 4.8%;
  height: 16%;
}

.mobile-action-bar {
  display: none;
}

.product-tiles {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.image-card,
.feature-card {
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background: #050505;
}

.image-card:last-child,
.feature-card:last-child {
  border-right: 0;
}

.image-card::after,
.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  transition: border-color 180ms ease, background 180ms ease;
}

.image-card:hover::after,
.image-card:focus-visible::after,
.feature-card:hover::after,
.feature-card:focus-visible::after {
  border-color: var(--gold-soft);
  background: rgba(239, 197, 116, 0.07);
}

.image-card img {
  height: clamp(145px, 9.2vw, 208px);
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.image-card:hover img,
.image-card:focus-visible img,
.feature-card:hover img,
.feature-card:focus-visible img {
  transform: scale(1.025);
  filter: brightness(1.08);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.8fr 0.88fr 0.66fr;
  border-bottom: 1px solid var(--line);
}

.feature-card img {
  height: clamp(315px, 18vw, 390px);
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.story-card img {
  object-position: 50% center;
}

.events-card img {
  object-position: 45% center;
}

.vip-card img {
  object-position: 45% center;
}

.location-card img {
  object-position: center;
}

.brand-strip {
  display: grid;
  grid-template-columns: minmax(18rem, 1.5fr) auto minmax(18rem, 0.95fr);
  align-items: center;
  gap: clamp(1rem, 3vw, 3rem);
  min-height: 124px;
  padding: clamp(1rem, 2vw, 1.6rem) clamp(1rem, 3vw, 3.2rem);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.82)),
    url("assets/footer_strip_4k.jpg") center / cover;
  border-bottom: 1px solid var(--line);
}

.value-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.7rem, 1.5vw, 1.4rem);
}

.value-list div {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.line-icon {
  display: grid;
  place-items: center;
  flex: 0 0 2.1rem;
  aspect-ratio: 1;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-soft);
  font-size: 0.68rem;
}

.value-list p {
  margin: 0;
  color: var(--cream);
  font-size: clamp(0.63rem, 0.8vw, 0.78rem);
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.signature {
  margin: 0;
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-style: italic;
  white-space: nowrap;
  text-shadow: 0 0 20px rgba(201, 138, 38, 0.32);
}

.newsletter {
  display: grid;
  gap: 0.55rem;
}

.newsletter label {
  color: var(--gold-soft);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.newsletter > div {
  display: flex;
  gap: 0.55rem;
}

.newsletter input {
  min-width: 0;
  width: 100%;
  border: 1px solid rgba(255, 246, 223, 0.28);
  background: rgba(0, 0, 0, 0.72);
  color: var(--cream);
  padding: 0.8rem 0.9rem;
}

.newsletter button {
  padding: 0.8rem 1rem;
}

.form-note {
  min-height: 1rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 2vw, 2rem) 1.4rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1320px) {
  .topbar {
    justify-content: center;
  }

  .topbar-actions {
    display: none;
  }

  .navbar {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    left: 1rem;
    right: 1rem;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 0.5rem;
    background: rgba(4, 4, 4, 0.98);
    border: 1px solid var(--line);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  }

  .primary-nav.is-open {
    display: grid;
  }

  .primary-nav a {
    padding: 1rem;
    border-bottom: 1px solid rgba(201, 138, 38, 0.18);
  }

  .primary-nav a.active::after {
    display: none;
  }

  .brand-strip {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .value-list {
    max-width: 860px;
    margin-inline: auto;
  }

  .newsletter {
    width: min(100%, 620px);
    margin-inline: auto;
  }
}

@media (max-width: 980px) {
  main {
    border-inline: 0;
  }

  .hero img {
    min-height: 380px;
    object-position: center;
  }

  .product-tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .image-card:last-child {
    grid-column: 1 / -1;
  }

  .image-card img {
    height: clamp(170px, 24vw, 260px);
  }

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

  .feature-card {
    border-bottom: 1px solid var(--line);
  }

  .feature-card img {
    height: clamp(290px, 42vw, 410px);
  }

  .hotspot-call,
  .hotspot-directions,
  .hotspot-specials {
    display: none;
  }

  .mobile-action-bar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: var(--line);
    border-bottom: 1px solid var(--line);
  }

  .mobile-action-bar a {
    display: grid;
    min-height: 3.15rem;
    place-items: center;
    background: rgba(5, 5, 5, 0.96);
    color: var(--cream);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    line-height: 1.2;
    padding: 0.65rem 0.55rem;
    text-align: center;
    text-transform: uppercase;
  }

  .mobile-action-bar a.filled {
    background: linear-gradient(140deg, #efd088, var(--gold) 45%, #7d4b14);
    color: #120902;
  }
}

@media (max-width: 680px) {
  .topbar {
    min-height: 28px;
    padding-inline: 0.8rem;
    font-size: 0.56rem;
    letter-spacing: 0.16em;
  }

  .topbar p span::before {
    margin-inline: 0.35rem;
  }

  .navbar {
    min-height: 66px;
    gap: 0.75rem;
    padding-inline: 0.8rem;
  }

  .brand-name strong {
    font-size: 1rem;
  }

  .brand-name small {
    font-size: 0.52rem;
    letter-spacing: 0.24em;
  }

  .search-button {
    width: 2.25rem;
  }

  .site-search {
    padding: 0.8rem;
    flex-direction: column;
  }

  .site-search button {
    min-height: 2.75rem;
  }

  .primary-nav {
    grid-template-columns: 1fr;
    left: 0.8rem;
    right: 0.8rem;
  }

  .hero img {
    min-height: 430px;
    object-position: 47% center;
  }

  .hotspot-products {
    left: 5%;
    bottom: 7.2%;
    width: 36%;
    height: 8.3%;
  }

  .hotspot-about {
    left: 43%;
    bottom: 7.2%;
    width: 31%;
    height: 8.3%;
  }

  .product-tiles,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .mobile-action-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .image-card,
  .feature-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .image-card:last-child {
    grid-column: auto;
  }

  .image-card img {
    height: clamp(190px, 55vw, 310px);
  }

  .feature-card img {
    height: auto;
    min-height: 0;
    object-fit: contain;
  }

  .value-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    text-align: left;
  }

  .signature {
    white-space: normal;
  }

  .newsletter > div,
  .site-footer {
    flex-direction: column;
  }

  .site-footer {
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
