@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(44px, 7.2vw, 88px);
  line-height: 0.9;
  text-shadow: 4px 4px 0 #3a1c08, 0 0 60px rgba(212,166,74,0.4);
  margin-bottom: 16px;
}

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);
}

.button-hero {
  background: var(--amber);
  color: #140a04;
  min-height: 62px;
  padding: 18px 48px;
  font-size: 14px;
  letter-spacing: 0.26em;
  box-shadow: 0 6px 28px rgba(232,146,26,0.35);
}

.button-hero:hover {
  background: #f5a82a;
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(232,146,26,0.45);
}

.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:hover { color: var(--gold2); }

/* ????????? HEADER ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  min-height: 124px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 28px;
  padding: 18px clamp(24px, 5vw, 84px) 16px;
  color: #fff;
  background: linear-gradient(to bottom, rgba(7,4,2,0.96) 0%, rgba(7,4,2,0.18) 100%);
}

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

.header-address a {
  color: inherit;
  text-decoration: none;
}

.header-address a:hover { color: var(--gold2); }

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

.brand-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  animation: logoFloat 5s ease-in-out infinite;
  justify-self: center;
}

.brand-mark:hover,
.brand-mark:focus-visible {
  transform: translateY(-2px) scale(1.01);
}

.brand-mark img,
.intro-logo img,
.footer-brand img {
  display: block;
  height: auto;
  object-fit: contain;
}

.brand-mark img {
  width: min(250px, 20vw);
  min-width: 170px;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,0.42)) drop-shadow(0 0 10px rgba(201,146,42,0.1));
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.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;
  align-self: start;
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--cream);
  cursor: pointer;
  font-family: 'Cabin Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.menu-button i,
.menu-button i::before,
.menu-button i::after {
  display: block;
  width: 30px;
  height: 2px;
  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: -7px; }
.menu-button i::after  { top: 7px; }

.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: 900px;
  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(840px, calc(100% - 36px));
  padding-top: 76px;
  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: 680px;
  margin: 0 auto 38px;
  color: #f0dfc2;
  font-size: clamp(18px, 2vw, 22px);
  font-style: italic;
  line-height: 1.5;
}

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

.hero-phone {
  margin: 20px 0 0;
  font-family: 'Cabin Condensed', sans-serif;
  font-size: 15px;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
}

.hero-phone a {
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid rgba(212,166,74,0.35);
  padding-bottom: 2px;
  transition: color 0.2s;
}

.hero-phone a:hover { color: var(--gold2); }

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: scroll-pulse 2s ease-in-out infinite;
  z-index: 2;
}

.hero-scroll svg {
  filter: drop-shadow(0 0 8px rgba(212,166,74,0.55));
}

@keyframes scroll-pulse {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50%       { transform: translateX(-50%) translateY(9px); opacity: 0.45; }
}

/* ????????? 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, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 60px);
  align-items: start;
}

.intro-right {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4vw, 48px);
}

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

/* ——— Events + Patch Combined Card ——————————————————————————————————————————— */

/* ——— Events + Patch Combined Card ——————————————————————————————————————————— */

.events-patch-card {
  margin-top: 28px;
  border: 1px solid #1a0e08;
  background: var(--brown2);
  overflow: hidden;
}

.events-patch-panel {
  background: #0a0604;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.events-patch-panel > img {
  width: 100%;
  display: block;
}

.events-patch-label {
  padding: 22px 28px 26px;
}

.events-cal-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 900;
  color: var(--gold);
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}

.events-cal-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 200px;
  margin: 0 auto;
}

.events-cal-ornament span:first-child,
.events-cal-ornament span:last-child {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,166,74,0.45), transparent);
}

.events-cal-ornament .ornament-star {
  color: var(--amber);
  font-size: 13px;
  flex: none;
}

.events-cal-body {
  padding: 24px 28px 28px;
}

/* ——— Events Calendar internals ——————————————————————————————————————————— */

.events-grid {
  display: grid;
  gap: 12px;
}

.event-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line2);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}

.event-card:hover {
  border-color: rgba(212,166,74,0.42);
  transform: translateX(3px);
}

.event-card-img {
  width: 96px;
  height: 100%;
  min-height: 90px;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.1);
  display: block;
  flex-shrink: 0;
}

