:root {
  --bg: #0f0f0f;
  --surface: #171717;
  --surface-soft: #1c1c1c;
  --line: #2c2c2c;
  --text: #ffffff;
  --muted: #bfbfbf;
  --halal-accent: #6c7a70;
  --focus: #ffffff;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --space-6: 48px;
  --radius: 14px;
  --shadow-soft: 0 10px 26px rgba(0, 0, 0, 0.25);
  --max-width: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
.brand {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  line-height: 1.25;
}

h2 {
  font-size: clamp(1.5rem, 5.2vw, 2.2rem);
  margin-bottom: var(--space-2);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

p {
  margin: 0;
}

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

a {
  color: var(--text);
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: var(--space-1) var(--space-2);
  background: #ffffff;
  color: #0f0f0f;
  border-radius: 0 0 10px 10px;
  z-index: 999;
}

.skip-link:focus-visible {
  left: var(--space-2);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-2);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  background: rgba(15, 15, 15, 0.95);
  border-bottom: 1px solid var(--line);
}

.site-nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 12px var(--space-2);
  display: flex;
  gap: var(--space-2);
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.logo-wrapper {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.nav-list::-webkit-scrollbar {
  height: 6px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--muted);
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.nav-link.active {
  color: var(--text);
  background: var(--surface-soft);
  box-shadow: inset 0 0 0 1px rgba(108, 122, 112, 0.45);
}

.section {
  padding: var(--space-6) 0;
  border-top: 1px solid var(--line);
}

.hero {
  border-top: 0;
  padding-top: 0;
}

.hero-media {
  position: relative;
  min-height: 64vh;
  border-bottom: 1px solid var(--line);
}

.hero-image {
  width: 100%;
  height: 64vh;
  min-height: 420px;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 15, 0.56);
}

.hero-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: var(--space-4);
  z-index: 2;
}

.eyebrow {
  display: inline-block;
  margin-bottom: var(--space-1);
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1 {
  font-size: clamp(2.25rem, 8.5vw, 4.3rem);
  margin-bottom: var(--space-1);
}

.subtitle {
  color: #eeeeee;
  font-size: clamp(1rem, 3.8vw, 1.3rem);
}

.button-group {
  margin-top: var(--space-3);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.btn-primary {
  background: #ffffff;
  color: #0f0f0f;
}

.btn-secondary {
  border-color: #4b4b4b;
  background: transparent;
  color: #ffffff;
}

.btn:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: #ececec;
}

.btn-secondary:hover {
  background: var(--surface-soft);
}

.hero-gallery {
  margin-top: var(--space-4);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2);
}

.image-card {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}

.image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2);
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-2);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.fact-list {
  margin: 0;
  display: grid;
  gap: 12px;
}

.fact-list div {
  display: grid;
  gap: 2px;
}

.fact-list dt {
  font-weight: 600;
  color: var(--muted);
}

.fact-list dd {
  margin: 0;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2);
}

.menu-card h3,
.menu-details summary {
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.menu-details summary {
  cursor: pointer;
  list-style: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.menu-details summary::-webkit-details-marker {
  display: none;
}

.menu-details summary::after {
  content: "Expand";
  float: right;
  color: var(--muted);
}

.menu-details[open] summary::after {
  content: "Collapse";
}

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

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-2);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

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

.menu-item h4 {
  font-size: 0.95rem;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  margin: 0;
}

.price {
  margin: 0;
  white-space: nowrap;
  font-weight: 700;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table caption {
  text-align: left;
  color: var(--muted);
  margin-bottom: var(--space-1);
}

.hours-table th,
.hours-table td {
  text-align: left;
  padding: 10px 6px;
  border-bottom: 1px solid var(--line);
}

.hours-table tbody tr:last-child th,
.hours-table tbody tr:last-child td {
  border-bottom: 0;
}

.cta-card {
  display: grid;
  gap: 8px;
}

.order-btn {
  margin-top: 8px;
  width: fit-content;
}

#about h2 {
  font-size: clamp(1.7rem, 5.6vw, 2.4rem);
  margin-bottom: var(--space-3);
}

#about .about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}

#about .card {
  border-radius: var(--radius);
  padding: var(--space-3);
  background: var(--surface);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}

