:root {
  --black: #08090b;
  --night: #10151d;
  --blue: #162234;
  --steel: #8c97a3;
  --gray: #d4d0c8;
  --beige: #efe4d0;
  --gold: #E1DDCC;
  --gold-deep: #9b7433;
  --line: rgba(239, 228, 208, 0.16);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--beige);
  background: var(--black);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.65;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 20px;
  background: rgba(8, 9, 11, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

.footer-container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.brand-logo {
  display: block;
  width: 100px;
  object-fit: contain;
}

.nav-toggle {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 2px 0;
  background: var(--beige);
}

.nav-shell {
  position: absolute;
  top: 72px;
  right: 20px;
  display: none;
  width: min(280px, calc(100vw - 40px));
  padding: 14px;
  background: rgba(16, 21, 29, 0.98);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.nav-shell.open {
  display: grid;
  gap: 10px;
}

.main-nav {
  display: grid;
  gap: 6px;
}

.main-nav a,
.footer-nav a {
  color: var(--gray);
  font-size: 0.9rem;
  font-weight: 700;
}

.main-nav a {
  padding: 10px 12px;
  border-radius: 8px;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--black);
  background: var(--gold);
}

.instagram-link {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--gold);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.instagram-link svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.hero,
.page-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: 90px 20px 44px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(8, 9, 11, 0.24), rgba(8, 9, 11, 0.92)),
    linear-gradient(90deg, rgba(8, 9, 11, 0.82), rgba(22, 34, 52, 0.24)),
    url("galeria/pratos/header.png") center/cover;
}

.page-hero {
  min-height: 58vh;
}

.about-hero {
  background:
    linear-gradient(180deg, rgba(8, 9, 11, 0.22), rgba(8, 9, 11, 0.92)),
    linear-gradient(90deg, rgba(8, 9, 11, 0.82), rgba(22, 34, 52, 0.18)),
    url("galeria/ambiente/ambiente_noka.jpg") center/cover;
}

.contact-hero {
  background:
    linear-gradient(180deg, rgba(8, 9, 11, 0.24), rgba(8, 9, 11, 0.92)),
    linear-gradient(90deg, rgba(8, 9, 11, 0.82), rgba(22, 34, 52, 0.18)),
    url("galeria/ambiente/ambiente_noka_3.jpg") center/cover;
}

.hero-content,
.page-hero > div,
.section {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.hero-content {
  max-width: 760px;
}

.hero-content p {
  text-align: center;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(3.6rem, 16vw, 7.5rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.3rem, 10vw, 4.4rem);
}

h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.hero p,
.page-hero p:not(.eyebrow) {
  max-width: 620px;
  color: var(--gray);
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.home-hero {
  justify-items: center;
  text-align: center;
}

.home-hero .hero-content {
  margin-inline: auto;
}

.home-hero .hero p {
  margin-inline: auto;
}

.home-hero .hero-actions {
  justify-content: center;
}

.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--gold);
  opacity: 0.85;
  transform: translateX(-50%);
  transition: opacity 0.2s ease, color 0.2s ease;
  animation: hero-scroll-bounce 2s ease-in-out infinite;
}

.hero-scroll:hover {
  color: var(--beige);
  opacity: 1;
}

.hero-scroll svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes hero-scroll-bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.button.primary {
  color: var(--black);
  background: var(--gold);
}

.button.primary:hover {
  background: #e0bd78;
}

.button.secondary {
  color: var(--beige);
  border: 1px solid rgba(239, 228, 208, 0.42);
  background: rgba(239, 228, 208, 0.06);
}

.section {
  padding: 72px 20px;
}

.about-preview,
.contact-section {
  display: grid;
  gap: 28px;
}

.media-frame,
.highlight-card,
.map-placeholder,
.gallery-grid img,
.dish-slide {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.media-frame {
  min-height: 320px;
  background: var(--blue);
}

.media-frame img,
.dish-slide img {
  min-height: 318px;
  object-fit: cover;
}

.highlight-card img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.section-copy {
  color: var(--gray);
}

.section-copy h2,
.section-heading h2,
.contact-info h2 {
  color: var(--beige);
}

.section-copy.wide {
  max-width: 860px;
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--gold);
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  gap: 18px;
}

.section-heading {
  margin-bottom: 26px;
}

.section-support {
  max-width: 700px;
  color: var(--gray);
}

.highlight-card {
  background: linear-gradient(180deg, rgba(22, 34, 52, 0.92), rgba(16, 21, 29, 0.98));
}

.highlight-card div {
  padding: 22px;
}

.highlight-card h3 {
  color: var(--beige);
}

.highlight-card p,
.contact-info li,
.site-footer p {
  color: var(--gray);
}

.carousel {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  gap: 10px;
}

.carousel-track {
  display: flex;
  gap: 14px;
  overflow: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  min-height: 260px;
}

.dish-slide,
.highlight-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
}

.dish-slide {
  min-height: 260px;
  background: var(--night);
}

.dish-slide img {
  aspect-ratio: 4 / 3;
}

.carousel-button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--gold);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(239, 228, 208, 0.05);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.carousel-cta {
  margin-top: 22px;
  text-align: center;
}

.highlights-section .carousel-track {
  min-height: auto;
  align-items: flex-start;
}

.gallery-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.contact-info ul {
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.contact-info li + li {
  margin-top: 12px;
}

.map-placeholder {
  display: grid;
  place-items: center;
  min-height: 360px;
  padding: 28px;
  color: var(--gray);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(201, 161, 93, 0.18), rgba(22, 34, 52, 0.9)),
    repeating-linear-gradient(45deg, rgba(239, 228, 208, 0.08) 0 1px, transparent 1px 18px);
}

.map-placeholder span {
  display: block;
  margin-bottom: 12px;
  color: var(--beige);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
}

.site-footer {
  display: grid;
  gap: 24px;
  padding: 36px 20px;
  background: #050608;
  border-top: 1px solid var(--line);
}

.footer-brand {
  margin-bottom: 10px;
  color: var(--beige);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
}

.footer-nav a:hover {
  color: var(--gold);
}

@media (min-width: 760px) {
  .site-header {
    padding: 0 40px;
  }

  .nav-toggle {
    display: none;
  }

  .nav-shell {
    position: static;
    display: flex;
    align-items: center;
    width: auto;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .main-nav {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .main-nav a {
    border-radius: 999px;
  }

  .hero,
  .page-hero {
    padding: 110px 40px 70px;
  }

  .about-preview,
  .contact-section {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
  }

  .carousel-track {
    min-height: 300px;
  }

  .dish-slide,
  .highlight-slide {
    flex-basis: calc((100% - 28px) / 3);
  }

  .dish-slide {
    min-height: 300px;
  }

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

  .site-footer {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 42px 40px;
  }
}

@media (min-width: 1120px) {
  .hero-content {
    margin-left: calc((100vw - 1120px) / 2);
  }

  .home-hero .hero-content {
    margin-inline: auto;
  }
}

@media (max-width: 500px){
  .footer-container{
    display: block;
    margin: 0 auto;
    text-align: center;
  }
}