.event-card-img-placeholder {
  width: 96px;
  min-height: 90px;
  background: linear-gradient(145deg, var(--red) 0%, var(--brown2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.event-card-body {
  padding: 13px 16px;
}

.event-card-date {
  display: block;
  color: var(--amber);
  font-family: 'Cabin Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.event-card-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(14px, 1.4vw, 17px);
  font-weight: 700;
  color: var(--cream);
  margin: 0 0 5px;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.25;
}

.event-card-desc {
  color: var(--muted);
  font-size: 12.5px;
  margin: 0 0 10px;
  line-height: 1.45;
}

.event-card-body .button {
  font-size: 10px;
  min-height: 32px;
  padding: 7px 14px;
  letter-spacing: 0.18em;
  clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 7px 100%, 0 calc(100% - 7px));
}

.events-loading {
  color: var(--muted);
  font-style: italic;
  text-align: center;
  padding: 20px 0;
  margin: 0;
}

.events-cal-ft {
  margin-top: 22px;
  border-top: 1px solid var(--line2);
  padding-top: 20px;
  text-align: center;
}

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

.intro-logo {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}

.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: 100%;
  filter: drop-shadow(0 14px 26px rgba(0,0,0,0.4));
}

/* ——— Hours Card ————————————————————————————————————————————————————————————— */

.hours-card {
  background: linear-gradient(165deg, #1e1008 0%, #0d0603 100%);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.hours-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
}

.hours-inner {
  padding: 44px 36px 40px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.hours-inner .section-kicker.no-lines { margin-bottom: 10px; }

.hours-inner h2 {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 28px;
}

.hours-dl {
  border-top: 1px solid var(--line);
  margin: 0 0 28px;
}

.hours-dl > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line2);
}

.hours-dl dt {
  color: var(--cream);
  font-family: 'Cabin Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0;
}

.hours-dl dd {
  color: var(--gold);
  font-family: 'Cabin Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.06em;
  margin: 0;
  white-space: nowrap;
}

.hours-note {
  color: var(--muted);
  font-size: 13px;
  font-style: italic;
  line-height: 1.55;
  margin: 0 0 32px;
}

/* ——— Offer Card ————————————————————————————————————————————————————————————— */

.offer-card {
  background: linear-gradient(165deg, #1a0d07 0%, #0d0603 100%);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.offer-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
}

.offer-card-hd {
  padding: 36px 36px 28px;
  border-bottom: 1px solid var(--line);
}

.offer-card-hd .section-kicker.no-lines { margin-bottom: 8px; }

.offer-card-title {
  font-size: clamp(28px, 3.2vw, 40px);
  margin: 0 0 14px;
  line-height: 1;
}

.offer-card-intro {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
  font-style: italic;
}

/* ——— Offer List ——————————————————————————————————————————————————————————— */

.offer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.offer-list-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 18px 36px;
  border-bottom: 1px solid var(--line2);
  transition: background 0.2s;
}

.offer-list-item:last-child { border-bottom: none; }

.offer-list-item:hover { background: rgba(212,166,74,0.03); }

.offer-list-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--amber);
  opacity: 0.55;
  line-height: 1.35;
  flex-shrink: 0;
  width: 26px;
  text-align: right;
}

.offer-list-item h3 {
  font-size: clamp(12px, 1.2vw, 13px);
  letter-spacing: 0.14em;
  margin: 0 0 5px;
  color: var(--cream);
}

.offer-list-item p {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.5;
  margin: 0;
}

/* ????????? OFFER ??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
.offer {
  background: linear-gradient(rgba(6,3,1,0.84), rgba(8,5,3,0.92));
  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: 18px;
  margin-top: 52px;
}

.offer-item {
  text-align: left;
  background: rgba(10,7,4,0.78);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
  box-shadow: 0 14px 30px rgba(0,0,0,0.24);
  transition: background 0.3s, transform 0.2s, border-color 0.2s;
}

.offer-item:hover {
  background: rgba(18,11,6,0.92);
  transform: translateY(-2px);
  border-color: rgba(212,166,74,0.45);
}

.offer-item-img-wrap {
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid rgba(212,166,74,0.28);
}

.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;
}

.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-wrap {
  padding: clamp(48px, 6vw, 80px) 0 clamp(32px, 4vw, 52px);
}

.menu-intro-sub {
  color: var(--muted);
  font-size: 16px;
  margin: 10px 0 0;
}

.menu-block {
  border-top: 1px solid var(--line);
  padding: clamp(48px, 6vw, 80px) 0;
}

.menu-block--alt {
  background: rgba(212,166,74,0.03);
}

.menu-block-hd {
  display: flex;
  align-items: baseline;
  gap: clamp(16px, 2vw, 28px);
  margin-bottom: clamp(28px, 4vw, 48px);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.menu-block-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(36px, 5vw, 60px);
  color: var(--gold);
  opacity: 0.45;
  line-height: 1;
  flex-shrink: 0;
}

.menu-block-hd h3 {
  font-size: clamp(28px, 4vw, 52px);
  margin: 0;
  line-height: 1.1;
}

.menu-block-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(32px, 5vw, 80px);
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-block-list li {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(212,166,74,0.1);
}

.menu-block-list li > div { flex: 1; }

.menu-block-list strong {
  display: block;
  color: var(--cream);
  font-family: 'Cabin Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.menu-block-list p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.item-price {
  color: var(--gold2);
  font-family: 'Cabin Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-block-note {
  grid-column: 1 / -1;
  justify-content: center;
  border-bottom: none !important;
  padding-top: 28px !important;
  color: var(--muted);
  font-size: 13px;
  font-style: italic;
  letter-spacing: 0.04em;
}

/* ????????? 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);
}

/* ——— Promo Card ——————————————————————————————————————————————————————————— */