#about .card p + p {
  margin-top: var(--space-2);
}

#about .fact-list {
  gap: var(--space-2);
}

#about .fact-list dt {
  color: var(--muted);
}

#about .fact-list dd {
  color: var(--text);
  font-weight: 600;
}

#order-online .cta-card {
  display: grid;
  gap: var(--space-3);
  justify-items: center;
  text-align: center;
}

#order-online .order-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 640px;
}

#order-online .order-buttons .order-btn {
  margin-top: 0;
  width: 100%;
  min-height: 50px;
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 700;
}

#order-online .order-btn-justeat {
  background: #ff7a00;
  border-color: #ff7a00;
  color: #ffffff;
}

#order-online .order-btn-deliveroo {
  background: #00c1b2;
  border-color: #00c1b2;
  color: #ffffff;
}

#order-online .order-btn-ubereats {
  background: #0f2b21;
  border-color: #0f2b21;
  color: #ffffff;
}

#order-online .order-btn-justeat:hover {
  background: #e66e00;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px) scale(1.01);
}

#order-online .order-btn-deliveroo:hover {
  background: #00ad9f;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px) scale(1.01);
}

#order-online .order-btn-ubereats:hover {
  background: #0b2018;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px) scale(1.01);
}

address {
  font-style: normal;
  margin-bottom: 12px;
}

iframe {
  border-radius: 12px;
  background: #131313;
}

.contact-form {
  margin-top: var(--space-2);
  display: grid;
  gap: 10px;
}

label {
  font-size: 0.92rem;
  color: #e3e3e3;
}

input,
textarea {
  width: 100%;
  background: #101010;
  color: var(--text);
  border: 1px solid #383838;
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
}

textarea {
  resize: vertical;
}

.inline-link {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.social-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 108px;
  border: 1px solid #404040;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 600;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.social-links a:hover {
  background: var(--surface-soft);
  transform: scale(1.02);
}

.helper-text {
  margin-top: 10px;
  color: var(--muted);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2);
}

.review-card {
  min-height: auto;
  display: grid;
  gap: 10px;
  text-align: left;
}

.review-head {
  display: grid;
  gap: 2px;
}

.review-name {
  font-weight: 800;
}

.review-meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.review-stars {
  letter-spacing: 0.1em;
}

.review-text {
  color: #e9e9e9;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: var(--space-4) 0;
  background: #0f0f0f;
}

.footer-content {
  display: grid;
  gap: 8px;
  font-size: 0.92rem;
}

.copyright {
  color: var(--muted);
}

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

.is-visible {
  opacity: 1;
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

@media (min-width: 760px) {
  .hero-content {
    bottom: var(--space-5);
  }

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

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

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

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

  .menu-grid .menu-card:first-child {
    grid-column: 1 / -1;
  }

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

@media (min-width: 1040px) {
  .section {
    padding: 56px 0;
  }

  #about .about-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-4);
  }

  #order-online .order-buttons {
    flex-direction: row;
  }

  #order-online .order-buttons .order-btn {
    flex: 1;
  }

  .hero-image {
    height: 72vh;
  }

  .hero-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .menu-grid .menu-card:first-child {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

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

.map-wrapper {
  width: 100%;
  max-width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.map-wrapper iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

@media (max-width: 768px) {
  .map-wrapper iframe {
    height: 260px;
  }
}

.loman-badge {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #111;
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  z-index: 9999;
  transition: all 0.3s ease;
}

.loman-badge span {
  font-size: 11px;
  opacity: 0.7;
}

.loman-badge strong {
  font-size: 14px;
  font-weight: 600;
}

.loman-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
  background: #000;
}

@media (max-width: 600px) {
  .loman-badge {
    right: 12px;
    bottom: 12px;
    padding: 8px 10px;
    font-size: 12px;
  }

  .loman-badge strong {
    font-size: 12px;
  }

  .loman-badge span {
    font-size: 10px;
  }
}
