/* ==========================================================================
   Gjakova Grill — ember & charcoal Balkan grill
   ========================================================================== */

:root {
  --coal:       #161513;
  --coal-2:     #1f1d1a;
  --coal-3:     #2b2824;
  --coal-4:     #3a3630;
  --ash:        #9a9080;
  --ash-light:  #c8bfb0;
  --ember:      #e8621a;
  --ember-deep: #b8420e;
  --ember-glow: rgba(232, 98, 26, 0.22);
  --gold:       #c9962e;
  --gold-light: #e5b84a;
  --cream:      #f5f0e8;
  --white:      #ffffff;

  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body:    'Lora', Georgia, serif;

  --maxw:       1200px;
  --gut:        clamp(1.25rem, 5vw, 3rem);
  --nav-h:      72px;
  --radius-sm:  3px;
  --radius:     8px;

  --shadow-card: 0 4px 6px rgba(0,0,0,.3), 0 16px 40px -16px rgba(0,0,0,.6);
  --shadow-ember: 0 0 32px 8px var(--ember-glow);
}

@media (max-width: 480px) {
  :root { --nav-h: 64px; }
}

/* ── Reset & base ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  background: var(--coal);
  color: var(--ash-light);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gut);
}

/* ── Buttons ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: transform .15s, box-shadow .15s, background .15s;
  white-space: nowrap;
}
.btn--primary {
  background: var(--ember);
  color: var(--white);
  box-shadow: 0 4px 20px -4px var(--ember-glow);
}
.btn--primary:hover {
  background: var(--ember-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px -4px rgba(232,98,26,.45);
}
.btn--ghost {
  background: transparent;
  color: var(--gold-light);
  border: 1.5px solid var(--gold);
}
.btn--ghost:hover {
  background: rgba(201,150,46,.08);
  transform: translateY(-2px);
}

/* ── Fade-in utility ───────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.fade-in--visible { opacity: 1; transform: none; }

/* ── Section labels ────────────────────────────────── */
.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: .75rem;
}
.section-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--cream);
  margin-bottom: .4rem;
}
.section-title--gold { color: var(--gold-light); }
.section-sub {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ash);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 2.5rem;
}

/* ════════════════════════════════════════════════════
   NAV
   ════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background .3s, box-shadow .3s;
}
.nav--scrolled {
  background: rgba(22, 21, 19, .96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,.04);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gut);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream);
}
.nav__brand span { color: var(--ember); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}
.nav__links a {
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ash-light);
  transition: color .15s;
}
.nav__links a:hover { color: var(--ember); }

.nav__cta {
  background: var(--ember) !important;
  color: var(--white) !important;
  padding: .45rem 1.2rem;
  border-radius: var(--radius-sm);
  transition: background .15s !important;
}
.nav__cta:hover { background: var(--ember-deep) !important; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 2px;
}
.nav__toggle span {
  display: block;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}

@media (max-width: 768px) {
  .nav__toggle { display: flex; }
  .nav__links {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(22, 21, 19, .98);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 1.5rem 0 2rem;
    border-top: 1px solid var(--coal-4);
  }
  .nav__links--open { display: flex; }
  .nav__links li { width: 100%; text-align: center; }
  .nav__links a { display: block; padding: .85rem 1.5rem; }
  .nav__cta { display: inline-block; margin-top: .5rem; }
}

/* ════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--coal);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 60%, rgba(232,98,26,.13) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 50% 55%, rgba(201,150,46,.07) 0%, transparent 55%),
    linear-gradient(180deg, #0f0d0b 0%, #181411 50%, #1f1a14 100%);
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 4rem) var(--gut) 6rem;
  text-align: center;
}

.hero__eyebrow {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .9rem;
}
.hero__eyebrow::before,
.hero__eyebrow::after {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--ember);
  opacity: .6;
  flex-shrink: 0;
}

.hero__title {
  font-size: clamp(5rem, 14vw, 11rem);
  font-weight: 800;
  line-height: .88;
  letter-spacing: .04em;
  color: var(--cream);
  margin-bottom: 0;
}
.hero__title em {
  display: block;
  font-style: normal;
  color: var(--ember);
}

.hero__rule {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--ember), transparent);
  margin: 1.75rem auto;
}

.hero__desc {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--ash-light);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  opacity: .4;
}
.hero__scroll-line {
  display: block;
  width: 1.5px;
  height: 48px;
  background: linear-gradient(to bottom, var(--ember), transparent);
  animation: scroll-pulse 2.2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: .4; transform: scaleY(1); }
  50%       { opacity: .9; transform: scaleY(.75); }
}

@media (max-width: 480px) {
  .hero__title { font-size: clamp(4rem, 18vw, 6rem); }
}

/* ════════════════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════════════════ */
.about {
  position: relative;
  background: var(--coal-2);
  padding: 7rem 0 6rem;
  clip-path: polygon(0 3.5rem, 100% 0, 100% calc(100% - 3.5rem), 0 100%);
  margin: -2rem 0;
  z-index: 1;
}

