:root {
  --bg: #050505;
  --panel: #0d0d0d;
  --text: #ffffff;
  --muted: #b9b4ae;
  --line: rgba(255, 255, 255, 0.16);
  --warm: #c77a35;
  --warm-soft: #f0b36f;
  --photo-filter: sepia(0.2) saturate(0.9) contrast(1.1) brightness(0.92);
  --font-body: "Inter", Arial, sans-serif;
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-logo: "UnifrakturCook", Georgia, serif;
  --font-tech: "Orbitron", "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #040404;
}

body {
  position: relative;
  margin: 0;
  background:
    radial-gradient(circle at 18% 10%, rgba(126, 53, 37, 0.28), transparent 32rem),
    radial-gradient(circle at 84% 48%, rgba(199, 122, 53, 0.14), transparent 28rem),
    #040404;
  color: var(--text);
  font-family: var(--font-body);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(24, 14, 10, 0.72), rgba(5, 5, 5, 0.92)),
    radial-gradient(circle at 18% 22%, rgba(104, 44, 35, 0.24), transparent 28rem),
    radial-gradient(circle at 76% 58%, rgba(188, 96, 47, 0.12), transparent 30rem),
    radial-gradient(circle at 50% 18%, transparent 0 24%, rgba(0, 0, 0, 0.52) 80%);
  content: "";
  opacity: 1;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 28%, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 4px),
    radial-gradient(circle at 72% 64%, rgba(0, 0, 0, 0.3) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.024) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.1) 0 1px, transparent 1px 7px);
  content: "";
  mix-blend-mode: overlay;
  opacity: 0.46;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0));
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-solid {
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(16px);
}

.brand img {
  width: clamp(138px, 14vw, 190px);
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 32px);
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-tech);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a {
  transition: color 160ms ease;
}

.nav-links a:hover {
  color: var(--text);
}

.hero {
  position: relative;
  display: grid;
  min-height: 98vh;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.55fr);
  align-items: center;
  gap: clamp(26px, 5vw, 76px);
  overflow: hidden;
  padding: 128px clamp(18px, 5vw, 74px) 96px;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 220px;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0), rgba(5, 5, 5, 0.72) 54%, var(--bg));
  content: "";
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.58) 48%, rgba(0, 0, 0, 0.35) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.78)),
    url("assets/processed/IMG-20260603-WA0141-worn.jpg") center / cover;
  transform: scale(1.02);
}

.hero-content,
.poster {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 780px;
  text-align: center;
}

.eyebrow,
.section-kicker,
.poster-date {
  margin: 0 0 16px;
  color: var(--warm-soft);
  font-family: var(--font-tech);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(5.6rem, 18vw, 16rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.78;
  text-transform: uppercase;
}

.hero-slogan {
  margin: 0 0 20px;
  max-width: 100%;
  color: var(--text);
  font-family: var(--font-tech);
  font-size: clamp(2.2rem, 5.2vw, 5.8rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.46);
}

h2 {
  margin-bottom: 22px;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 6.5vw, 6.5rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 670px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  padding: 0 22px;
  font-family: var(--font-tech);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

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

.btn-primary {
  border-color: var(--text);
  background: var(--text);
  color: #050505;
}

.btn-secondary {
  background: rgba(0, 0, 0, 0.2);
  color: var(--text);
}

.btn-icon {
  gap: 10px;
}

.btn-icon svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: currentColor;
}

.poster {
  justify-self: end;
  width: min(350px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.24);
  padding: clamp(18px, 3vw, 26px);
  background:
    linear-gradient(160deg, rgba(199, 122, 53, 0.28), rgba(5, 5, 5, 0.88) 42%),
    rgba(6, 6, 6, 0.78);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
  transform: rotate(-2deg);
}

.poster-photo {
  margin: 14px 0 18px;
  border: 8px solid var(--text);
  background: var(--text);
  transform: rotate(3deg);
}

.poster-photo img {
  aspect-ratio: 4 / 3;
  width: 100%;
  filter: var(--photo-filter);
  object-fit: cover;
}

.poster-title {
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.poster-logo {
  width: 128px;
  margin: 0 auto;
}

.intro,
.reviews-section,
.menu-section,
.night-section,
.social-section,
.location-section {
  padding: clamp(70px, 9vw, 130px) clamp(18px, 5vw, 74px);
}

.intro-grid,
.menu-section,
.night-section,
.location-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
}

.intro p,
.menu-copy p,
.night-copy p,
.location-section p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.menu-btn {
  margin-top: 18px;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.promo-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  background: var(--text);
  color: #050505;
}

.promo-band div {
  min-height: 132px;
  border-right: 1px solid rgba(5, 5, 5, 0.16);
  padding: clamp(22px, 4vw, 38px);
}

.promo-band div:last-child {
  border-right: 0;
}

.promo-band span {
  display: block;
  margin-bottom: 12px;
  color: rgba(5, 5, 5, 0.62);
  font-family: var(--font-tech);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.promo-band strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.92;
  text-transform: uppercase;
}

.feature-strip article {
  min-height: 260px;
  border-right: 1px solid var(--line);
  padding: clamp(24px, 4vw, 42px);
  background: rgba(13, 13, 13, 0.82);
}

.feature-strip article:last-child {
  border-right: 0;
}

.feature-strip span {
  display: block;
  margin-bottom: 48px;
  color: var(--warm-soft);
  font-family: var(--font-tech);
  font-size: 0.8rem;
  font-weight: 900;
}

.feature-strip p {
  color: var(--muted);
  line-height: 1.6;
}

.reviews-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(280px, 1fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: start;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.78)),
    url("fotos/IMG-20260603-WA0180.jpg") center / cover;
}

