/* Nakashi Bar — Home */

/* === Header (compartilhado com menu) === */
:root {
  --header-h: 76px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy-deep);
  border-bottom: 1px solid var(--divider);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 10px;
  min-height: var(--header-h);
}
.site-nav {
  display: flex;
  gap: clamp(14px, 2.5vw, 28px);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}
.site-nav a { padding: 6px 0; position: relative; }
.site-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--vermilion);
}
@media (max-width: 640px) {
  .site-nav { display: none; }
}

/* === Hero === */
.home-hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}
.home-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.home-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.35) saturate(0.85);
}
.home-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(8, 39, 74, 0.55) 0%, rgba(6, 27, 53, 0.85) 70%, rgba(6, 27, 53, 0.95) 100%),
    linear-gradient(180deg, rgba(6, 27, 53, 0.5) 0%, rgba(6, 27, 53, 0.7) 100%);
  z-index: -1;
}
.home-hero__inner {
  text-align: center;
  padding: clamp(60px, 10vw, 120px) var(--gutter);
  max-width: 920px;
}
.home-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--vermilion-soft);
  font-weight: 500;
  margin-bottom: 24px;
}
.home-hero__eyebrow::before,
.home-hero__eyebrow::after {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.home-hero__title {
  font-size: clamp(40px, 7vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin-bottom: 20px;
}
.home-hero__title em {
  font-style: normal;
  color: var(--vermilion-soft);
}
.home-hero__title span {
  display: block;
  font-family: var(--font-jp);
  font-size: 0.32em;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.2em;
  margin-top: 16px;
}
.home-hero__subtitle {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--text-muted);
  max-width: 56ch;
  margin: 0 auto 36px;
  font-weight: 300;
}
.home-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 2px;
  transition: all 200ms var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
}
.btn--primary {
  background: var(--vermilion);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--vermilion-soft);
  transform: translateY(-1px);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(221, 79, 30, 0.35);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(245, 242, 236, 0.3);
}
.btn--ghost:hover {
  border-color: var(--white);
  color: var(--white);
}
.btn__arrow {
  display: inline-block;
  transition: transform 200ms var(--ease);
}
.btn:hover .btn__arrow { transform: translateX(3px); }

.home-hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}
.home-hero__scroll::after {
  content: "";
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--vermilion) 0%, transparent 100%);
  animation: scroll-pulse 2.2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* === Section base === */
.home-section {
  padding-block: clamp(60px, 8vw, 120px);
}
.home-section--alt { background: var(--navy-deep); }
.home-section__head {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 72px);
  max-width: 720px;
  margin-inline: auto;
}
.home-section__eyebrow {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--vermilion-soft);
  font-weight: 500;
  display: block;
  margin-bottom: 16px;
}
.home-section__title {
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-weight: 700;
  margin-bottom: 20px;
}
.home-section__lead {
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--text-muted);
  font-weight: 300;
}

/* === Sobre === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 72px; }
}
.about-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.7;
  max-width: 56ch;
}
.about-content p:last-child { margin-bottom: 0; }
.about-content p strong { color: var(--white); font-weight: 500; }
.about-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-photo::after {
  content: "";
  position: absolute;
  inset: -1px;
  border: 1px solid var(--vermilion);
  border-radius: 4px;
  transform: translate(16px, 16px);
  pointer-events: none;
  opacity: 0.6;
}

/* === Destaques (cards) === */
.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 700px) {
  .features { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .features { grid-template-columns: repeat(4, 1fr); }
}
.feature {
  background: var(--navy);
  border: 1px solid var(--divider);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 250ms var(--ease), border-color 250ms var(--ease);
}
.feature:hover {
  transform: translateY(-4px);
  border-color: rgba(221, 79, 30, 0.4);
}
.feature__photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.feature__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}
.feature:hover .feature__photo img { transform: scale(1.05); }
.feature__body {
  padding: 24px;
}
.feature__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.feature__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* === Galeria do cardápio === */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
@media (min-width: 700px) {
  .gallery { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}
@media (min-width: 1024px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
    gap: 12px;
  }
  .gallery__item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .gallery__item:nth-child(6) { grid-column: span 2; }
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 1 / 1;
  background: var(--navy-deep);
}
@media (min-width: 1024px) {
  .gallery__item { aspect-ratio: auto; }
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease);
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,39,74,0) 50%, rgba(8,39,74,0.7) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 200ms var(--ease);
}
.gallery__item:hover::after { opacity: 1; }

.home-cta-row {
  margin-top: 56px;
  text-align: center;
}

/* === Contato === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 760px) {
  .contact-grid { grid-template-columns: repeat(3, 1fr); }
}
.contact-card {
  text-align: center;
  padding: 32px 24px;
  border: 1px solid var(--divider);
  border-radius: 4px;
  background: var(--navy);
}
.contact-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(221, 79, 30, 0.12);
  color: var(--vermilion-soft);
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
}
.contact-card__icon svg { width: 22px; height: 22px; }
.contact-card__label {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--vermilion-soft);
  font-weight: 600;
  margin-bottom: 10px;
}
.contact-card__value {
  font-size: 16px;
  color: var(--text);
  line-height: 1.5;
  font-weight: 400;
}
.contact-card__value a { transition: color 200ms var(--ease); }
.contact-card__value a:hover { color: var(--vermilion-soft); }

.social-row {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  gap: 16px;
}
.social-row a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--divider);
  display: grid;
  place-items: center;
  transition: all 200ms var(--ease);
}
.social-row a:hover {
  border-color: var(--vermilion);
  background: var(--vermilion);
  color: var(--white);
  transform: translateY(-2px);
}
.social-row svg { width: 20px; height: 20px; }

/* === Footer === */
.site-footer {
  background: var(--navy-darker);
  border-top: 1px solid var(--divider);
  padding-block: 48px 32px;
  font-size: 14px;
}
.site-footer__grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .site-footer__grid { grid-template-columns: auto 1fr auto; align-items: start; }
}
.site-footer__col h3 {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vermilion-soft);
  margin-bottom: 12px;
}
.site-footer__col p { color: var(--text-muted); }
.site-footer__bottom {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--divider);
  color: var(--text-dim);
  font-size: 12px;
  text-align: center;
}

/* Reveal animation on scroll */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
