:root {
  --bg: #0d0d0f;
  --bg-soft: #141418;
  --surface: rgba(24, 24, 28, 0.9);
  --surface-strong: rgba(14, 14, 18, 0.92);
  --surface-elevated: rgba(255, 255, 255, 0.06);
  --text: #f6f1e8;
  --muted: rgba(246, 241, 232, 0.72);
  --brand: #f45b2c;
  --brand-dark: #c73d16;
  --accent: #ffbe55;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --shadow: 0 28px 60px rgba(0, 0, 0, 0.34);
  --content-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(244, 91, 44, 0.18), transparent 24%),
    linear-gradient(180deg, #121216 0%, #09090b 100%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: #ffffff;
  color: #111111;
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
iframe:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 1.5rem clamp(1.25rem, 3vw, 3rem) 4rem;
  background: #0b0b0d;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 10, 0.5), rgba(8, 8, 10, 0.78)),
    linear-gradient(120deg, rgba(0, 0, 0, 0.72), rgba(244, 91, 44, 0.2)),
    radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.18) 65%, rgba(0, 0, 0, 0.42) 100%);
}

.nav,
.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--content-width), 100%);
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  position: relative;
  z-index: 5;
}

.brand {
  font-family: "Segoe UI", Inter, Helvetica, Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff8ef;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  color: rgba(246, 241, 232, 0.86);
  font-weight: 600;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  padding: 0;
  backdrop-filter: blur(8px);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: #fff8ef;
}

.hero-content {
  width: min(860px, 100%);
  padding-top: 12vh;
  text-align: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.8rem;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--accent);
}

.section-kicker {
  color: var(--brand);
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.4rem, 8vw, 6.3rem);
  line-height: 0.92;
  font-weight: 800;
}

.hero-copy {
  max-width: 58ch;
  margin: 1.4rem auto 0;
  color: rgba(246, 241, 232, 0.84);
  font-size: 1.08rem;
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.button:hover,
.button:focus-visible,
.filter-button:hover,
.filter-button:focus-visible,
.gallery-item:hover,
.gallery-item:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--brand) 0%, #ff7b42 100%);
  color: #fff8ef;
  box-shadow: 0 16px 36px rgba(244, 91, 44, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(135deg, #ff6d39 0%, #ff9256 100%);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #fff8ef;
  backdrop-filter: blur(10px);
}

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

.hero-highlights div {
  padding: 1.1rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(11, 11, 14, 0.46);
  backdrop-filter: blur(12px);
}

.hero-highlights strong,
.location-details strong {
  display: block;
  font-size: 1.12rem;
}

.hero-highlights span {
  display: block;
  margin-top: 0.28rem;
  color: rgba(246, 241, 232, 0.76);
  font-size: 0.94rem;
}

.section {
  position: relative;
  padding: clamp(4.5rem, 8vw, 7rem) clamp(1.25rem, 3vw, 3rem);
}

main > .section:not(:first-child) {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.intro,
.gallery-section,
.location-section {
  background:
    linear-gradient(180deg, rgba(19, 19, 23, 0.98), rgba(10, 10, 12, 0.98));
}

.menu-section,
.testimonials-section,
.contact-section {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.menu-section {
  background-image:
    linear-gradient(180deg, rgba(8, 8, 10, 0.78), rgba(8, 8, 10, 0.86)),
    url("https://images.unsplash.com/photo-1529006557810-274b9b2fc783?auto=format&fit=crop&w=2200&q=80");
}

.testimonials-section {
  background-image:
    linear-gradient(180deg, rgba(8, 8, 10, 0.82), rgba(8, 8, 10, 0.78)),
    url("https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=2200&q=80");
}

.contact-section {
  background-image:
    linear-gradient(180deg, rgba(8, 8, 10, 0.84), rgba(8, 8, 10, 0.8)),
    url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=2200&q=80");
}

.section > * {
  position: relative;
  z-index: 1;
  width: min(var(--content-width), 100%);
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  margin-bottom: 2.2rem;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.03;
}

.split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.feature-grid,
.menu-grid,
.gallery-grid,
.testimonials-grid,
.contact-layout,
.location-section {
  display: grid;
  gap: 1.5rem;
}

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

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

.feature,
.menu-card,
.testimonial-card,
.contact-panel,
.contact-form,
.location-copy,
.map-frame {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.feature,
.menu-card,
.testimonial-card,
.contact-panel,
.contact-form,
.location-copy {
  padding: 1.4rem;
}

.feature,
.menu-card {
  overflow: hidden;
}

.feature,
.menu-card,
.testimonial-card {
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    background-color 0.24s ease;
}

.feature:hover,
.feature:focus-within,
.menu-card:hover,
.menu-card:focus-within,
.testimonial-card:hover,
.testimonial-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(244, 91, 44, 0.38);
  box-shadow: 0 34px 68px rgba(0, 0, 0, 0.42);
}

.feature:hover,
.feature:focus-within,
.testimonial-card:hover,
.testimonial-card:focus-within {
  background: rgba(30, 30, 36, 0.96);
}

.card-image {
  width: calc(100% + 2.8rem);
  max-width: none;
  height: 210px;
  margin: -1.4rem -1.4rem 1.2rem;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.04);
}

.menu-image {
  height: 240px;
}

.feature h3,
.contact-panel h3 {
  margin: 0 0 0.65rem;
  font-size: 1.18rem;
}

.menu-card-top h3 {
  margin: 0;
  font-size: 1.22rem;
}

.feature p,
.menu-card p,
.contact-panel p,
.location-copy p,
.testimonial-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.menu-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.filter-button {
  min-height: 44px;
  padding: 0.72rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  cursor: pointer;
}

.filter-button.active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff8ef;
}

.menu-card:hover {
  border-color: rgba(244, 91, 44, 0.35);
}

.feature .card-image,
.menu-card .card-image {
  transition: transform 0.32s ease, filter 0.32s ease;
}

.feature:hover .card-image,
.feature:focus-within .card-image,
.menu-card:hover .card-image,
.menu-card:focus-within .card-image {
  transform: scale(1.04);
  filter: saturate(1.08);
}

.menu-card.is-hidden {
  display: none;
}

.menu-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.menu-card-top span {
  white-space: nowrap;
  font-weight: 800;
  color: var(--accent);
}

.gallery-item {
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--surface);
  cursor: pointer;
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.04);
}

