:root {
  --ink: #171412;
  --paper: #fffaf2;
  --paper-strong: #ffffff;
  --charcoal: #201c1a;
  --red: #9b2d25;
  --red-dark: #6f1d1b;
  --green: #2f6b55;
  --gold: #d6a94a;
  --line: rgba(23, 20, 18, 0.14);
  --shadow: 0 24px 70px rgba(18, 15, 12, 0.18);
  --radius: 8px;
  --content: min(1160px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #fffaf2 0%, #f7efe4 44%, #fffaf2 100%);
  color: var(--ink);
  font-family: Inter, Avenir, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-150%);
  background: var(--paper-strong);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: var(--radius);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 18px max(20px, calc((100vw - 1160px) / 2));
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(23, 20, 18, 0.94);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: auto;
  height: 54px;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.42));
  transition: height 180ms ease;
}

.site-header.is-scrolled .brand-logo,
.site-header.is-open .brand-logo {
  height: 46px;
}

.brand-copy strong,
.brand-copy small {
  display: block;
}

.brand-copy strong {
  color: #fff;
  font-size: 1rem;
  line-height: 1.1;
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:not(.nav-cta) {
  color: rgba(255, 255, 255, 0.82);
}

.site-nav a:hover {
  color: #fff;
}

.nav-cta {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: var(--radius);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  background: rgba(23, 20, 18, 0.34);
}

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

.hero {
  position: relative;
  min-height: 74svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--charcoal);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/hero-argentino-tango.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 10, 9, 0.88) 0%, rgba(12, 10, 9, 0.66) 42%, rgba(12, 10, 9, 0.16) 100%),
    linear-gradient(0deg, rgba(12, 10, 9, 0.62) 0%, rgba(12, 10, 9, 0.02) 50%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: var(--content);
  margin: 0 auto;
  padding: 104px 0 34px;
}

.hero-logo {
  display: block;
  width: min(304px, 54vw);
  height: auto;
  margin: 0 0 14px -6px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.58));
}

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

.hero-copy {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  background: var(--red);
  color: #fff;
}

.button-primary:hover {
  background: var(--red-dark);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.button-dark {
  background: var(--charcoal);
  color: #fff;
}

.status-strip {
  background: #201c1a;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.status-strip-inner {
  width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 68px;
}

.status-strip p {
  margin: 0;
}

.status-strip a {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.status-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

.section {
  width: var(--content);
  margin: 0 auto;
  padding: 86px 0;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.3fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}

.section-copy h2,
.menu-copy h2,
.feature-content h2,
.reservation-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-copy p:not(.eyebrow),
.menu-story p,
.reservation-copy p {
  max-width: 620px;
  color: rgba(23, 20, 18, 0.72);
  font-size: 1.05rem;
}

.intro-story {
  max-width: 720px;
  padding: 8px 0 0 clamp(20px, 4vw, 54px);
  border-left: 2px solid rgba(155, 45, 37, 0.28);
}

.intro-story p {
  margin: 0;
  color: rgba(23, 20, 18, 0.72);
  font-size: 1.05rem;
}

.intro-story p + p {
  margin-top: 18px;
}

.intro-story .intro-lead {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.8vw, 2.4rem);
  line-height: 1.18;
}

.intro-specials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.intro-specials span {
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.intro-specials span + span::before {
  content: "/";
  margin-right: 18px;
  color: rgba(23, 20, 18, 0.26);
}

.offer-list article,
.contact-panel {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.offer-list h3,
.contact-panel h3 {
  margin: 18px 0 8px;
  font-size: 1.2rem;
}

.offer-list p {
  margin: 0;
  color: rgba(23, 20, 18, 0.68);
}

.menu-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
  margin-bottom: 44px;
}

.menu-story {
  padding: 8px 0 0 clamp(20px, 4vw, 54px);
  border-left: 2px solid rgba(155, 45, 37, 0.28);
}

.menu-story p {
  margin: 0;
}

.menu-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.menu-group {
  padding: 32px 30px 34px 0;
}

.menu-group + .menu-group {
  padding-left: 30px;
  border-left: 1px solid var(--line);
}

.menu-kicker {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-group h3 {
  margin: 0 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.12;
}

.menu-group ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-group li {
  display: grid;
  gap: 4px;
  padding-top: 16px;
  border-top: 1px solid rgba(23, 20, 18, 0.12);
}

.menu-group strong {
  font-size: 1rem;
}

.menu-group span {
  color: rgba(23, 20, 18, 0.68);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  min-height: 560px;
  background: var(--charcoal);
  color: #fff;
}

.feature-image {
  min-height: 420px;
  background-image:
    linear-gradient(0deg, rgba(32, 28, 26, 0.18), rgba(32, 28, 26, 0.18)),
    url("assets/hero-argentino-tango.png");
  background-size: cover;
  background-position: center right;
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
}

.feature-content {
  width: min(620px, calc(100vw - 40px));
  padding: clamp(48px, 7vw, 96px) 0 clamp(48px, 7vw, 96px) clamp(28px, 6vw, 80px);
}

.feature-content h2 {
  color: #fff;
}

.offer-list {
  display: grid;
  gap: 0;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.offer-list article {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 6px 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  box-shadow: none;
}

.offer-list span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-weight: 950;
}

.offer-list h3 {
  margin: 0;
  color: #fff;
}

.offer-list p {
  color: rgba(255, 255, 255, 0.74);
}

.reservation {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(28px, 7vw, 90px);
  align-items: center;
}

.contact-panel {
  padding: 30px 0 30px 30px;
  border-left: 3px solid var(--gold);
}

.contact-panel h3 {
  margin-top: 0;
}

address {
  font-style: normal;
  color: rgba(23, 20, 18, 0.72);
}

.full {
  width: 100%;
  background: var(--green);
  border-color: transparent;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto auto;
  align-items: center;
  gap: 36px;
  padding: 34px max(20px, calc((100vw - 1160px) / 2));
  background: #14110f;
  color: #fff;
}

.site-footer p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.66);
}

.footer-logo {
  display: block;
  width: 126px;
  height: auto;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.4));
}