.about__head {
  text-align: center;
  margin-bottom: 3.5rem;
}

.about__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.about__card {
  background: var(--coal-3);
  border: 1px solid var(--coal-4);
  border-top: 2px solid var(--ember);
  padding: 2.25rem 1.75rem;
  border-radius: 0 0 var(--radius) var(--radius);
  transition: transform .2s, box-shadow .2s;
}
.about__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.about__icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.about__card h3 {
  font-size: 1.3rem;
  color: var(--gold-light);
  margin-bottom: .6rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.about__card p {
  font-size: .95rem;
  color: var(--ash);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .about__grid { grid-template-columns: 1fr; gap: 1rem; }
  .about { clip-path: polygon(0 2rem, 100% 0, 100% calc(100% - 2rem), 0 100%); }
}

/* ════════════════════════════════════════════════════
   MENU SECTION
   ════════════════════════════════════════════════════ */
.menu-section {
  background: var(--coal);
  padding: 6rem 0 5rem;
  position: relative;
  z-index: 2;
}

.menu-section__head {
  text-align: center;
  margin-bottom: 3rem;
}

/* Tabs */
.menu-tabs {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--coal-4);
  padding-bottom: 0;
}

.menu-tab {
  padding: .75rem 1.5rem;
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ash);
  border-bottom: 2.5px solid transparent;
  border-radius: 0;
  transition: color .15s, border-color .15s;
  margin-bottom: -1px;
}
.menu-tab:hover { color: var(--cream); }
.menu-tab--active {
  color: var(--ember);
  border-bottom-color: var(--ember);
}

/* Panels */
.menu-panel { display: none; }
.menu-panel--active { display: block; }

.menu-panel__head {
  margin-bottom: 2rem;
}
.menu-panel__title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--cream);
  margin-bottom: .25rem;
}
.menu-panel__sub {
  font-style: italic;
  color: var(--ash);
  font-size: .95rem;
}

/* Groups */
.menu-group {
  margin-bottom: 3rem;
}
.menu-group__title {
  font-size: 1.1rem;
  color: var(--ember);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .4rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--coal-4);
}
.menu-group__note {
  font-size: .85rem;
  font-style: italic;
  color: var(--ash);
  margin-bottom: 1.25rem;
}

/* Items */
.menu-items {
  display: grid;
  gap: 0;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: .85rem 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: background .1s;
}
.menu-item:last-child { border-bottom: none; }
.menu-item:hover { background: rgba(255,255,255,.02); }

.menu-item__main {
  display: flex;
  gap: .6rem;
  flex: 1;
  min-width: 0;
}

.menu-item__num {
  font-family: var(--font-display);
  font-size: .8rem;
  color: var(--coal-4);
  min-width: 1.8rem;
  padding-top: .1rem;
  flex-shrink: 0;
}

.menu-item__text { min-width: 0; }

.menu-item__name {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--cream);
}

.menu-item__desc {
  display: block;
  font-size: .85rem;
  font-style: italic;
  color: var(--ash);
  margin-top: .2rem;
  line-height: 1.5;
}

.veggie-badge { font-size: .8em; margin-left: .25rem; }

.menu-item__price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .2rem;
  flex-shrink: 0;
  padding-top: .1rem;
}

.price {
  display: flex;
  align-items: baseline;
  gap: .35rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
  white-space: nowrap;
}
.price__label {
  font-size: .75rem;
  font-weight: 400;
  color: var(--ash);
  letter-spacing: .05em;
}

/* Dual-price (Menü / Solo) */
.menu-item--duo .menu-item__price {
  flex-direction: row;
  gap: .75rem;
  align-items: center;
}
.price--labeled {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .1rem;
}
.price--labeled .price__label {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* Compact shots grid */
.menu-compact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .75rem;
  margin-top: .75rem;
}
.compact-item {
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--coal-3);
  border: 1px solid var(--coal-4);
  padding: .35rem .75rem;
  border-radius: var(--radius-sm);
}