.testimonials-grid {
  align-items: stretch;
}

.testimonial-card {
  display: grid;
  gap: 1.25rem;
  background: rgba(11, 11, 14, 0.7);
}

.testimonial-text {
  font-size: 1.02rem;
}

.testimonial-meta strong {
  display: block;
  font-size: 1rem;
}

.testimonial-meta span {
  display: block;
  margin-top: 0.2rem;
  color: rgba(246, 241, 232, 0.6);
  font-size: 0.94rem;
}

.location-section {
  width: min(var(--content-width), 100%);
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
  align-items: stretch;
}

.location-section > * {
  width: auto;
  margin: 0;
}

.location-copy {
  background:
    linear-gradient(180deg, rgba(24, 24, 28, 0.94), rgba(10, 10, 12, 0.94));
}

.location-details {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.location-details span {
  display: block;
  margin-top: 0.25rem;
  color: rgba(246, 241, 232, 0.58);
  font-size: 0.95rem;
}

.map-frame {
  overflow: hidden;
  min-height: 460px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.55) contrast(1.1);
}

.contact-layout {
  grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
  max-width: 1040px;
  margin: 0 auto;
}

.contact-panel {
  background:
    linear-gradient(180deg, rgba(244, 91, 44, 0.94), rgba(184, 53, 21, 0.94));
  color: #fff8ef;
}

.contact-panel p {
  color: rgba(255, 248, 239, 0.86);
}

.contact-link {
  display: block;
  margin-top: 1rem;
  font-size: 1.1rem;
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 1rem;
  max-width: 620px;
  width: 100%;
  justify-self: center;
  background: rgba(12, 12, 15, 0.82);
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.95rem 1rem;
  color: var(--text);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(246, 241, 232, 0.38);
}

.contact-form input.field-error,
.contact-form textarea.field-error {
  border-color: #ff7272;
  background: rgba(255, 114, 114, 0.08);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--brand);
}

.required-mark {
  color: var(--accent);
}

.form-help {
  margin: 0;
  color: rgba(246, 241, 232, 0.56);
  font-size: 0.94rem;
}

.form-message {
  min-height: 1.5rem;
  margin: 0;
  color: #ffd5c8;
  font-weight: 700;
}

.field-error-message {
  margin: 0.35rem 0 0;
  color: #ff9b9b;
  font-size: 0.92rem;
  font-weight: 600;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem clamp(1.25rem, 3vw, 3rem) 2.5rem;
  background: #000000;
  color: rgba(246, 241, 232, 0.82);
}

.footer p {
  margin: 0;
}

.footer p:last-child {
  text-align: right;
}

.lightbox {
  width: min(90vw, 960px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 1rem;
  background: rgba(8, 8, 10, 0.96);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.75);
}

.lightbox img {
  max-height: 80vh;
  width: 100%;
  object-fit: contain;
  border-radius: 16px;
}

.lightbox-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-left: auto;
  margin-bottom: 0.75rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff8ef;
  font-size: 1.8rem;
  cursor: pointer;
}

@media (max-width: 960px) {
  .feature-grid,
  .menu-grid,
  .gallery-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .location-section,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .contact-form {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: auto;
    padding-bottom: 3rem;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(8, 8, 10, 0.94);
    z-index: 20;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
  }

  .nav-links.open {
    display: flex;
  }

  .feature-grid,
  .menu-grid,
  .gallery-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .split,
  .footer {
    flex-direction: column;
  }

  .footer p:last-child {
    text-align: left;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
