﻿@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Cabin+Condensed:wght@400;700&family=IM+Fell+English:ital@0;1&display=swap');

/* â”€â”€â”€ TOKENS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
:root {
  --bg:         #0c0805;
  --bg2:        #120c08;
  --brown:      #1e1109;
  --brown2:     #2c1810;
  --copper:     #b87333;
  --gold:       #d4a64a;
  --gold2:      #f0c96a;
  --amber:      #e8921a;
  --cream:      #f5e8cc;
  --muted:      #b8975f;
  --red:        #8b1a1a;
  --red2:       #c0392b;
  --line:       rgba(212,166,74,0.28);
  --line2:      rgba(212,166,74,0.12);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--cream);
  background-color: var(--bg);
  font-family: 'IM Fell English', Georgia, serif;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
}

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

/* â”€â”€â”€ TYPOGRAPHY â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
h1, h2, h3 { margin-top: 0; }

h1, h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

h1 {
  font-size: clamp(52px, 9.5vw, 112px);
  line-height: 0.9;
  text-shadow: 4px 4px 0 #3a1c08, 0 0 60px rgba(212,166,74,0.4);
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(36px, 6vw, 68px);
  line-height: 0.93;
  margin-bottom: 22px;
}

h3 {
  font-family: 'Cabin Condensed', 'Arial Narrow', sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 2.2vw, 24px);
  color: #fff;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  line-height: 1.2;
}

p { margin-top: 0; }

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-family: 'Cabin Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase;
}

.eyebrow::before, .eyebrow::after,
.section-kicker::before, .section-kicker::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 60%, transparent);
  opacity: 0.5;
}

.section-kicker.no-lines::before,
.section-kicker.no-lines::after { display: none; }

.quoted {
  color: var(--cream) !important;
  font-size: 20px !important;
  font-style: italic;
  border-left: 3px solid var(--amber);
  padding-left: 18px;
  margin: 22px 0 !important;
}

/* â”€â”€â”€ LAYOUT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.container {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.section-pad {
  padding: clamp(72px, 9vw, 120px) 0;
}

.centered { text-align: center; }

/* â”€â”€â”€ ORNAMENT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ornament {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  margin-bottom: 30px;
}

.ornament::before,
.ornament::after {
  content: "";
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 70%, transparent);
}

.ornament-star {
  color: var(--gold);
  font-size: 20px;
  line-height: 1;
}

/* â”€â”€â”€ BUTTONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 32px;
  background: var(--gold);
  color: #140a04;
  border: none;
  font-family: 'Cabin Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-decoration: none;
  text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  transition: background 0.2s, transform 0.15s;
}

.button:hover {
  background: var(--gold2);
  transform: translateY(-2px);
}

.button-ghost {
  background: transparent;
  color: var(--cream);
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

.button-ghost:hover {
  background: rgba(212,166,74,0.1);
  color: var(--gold2);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-family: 'Cabin Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  border-bottom: 1px solid rgba(212,166,74,0.4);
  padding-bottom: 3px;
  transition: color 0.2s;
}
.text-link::after { content: " âžœ"; }
.text-link:hover { color: var(--gold2); }

/* â”€â”€â”€ HEADER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  min-height: 156px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 24px clamp(24px, 5vw, 84px) 22px;
  color: #fff;
  background: linear-gradient(to bottom, rgba(7,4,2,0.96) 0%, rgba(7,4,2,0.18) 100%);
  backdrop-filter: blur(3px);
}

.header-address {
  margin: 0;
  color: #e5cf9b;
  font-family: 'Cabin Condensed', sans-serif;
  font-size: 17px;
  font-style: normal;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1.45;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

.brand-mark, .drawer-brand, .footer-brand {
  text-decoration: none;
  text-align: center;
}

.brand-mark {
  position: relative;
  display: inline-block;
  padding: 20px 36px 16px;
  background: #110c04;
  color: inherit;
  animation: borderGlow 3s ease-in-out infinite;
}

.outer-border {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.border-line {
  stroke: #c9922a;
  stroke-width: 1.5;
  fill: none;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: borderDash 1.4s ease-out forwards;
}

.border-line-inner {
  stroke: #7a4e12;
  stroke-width: 0.5;
  fill: none;
  stroke-dasharray: 360;
  stroke-dashoffset: 360;
  animation: borderDash 1.8s 0.3s ease-out forwards;
}

.corner-diamond {
  width: 9px;
  height: 9px;
  background: #c9922a;
  position: absolute;
  transform: rotate(45deg) scale(1);
  animation: diamondPulse 2.5s ease-in-out infinite;
}
.cd-tl { top: -4px; left: -4px; }
.cd-tr { top: -4px; right: -4px; animation-delay: .6s; }
.cd-bl { bottom: -4px; left: -4px; animation-delay: 1.2s; }
.cd-br { bottom: -4px; right: -4px; animation-delay: 1.8s; }

.horn-group {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  margin-bottom: 2px;
  animation: hornSwing 4s ease-in-out infinite;
  transform-origin: center bottom;
}

.logo-text-block {
  text-align: center;
}

.logo-line1,
.logo-line2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-size: 22px;
  color: #e8c87a;
  letter-spacing: 0.18em;
  line-height: 1.1;
  display: block;
  animation: shimmer 3s ease-in-out infinite;
}

.logo-line1 { animation-delay: 1.5s; }
.logo-line2 { animation-delay: 1.7s; }

.logo-sub {
  font-family: Georgia, serif;
  font-size: 9px;
  color: #8a6020;
  letter-spacing: 0.3em;
  margin-top: 5px;
  display: block;
}

.brand-mark:hover,
.brand-mark:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(201,146,42,0.22), 0 16px 28px rgba(0,0,0,0.35), 0 0 12px 2px rgba(201,146,42,0.18);
}

@keyframes borderDash {
  from { stroke-dashoffset: 400; }
  to { stroke-dashoffset: 0; }
}

@keyframes shimmer {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

@keyframes hornSwing {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-3deg); }
  75% { transform: rotate(3deg); }
}

@keyframes diamondPulse {
  0%, 100% { opacity: 1; transform: rotate(45deg) scale(1); }
  50% { opacity: 0.7; transform: rotate(45deg) scale(1.3); }
}

@keyframes borderGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,146,42,0); }
  50% { box-shadow: 0 0 12px 2px rgba(201,146,42,0.35); }
}

.brand-kicker, .drawer-brand span, .footer-brand span {
  display: block;
  color: var(--gold);
  font-family: 'Cabin Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.44em;
}

.brand-name, .drawer-brand, .footer-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 0.96;
  letter-spacing: 0.05em;
  text-shadow: 2px 2px 0 #3a1c08;
}

.menu-button {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--cream);
  cursor: pointer;
  font-family: 'Cabin Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.menu-button i,
.menu-button i::before,
.menu-button i::after {
  display: block;
  width: 34px;
  height: 3px;
  background: var(--gold);
}

.menu-button i { position: relative; }

.menu-button i::before,
.menu-button i::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-button i::before { top: -8px; }
.menu-button i::after  { top: 8px; }

.nav-toggle {
  position: fixed;
  opacity: 0;
  pointer-events: none;
}

.drawer {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 40;
  width: min(380px, 86vw);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #09050302;
  background-color: #09050302;
  background: #0a0603;
  border-right: 1px solid var(--line);
  transform: translateX(-100%);
  transition: transform 240ms cubic-bezier(0.4,0,0.2,1);
}

.drawer a:not(.drawer-brand) {
  padding: 13px 0;
  border-bottom: 1px solid rgba(212,166,74,0.1);
  color: var(--cream);
  font-family: 'Cabin Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.15s, padding-left 0.15s;
}

.drawer a:not(.drawer-brand):hover {
  color: var(--gold2);
  padding-left: 8px;
}

.drawer-close {
  align-self: flex-end;
  color: var(--muted);
  cursor: pointer;
  font-family: 'Cabin Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.drawer-brand { margin: 32px 0 20px; }

.site-overlay {
  position: fixed;
  inset: 0;
  z-index: 35;
  background: rgba(0,0,0,0.72);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.nav-toggle:checked ~ .drawer { transform: translateX(0); }
.nav-toggle:checked ~ .site-overlay { opacity: 1; pointer-events: auto; }

/* â”€â”€â”€ HERO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero {
  position: relative;
  min-height: 960px;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg,
      rgba(5,2,1,0.65) 0%,
      rgba(8,4,2,0.28) 35%,
      rgba(8,4,2,0.52) 65%,
      rgba(5,2,1,0.93) 100%
    );
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  box-shadow:
    inset 0 0 100px rgba(139,26,26,0.22),
    inset 0 0 220px rgba(5,2,1,0.45);
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
  animation: hero-zoom 30s ease-in-out infinite alternate;
}

@keyframes hero-zoom {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}

.hero-content {
  width: min(920px, calc(100% - 36px));
  padding-top: 90px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 24px;
  padding: 7px 20px;
  background: var(--red);
  color: #fff;
  font-family: 'Cabin Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}

.hero-subtitle {
  max-width: 660px;
  margin: 0 auto 38px;
  color: #f0dfc2;
  font-size: clamp(17px, 2.1vw, 24px);
  font-style: italic;
  line-height: 1.5;
}

.hero-actions, .contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  font-family: 'Cabin Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: scroll-bob 2.2s ease-in-out infinite;
  z-index: 2;
}

.hero-scroll::after {
  content: "";
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes scroll-bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(5px); }
}

/* â”€â”€â”€ INTRO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.intro {
  background: linear-gradient(180deg, #130a05 0%, #0b0705 100%);
  border-bottom: 1px solid var(--line2);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(200px, 0.62fr) minmax(280px, 1fr);
  gap: clamp(24px, 4vw, 60px);
  align-items: start;
}

.intro-copy .section-kicker.no-lines { margin-bottom: 14px; }

.intro-copy p:not(.section-kicker):not(.quoted) {
  color: var(--muted);
  font-size: 16.5px;
}

.intro-logo {
  margin: clamp(16px, 4vw, 64px) 0 0;
  background: radial-gradient(circle at 50% 45%, rgba(245,232,204,0.08), rgba(255,255,255,0.03) 56%, rgba(0,0,0,0.08));
  border: 1px solid var(--line);
  padding: 28px 22px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.corner-accent::before,
.corner-accent::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.55;
}
.corner-accent::before { top: 6px; left: 6px; border-width: 1px 0 0 1px; }
.corner-accent::after  { bottom: 6px; right: 6px; border-width: 0 1px 1px 0; }

.intro-logo img {
  width: min(100%, 420px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 26px rgba(0,0,0,0.4));
}

.hours-card {
  background: var(--brown2);
  border: 1px solid var(--line);
  overflow: hidden;
}

.hours-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1.18 / 1;
  overflow: hidden;
  background: #110b07;
}

.hours-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.84) contrast(1.08);
  opacity: 0;
  animation: hours-fade 20s infinite;
}

.hours-slide-1 { animation-delay: 0s; }
.hours-slide-2 { animation-delay: 5s; }
.hours-slide-3 { animation-delay: 10s; }
.hours-slide-4 { animation-delay: 15s; }

@keyframes hours-fade {
  0%, 18% { opacity: 1; }
  25%, 100% { opacity: 0; }
}

.hours-card > div {
  padding: 30px;
  background: linear-gradient(rgba(26,13,7,0.78), rgba(26,13,7,0.92));
}

.hours-card .section-kicker.no-lines { margin-bottom: 12px; }

.hours-card h2 {
  font-size: clamp(30px, 4.5vw, 48px);
  margin-bottom: 18px;
}

.hours-card dl { margin: 0 0 20px; }

.hours-card div div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(212,166,74,0.14);
}

.hours-card dt, .hours-card dd { margin: 0; }

.hours-card dt {
  color: var(--cream);
  font-family: 'Cabin Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hours-card dd {
  color: var(--gold);
  font-family: 'Cabin Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-align: right;
}

.hours-card p {
  color: var(--muted) !important;
  font-size: 13px !important;
  font-style: italic;
  margin-bottom: 0 !important;
}

/* â”€â”€â”€ OFFER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.offer {
  background:
    linear-gradient(rgba(6,3,1,0.84), rgba(8,5,3,0.92)),
    url("../../images/471417148_561875426710060_654169253968850657_n.png") center/cover fixed;
  position: relative;
}

.offer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--amber), var(--gold), var(--amber), var(--red));
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3px;
  margin-top: 52px;
  border: 1px solid var(--line2);
}

.offer-item {
  text-align: left;
  background: rgba(10,7,4,0.75);
  overflow: hidden;
  position: relative;
  transition: background 0.3s;
}

.offer-item:hover { background: rgba(18,11,6,0.9); }

.offer-item-img-wrap { overflow: hidden; }

.offer-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.07);
  transition: transform 0.5s ease;
  display: block;
}

.offer-item:hover img { transform: scale(1.04); }

.offer-item-body {
  padding: 26px 26px 30px;
  border-top: 2px solid var(--gold);
}

.offer-item h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(18px, 1.9vw, 23px);
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--cream);
}

.offer-item p {
  color: var(--muted);
  font-size: 17px;
  margin: 0;
}

.offer-num {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: var(--red);
  color: #fff;
  font-family: 'Cabin Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: 2;
}

/* â”€â”€â”€ MENU SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.menu-section {
  background:
    linear-gradient(rgba(10,7,4,0.97), rgba(14,9,5,0.98)),
    repeating-linear-gradient(0deg, transparent 0px, transparent 39px, rgba(255,255,255,0.01) 39px, rgba(255,255,255,0.01) 40px);
}

.menu-intro {
  max-width: 900px;
  margin: 0 auto 36px;
}

.menu-intro p {
  color: var(--muted);
  font-size: 16px;
}

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

.menu-group {
  background: rgba(12,8,4,0.88);
  border: 1px solid var(--line);
  padding: 28px 24px 24px;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}

.menu-group h3 {
  margin-bottom: 18px;
  font-size: 24px;
}

.menu-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.menu-items li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(212,166,74,0.12);
}

.menu-items li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.menu-items strong {
  display: block;
  color: var(--cream);
  font-family: 'Cabin Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.menu-items p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.menu-items span {
  color: var(--gold2);
  font-family: 'Cabin Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

/* â”€â”€â”€ FEATURE BANNER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.feature-banner {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
  isolation: isolate;
}

.feature-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(5,2,1,0.5), rgba(5,2,1,0.74)),
    radial-gradient(ellipse 70% 70% at 50% 50%, transparent 25%, rgba(0,0,0,0.6) 100%);
}

.feature-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  box-shadow:
    inset 60px 0 90px rgba(139,26,26,0.28),
    inset -60px 0 90px rgba(139,26,26,0.28);
}

.feature-banner img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-banner-content {
  width: min(840px, calc(100% - 48px));
  position: relative;
  z-index: 1;
}

.feature-banner h2 {
  font-size: clamp(26px, 4.5vw, 54px);
  line-height: 1.1;
  text-shadow: 2px 2px 0 #3a1c08, 0 0 40px rgba(0,0,0,0.7);
}

/* â”€â”€â”€ GALLERY â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.gallery-section {
  background: #080503;
  border-top: 1px solid var(--line2);
}

.gallery-header {
  padding: clamp(60px, 7vw, 100px) 0 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 280px 280px;
  gap: 4px;
}

.gallery-grid figure:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.gallery-grid figure:nth-child(2) { grid-column: span 4; }
.gallery-grid figure:nth-child(3) { grid-column: span 3; }
.gallery-grid figure:nth-child(4) { grid-column: span 4; }
.gallery-grid figure:nth-child(5) { grid-column: span 3; }

.gallery-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #120c08;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.1) brightness(0.9);
  transition: transform 0.5s ease, filter 0.4s;
}

.gallery-grid figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(0,0,0,0.8));
  opacity: 0;
  transition: opacity 0.35s;
}

.gallery-grid figcaption {
  position: absolute;
  inset: auto 18px 18px;
  z-index: 1;
  color: #fff;
  font-family: 'Cabin Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s;
}

.gallery-grid figure:hover img {
  transform: scale(1.05);
  filter: saturate(1.05) contrast(1.05) brightness(0.85);
}

.gallery-grid figure:hover::after { opacity: 1; }
.gallery-grid figure:hover figcaption { opacity: 1; transform: translateY(0); }

/* â”€â”€â”€ CONTACT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.contact-band {
  background:
    linear-gradient(rgba(20,11,6,0.92), rgba(12,7,4,0.97)),
    url("../../images/471266680_561308456766757_6547555902000621785_n.png") center/cover;
  border-top: 1px solid var(--line2);
  position: relative;
}

.contact-band::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--amber), var(--gold), var(--amber), var(--red));
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1fr;
  gap: 40px;
  align-items: center;
}

.contact-grid .section-kicker.no-lines { margin-bottom: 14px; }

.contact-grid p {
  color: var(--muted);
  font-size: 16px;
}

.contact-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  padding: 28px;
  position: relative;
}

.contact-card::before,
.contact-card::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.45;
}

.contact-card::before { top: 6px; left: 6px; border-width: 1px 0 0 1px; }
.contact-card::after  { bottom: 6px; right: 6px; border-width: 0 1px 1px 0; }

.contact-card address {
  display: grid;
  gap: 5px;
  color: var(--cream);
  font-style: normal;
}

.contact-card strong {
  color: var(--gold);
  font-family: 'Cabin Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.contact-card span {
  font-size: 17px;
  color: var(--muted);
  display: block;
}

.contact-actions {
  justify-content: flex-end;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

/* â”€â”€â”€ FOOTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.site-footer {
  padding: 50px 24px 36px;
  text-align: center;
  background: #040302;
  border-top: 1px solid var(--line2);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  text-shadow: none;
}

.footer-brand img {
  width: min(320px, 80vw);
  height: auto;
  filter: drop-shadow(0 10px 16px rgba(0,0,0,0.4));
}

.site-footer p {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 14px;
}

.footer-tagline {
  font-style: italic;
  color: rgba(184,151,95,0.55) !important;
  font-size: 13px !important;
  margin-top: 14px !important;
}

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .header-address { display: none; }
  .brand-mark { justify-self: start; }
  .hero { min-height: 780px; }

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

  .intro-logo { max-width: 320px; margin-top: 0; }
  .menu-board { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr; gap: 3px; }

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

  .gallery-grid figure:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
    height: 240px;
  }

  .contact-actions {
    justify-content: flex-start;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1160px); }
  .site-header { min-height: 126px; padding: 16px 12px; gap: 12px; }
  .brand-mark { padding: 14px 18px 12px; justify-self: center; }
  .corner-diamond { width: 8px; height: 8px; }
  .horn-group { margin-bottom: 0; }
  .horn-group svg { width: 68px; height: auto; }
  .logo-line1,
  .logo-line2 { font-size: 18px; }
  .logo-sub { font-size: 8px; }
  .menu-button span { display: none; }
  .hero { min-height: 680px; }
  .hero-content { padding-top: 72px; }

  .hero-actions, .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button { width: 100%; }
  .hours-card > div { padding: 22px; }

  .hours-card div div {
    display: grid;
    gap: 2px;
  }

  .hours-card dd { text-align: left; }
  .feature-banner { min-height: 420px; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid figure:nth-child(n) { height: 260px; }
  .intro-logo { min-height: 220px; }
  .menu-items li { grid-template-columns: 1fr; gap: 8px; }
  .footer-brand img { width: min(280px, 82vw); }
}