@media (max-width: 600px) {
  .menu-tab { padding: .65rem .9rem; font-size: .78rem; }
  .menu-item { flex-wrap: wrap; }
  .menu-item__price { width: 100%; flex-direction: row; flex-wrap: wrap; margin-top: .25rem; padding-left: 2.4rem; }
  .menu-item--duo .menu-item__price { padding-left: 2.4rem; }
}

/* ════════════════════════════════════════════════════
   HOURS + LOCATION
   ════════════════════════════════════════════════════ */
.info-section {
  background: var(--coal-2);
  padding: 6rem 0;
  clip-path: polygon(0 3.5rem, 100% 0, 100% 100%, 0 100%);
  margin-top: -2rem;
  position: relative;
  z-index: 1;
}

.info-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  padding-top: 2rem;
}

/* Hours list */
.hours-list {
  list-style: none;
  margin-top: 1.5rem;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: .7rem 0;
  border-bottom: 1px solid var(--coal-4);
  font-size: .95rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-day {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--cream);
  font-size: .9rem;
}
.hours-time {
  color: var(--ash-light);
  text-align: right;
  line-height: 1.5;
}
.hours-time--closed {
  color: var(--coal-4);
  font-style: italic;
}
.hours-row--closed .hours-day { color: var(--ash); }

.info-note {
  font-size: .8rem;
  font-style: italic;
  color: var(--ash);
  margin-top: 1rem;
}

/* Location */
address {
  font-style: normal;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.address-name {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--cream);
  font-size: 1.1rem;
  margin-bottom: .4rem;
}
address p { font-size: .95rem; color: var(--ash-light); line-height: 1.8; }

.contact-links {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1.75rem;
}
.contact-link {
  font-size: .95rem;
  color: var(--ash-light);
  display: flex;
  align-items: center;
  gap: .5rem;
  transition: color .15s;
}
.contact-link:hover { color: var(--ember); }

@media (max-width: 768px) {
  .info-section__grid { grid-template-columns: 1fr; gap: 3rem; }
  .info-section { clip-path: polygon(0 2rem, 100% 0, 100% 100%, 0 100%); }
}

/* ════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════ */
.footer {
  background: var(--coal);
  border-top: 1px solid var(--coal-4);
  padding: 2.25rem 0;
  position: relative;
  z-index: 2;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: .15em;
  color: var(--ash);
}

.footer__copy {
  font-size: .8rem;
  color: var(--coal-4);
  order: 3;
  width: 100%;
  text-align: center;
}

.footer__legal {
  display: flex;
  gap: 1.25rem;
}
.footer__legal a {
  font-family: var(--font-display);
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ash);
  transition: color .15s;
}
.footer__legal a:hover { color: var(--ember); }

@media (max-width: 560px) {
  .footer__inner { justify-content: center; text-align: center; }
  .footer__legal { justify-content: center; }
}

/* ── Reservation section ───────────────────────────── */
.reserve-section {
  background: var(--coal-2);
  padding: clamp(4rem, 10vw, 7rem) 0;
  clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
  margin: -2px 0;
}

.reserve-section__head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.reserve-form {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.reserve-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 1rem;
}

.reserve-form__field {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}

.reserve-form__field--narrow {
  min-width: 110px;
}

.reserve-form__field label {
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ash);
}
.reserve-form__field label span { color: var(--ember); }

.reserve-form__field input,
.reserve-form__field textarea {
  background: var(--coal-3);
  border: 1px solid var(--coal-4);
  border-radius: var(--radius-sm);
  color: var(--ash-light);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: .7rem 1rem;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
  resize: vertical;
}

.reserve-form__field input:focus,
.reserve-form__field textarea:focus {
  outline: none;
  border-color: var(--ember);
  box-shadow: 0 0 0 3px rgba(232, 98, 26, .15);
}

.reserve-form__field input::placeholder,
.reserve-form__field textarea::placeholder {
  color: var(--coal-4);
}

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(.6);
  cursor: pointer;
}

.reserve-form__footer {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: .5rem;
}

.reserve-form__status {
  font-size: .9rem;
  min-height: 1.4em;
}
.reserve-form__status--ok  { color: #6dbe7d; }
.reserve-form__status--err { color: var(--ember); }

@media (max-width: 600px) {
  .reserve-form__row {
    grid-template-columns: 1fr 1fr;
  }
  .reserve-form__field--narrow {
    grid-column: 1 / -1;
  }
}