.footer-hours {
  min-width: 210px;
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-hours strong {
  display: block;
  margin-bottom: 6px;
}

.footer-hours p {
  margin: 2px 0;
}

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

.site-footer a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

@media (max-width: 860px) {
  :root {
    --content: min(100vw - 44px, 1160px);
  }

  .site-header {
    padding: 12px 22px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 22px;
    right: 22px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: rgba(23, 20, 18, 0.98);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 12px;
  }

  .nav-cta {
    margin-top: 6px;
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(12, 10, 9, 0.9) 0%, rgba(12, 10, 9, 0.56) 100%),
      linear-gradient(0deg, rgba(12, 10, 9, 0.72) 0%, rgba(12, 10, 9, 0.06) 58%);
  }

  .hero-inner {
    padding: 96px 0 30px;
  }

  .hero-logo {
    width: min(252px, 70vw);
    margin-left: -6px;
  }

  .status-strip-inner,
  .section-grid,
  .menu-layout,
  .menu-groups,
  .feature-band,
  .reservation {
    grid-template-columns: 1fr;
  }

  .status-strip-inner {
    align-items: start;
    gap: 0;
    padding: 18px 0;
  }

  .status-strip p,
  .status-actions {
    display: block;
    padding: 10px 0;
  }

  .status-strip p + p,
  .status-actions {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .status-actions {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
  }

  .status-actions a {
    padding: 0;
    border-top: 0;
  }

  .status-strip p {
    color: rgba(255, 255, 255, 0.78);
  }

  .status-strip p strong {
    display: block;
    color: #fff;
    font-size: 1.02rem;
  }

  .status-strip a {
    color: #f0d18a;
  }

  .section {
    padding: 62px 0;
  }

  .intro-story {
    padding: 22px 0 0;
    border-left: 0;
    border-top: 2px solid rgba(155, 45, 37, 0.28);
  }

  .menu-layout {
    margin-bottom: 34px;
  }

  .menu-story {
    padding: 22px 0 0;
    border-left: 0;
    border-top: 2px solid rgba(155, 45, 37, 0.28);
  }

  .feature-content {
    width: var(--content);
    margin: 0 auto;
    padding: 52px 0;
  }

  .feature-image {
    min-height: 320px;
    clip-path: none;
  }

  .menu-group {
    padding: 24px 0;
  }

  .menu-group + .menu-group {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .contact-panel {
    padding: 26px 0 0;
    border-left: 0;
    border-top: 3px solid var(--gold);
  }

  .reservation {
    align-items: stretch;
  }

  .site-footer {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .footer-hours {
    padding: 18px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }
}

@media (max-width: 520px) {
  :root {
    --content: min(100vw - 48px, 1160px);
  }

  .brand-logo {
    height: 44px;
  }

  .site-header.is-scrolled .brand-logo,
  .site-header.is-open .brand-logo {
    height: 40px;
  }

  .brand-copy strong {
    max-width: 132px;
    font-size: 0.9rem;
  }

  .brand-copy small {
    display: none;
  }

  .hero-logo {
    width: min(236px, 74vw);
  }

  .intro-specials {
    gap: 8px 16px;
  }

  .intro-specials span + span::before {
    content: "";
    margin-right: 0;
  }

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

  .button {
    width: 100%;
  }

  .offer-list article {
    grid-template-columns: 1fr;
  }

  .offer-list span {
    width: 64px;
    height: 64px;
  }
}