.reviews-heading p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.reviews-grid article {
  min-height: 210px;
  border: 1px solid var(--line);
  padding: clamp(22px, 3vw, 30px);
  background: rgba(8, 8, 8, 0.7);
  backdrop-filter: blur(8px);
}

.reviews-grid p {
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  font-weight: 800;
  line-height: 1.35;
}

.review-stars {
  margin-bottom: 18px;
  color: var(--warm-soft);
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  line-height: 1;
}

.reviews-grid span {
  color: var(--warm-soft);
  font-family: var(--font-tech);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-section {
  background: rgba(9, 9, 9, 0.76);
}

.menu-gallery {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 14px;
}

.menu-gallery img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  filter: var(--photo-filter);
  object-fit: cover;
}

.menu-gallery img:first-child {
  grid-row: span 2;
}

.night-section {
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 0.75fr);
}

.night-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  filter: var(--photo-filter);
  object-fit: cover;
}

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

.gallery-section img {
  width: 100%;
  aspect-ratio: 1 / 1.1;
  filter: var(--photo-filter);
  object-fit: cover;
}

.gallery-section img.is-pretreated {
  filter: none;
}

.social-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  background: rgba(8, 8, 8, 0.76);
}

.social-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.social-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.social-preview {
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(199, 122, 53, 0.22), rgba(5, 5, 5, 0.9) 48%),
    var(--panel);
  color: var(--text);
  overflow: hidden;
}

.embed-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: clamp(18px, 3vw, 28px);
}

.embed-header span {
  color: var(--warm-soft);
  font-family: var(--font-tech);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.embed-header strong {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
  text-align: right;
  text-transform: uppercase;
}

.instagram-frame {
  display: flex;
  justify-content: center;
  min-height: 620px;
  padding: clamp(14px, 2.4vw, 24px);
}

.arata-instagram-embed,
.instagram-frame iframe {
  max-width: 540px !important;
  min-width: 0 !important;
  width: 100% !important;
  margin: 0 auto !important;
}

.arata-instagram-embed {
  border-radius: 0 !important;
}

.location-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.68)),
    url("fotos/IMG-20260603-WA0151.jpg") center / cover;
}

.location-section .btn {
  justify-self: end;
  min-width: 180px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 32px clamp(18px, 5vw, 74px);
  color: rgba(255, 255, 255, 0.62);
}

.site-footer img {
  width: 92px;
}

.site-footer p {
  margin: 0;
  font-family: var(--font-tech);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-tech);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.powered-by {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.44);
  font-family: var(--font-tech);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: right;
  text-transform: uppercase;
}

.whatsapp-float {
  position: fixed;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 40;
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.44);
  background: rgba(5, 5, 5, 0.86);
  color: var(--text);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(12px);
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.whatsapp-float:hover {
  border-color: var(--text);
  background: var(--text);
  color: #050505;
  transform: translateY(-3px);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.social-icon-link {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text);
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.social-icon-link:hover {
  background: var(--text);
  color: #050505;
  transform: translateY(-2px);
}

.social-icon-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

@media (max-width: 920px) {
  .site-header {
    position: absolute;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .intro-grid,
  .reviews-section,
  .menu-section,
  .night-section,
  .social-section,
  .location-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 96vh;
    padding-top: 114px;
    padding-bottom: 76px;
  }

  .poster {
    justify-self: start;
    transform: none;
  }

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

  .promo-band {
    grid-template-columns: 1fr;
  }

  .promo-band div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(5, 5, 5, 0.16);
  }

  .feature-strip article:nth-child(2) {
    border-right: 0;
  }

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

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

  .location-section .btn {
    justify-self: start;
  }

  .embed-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .embed-header strong {
    text-align: left;
  }
}

@media (max-width: 580px) {
  .site-header {
    padding: 16px 20px;
  }

  .brand img {
    width: 118px;
  }

  .hero-slogan {
    font-size: 1.62rem;
    line-height: 1;
  }

  .hero {
    gap: 22px;
    padding-top: 92px;
    padding-bottom: 72px;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.88)),
      url("assets/processed/IMG-20260603-WA0141-worn.jpg") center / cover;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  h1 {
    font-size: 4.8rem;
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.48;
  }

  .btn {
    min-height: 44px;
  }

  .poster {
    padding: 14px;
  }

  .poster-photo {
    border-width: 6px;
    margin-bottom: 14px;
  }

  .poster-photo img {
    aspect-ratio: 16 / 9;
  }

  .poster-title {
    margin-bottom: 12px;
    font-size: 1.8rem;
  }

  .poster-logo {
    width: 104px;
  }

  .feature-strip {
    grid-template-columns: 1fr;
  }

  .feature-strip article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-strip span {
    margin-bottom: 24px;
  }

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

  .menu-gallery img:first-child {
    grid-row: auto;
  }

  .gallery-section {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .social-actions,
  .social-actions .btn {
    width: 100%;
  }

  .instagram-frame {
    min-height: 560px;
    padding: 10px;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .powered-by {
    text-align: left;
  }

  .whatsapp-float {
    width: 54px;
    height: 54px;
  }
}
