:root {
  color-scheme: dark;
  --bg: #110a05;
  --surface: #1c130a;
  --surface-strong: #291a12;
  --surface-soft: #2f1f14;
  --text: #f5e9dd;
  --muted: #d7c2b5;
  --accent: #d2581b;
  --accent-soft: #e06b35;
  --highlight: #f1c26b;
  --border: rgba(255, 210, 168, 0.12);
  --shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(circle at top, rgba(186, 134, 64, 0.18), transparent 30%), linear-gradient(180deg, #140c07 0%, #0d0702 100%);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.65;
}

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

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

button,
a.button {
  border: 0;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

a.button:hover,
button:hover {
  transform: translateY(-2px);
}

.page-shell {
  min-height: 100vh;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(13, 8, 3, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

.brand-mark {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(210, 88, 27, 0.95), rgba(229, 118, 62, 0.95));
  color: #fff;
  font-family: 'Cinzel', serif;
  font-size: 1.35rem;
}

.brand small {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
}

.main-nav {
  display: none;
  gap: 1.75rem;
  align-items: center;
}

.main-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), #e28952);
  color: #fff;
  box-shadow: 0 18px 40px rgba(210, 88, 27, 0.28);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  place-items: center;
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 188, 118, 0.24), transparent 24%), linear-gradient(180deg, rgba(9, 6, 3, 0.25), rgba(7, 4, 2, 0.95));
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 10, 5, 0.12) 0%, rgba(17, 10, 5, 0.75) 100%);
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 2rem;
  align-items: center;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 480px);
}

.hero-copy {
  max-width: 620px;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.76rem;
  color: var(--highlight);
  font-weight: 700;
}

.hero h1 {
  margin: 1rem 0 1.2rem;
  font-family: 'Cinzel', serif;
  font-size: clamp(3rem, 5vw, 4.75rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #fff;
}

.hero p {
  font-size: 1.1rem;
  max-width: 42rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.hero-highlights div {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 1.15rem;
  border-radius: 18px;
}

.hero-highlights strong {
  display: block;
  font-size: 1.4rem;
  color: #fff;
}

.hero-highlights span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-card {
  position: relative;
  z-index: 1;
}

.hero-card-inner {
  position: relative;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-card-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  background: rgba(22, 16, 11, 0.85);
  color: var(--highlight);
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.hero-card-copy {
  padding: 1.6rem 1.6rem 2rem;
}

.hero-card-copy h2 {
  margin: 0 0 0.85rem;
  font-size: 1.55rem;
}

.hero-card-copy p {
  margin: 0;
  color: var(--muted);
}

.section {
  padding: 5rem 0;
}

.section-heading,
.section-panel {
  margin-bottom: 2rem;
}

.section-label {
  display: inline-block;
  background: rgba(210, 88, 27, 0.12);
  color: #f6d5a8;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  text-transform: uppercase;
}

.section-heading h2,
.section-panel h2 {
  margin: 1rem 0 1rem;
  font-family: 'Cinzel', serif;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  max-width: 12ch;
}

.split-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
}

.reverse-grid {
  direction: rtl;
}

.reverse-grid > * {
  direction: ltr;
}

.section-panel p,
.section-heading p {
  color: var(--muted);
  max-width: 44rem;
}

.badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.badges span {
  padding: 1rem 1.2rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.about-visual {
  position: relative;
  min-height: 420px;
  background: linear-gradient(180deg, rgba(255, 201, 123, 0.08), rgba(0, 0, 0, 0.45));
  border-radius: 32px;
  overflow: hidden;
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
  opacity: 0.98;
}

.glass-card {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  padding: 2rem;
  background: rgba(20, 12, 5, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
}

.glass-card small {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--highlight);
}

.glass-card h3 {
  margin: 0.85rem 0 0.9rem;
  font-size: 2rem;
  line-height: 1.05;
}

.glass-card p {
  margin: 0;
  color: var(--muted);
}

.menu-grid,
.review-grid,
.gallery-grid {
  display: grid;
  gap: 1.5rem;
}

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

.menu-card,
.review-card {
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.menu-card:hover,
.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.14);
}

.menu-card img {
  height: 260px;
  object-fit: cover;
}

.menu-card div {
  padding: 1.5rem 1.4rem 1.6rem;
}

.menu-card h3 {
  margin: 0 0 0.9rem;
  font-size: 1.4rem;
}

.menu-card p,
.review-card p {
  color: var(--muted);
  margin: 0;
}

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

.gallery-grid img {
  border-radius: 24px;
  min-height: 320px;
  object-fit: cover;
}

.review-panel {
  display: grid;
  gap: 1.4rem;
}

.score-block {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.score-block div {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 1.25rem 1.35rem;
}

.score-block strong {
  display: block;
  font-size: 2rem;
}

.review-grid {
  grid-template-columns: 1fr;
}

.review-card {
  padding: 1.8rem;
}

.review-card strong {
  display: block;
  margin-top: 1rem;
  color: var(--highlight);
}

.contact-card {
  display: grid;
  gap: 1.25rem;
  padding: 2.3rem;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-card h2 {
  margin-top: 0.5rem;
}

.contact-details {
  display: grid;
  gap: 1rem;
}

.contact-details div {
  display: grid;
  gap: 0.25rem;
}

.contact-details strong {
  color: var(--text);
}

.contact-details a,
.contact-details span {
  color: var(--muted);
}

.map-frame {
  min-height: 420px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.24);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(8, 4, 1, 0.8);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: flex-start;
}

.site-footer strong,
.site-footer span {
  display: block;
  color: #f5e9dd;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.site-footer p,
.site-footer a {
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-note {
  margin-top: 2rem;
  color: rgba(215, 194, 181, 0.7);
  font-size: 0.9rem;
  text-align: center;
}

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

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

@media (min-width: 900px) {
  .main-nav {
    display: flex;
  }

  .header-container {
    padding: 1.25rem 0;
  }

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

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

@media (max-width: 880px) {
  .hero-grid,
  .split-grid,
  .header-container {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 760px;
    padding-top: 3rem;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .score-block,
  .menu-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .reverse-grid {
    direction: ltr;
  }
}

@media (max-width: 600px) {
  .brand {
    gap: 0.65rem;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .hero-card img,
  .map-frame,
  .about-visual {
    min-height: 260px;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }
}