.promo-card {
  flex: 1;
  background: linear-gradient(165deg, #1e1008 0%, #0d0603 100%);
  border: 1px solid var(--line);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.promo-card::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));
}

.promo-card-hd {
  padding: 32px 36px 24px;
  border-bottom: 1px solid var(--line);
}

.promo-card-hd .section-kicker.no-lines { margin-bottom: 10px; }

.promo-title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(32px, 3.8vw, 48px);
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 0.92;
  margin: 0 0 16px;
  text-shadow: 2px 2px 0 #3a1c08;
}

.promo-time {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: 'Cabin Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 5px 14px;
  margin: 0;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}

.promo-deals {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.promo-deals li {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 15px 36px;
  border-bottom: 1px solid var(--line2);
}

.promo-deals li:last-child { border-bottom: none; }

.promo-price {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--amber);
  flex-shrink: 0;
  width: 52px;
  text-align: right;
  line-height: 1;
}

.promo-deals li > span:last-child {
  color: var(--cream);
  font-family: 'Cabin Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
}

.promo-note {
  padding: 16px 36px;
  color: var(--muted);
  font-size: 12px;
  font-style: italic;
  margin: 0;
  border-top: 1px solid var(--line2);
  text-align: center;
  letter-spacing: 0.04em;
}

/* ——— Photo Slider ——————————————————————————————————————————————————————————— */

.photo-slider {
  display: grid;
  width: 100%;
  overflow: hidden;
}

.photo-slider > img {
  grid-area: 1/1;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 8px solid var(--brown2);
  box-shadow: 0 4px 24px rgba(0,0,0,0.55);
  animation: slide 12s infinite;
}

.photo-slider > img:last-child { animation-name: slide-last; }
.photo-slider > img:nth-child(2) { animation-delay: -4s; }
.photo-slider > img:nth-child(3) { animation-delay: -8s; }

@keyframes slide {
  0%     { transform: translateX(0%);   z-index: 2; }
  16.66% { transform: translateX(120%); z-index: 2; }
  16.67% { transform: translateX(120%); z-index: 1; }
  33.34% { transform: translateX(0%);   z-index: 1; }
  66.33% { transform: translateX(0%);   z-index: 1; }
  66.34% { transform: translateX(0%);   z-index: 2; }
  100%   { transform: translateX(0%);   z-index: 2; }
}

@keyframes slide-last {
  0%     { transform: translateX(0%);   z-index: 2; }
  16.66% { transform: translateX(120%); z-index: 2; }
  16.67% { transform: translateX(120%); z-index: 1; }
  33.34% { transform: translateX(0%);   z-index: 1; }
  83.33% { transform: translateX(0%);   z-index: 1; }
  83.34% { transform: translateX(0%);   z-index: 2; }
  100%   { transform: translateX(0%);   z-index: 2; }
}

/* ????????? CONTACT ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
.contact-band {
  background:
    linear-gradient(rgba(20,11,6,0.92), rgba(12,7,4,0.97)),
    url("../../images/471266680_561308456766757_6547555902000621785_n.jpg") 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(380px, 84vw);
  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;
  }

  .menu-block-list { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr; gap: 16px; }

  .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 { justify-self: center; }
  .brand-mark img { width: min(74vw, 250px); min-width: 0; }
  .menu-button span { display: none; }
  .hero { min-height: 680px; }
  .hero-content { padding-top: 68px; }

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

  .button { width: 100%; }
  .hero-phone { width: 100%; text-align: center; }
  .hours-inner { padding: 32px 24px 28px; }
  .offer-card-hd { padding: 28px 24px 22px; }
  .offer-list-item { padding: 16px 24px; }
  .feature-banner { min-height: 420px; }

  .offer-grid { gap: 14px; }
  .offer-item-body { padding: 22px 20px 24px; }
  .menu-block-list li { flex-wrap: wrap; }
  .menu-block-list li > div { min-width: 0; }
  .footer-brand img { width: min(280px, 82vw); }
}


