:root {
  --ink: #17120f;
  --charcoal: #211b17;
  --charcoal-soft: #302821;
  --cream: #fff8ec;
  --paper: #f7efe2;
  --muted: #766b60;
  --orange: #ee7931;
  --orange-dark: #bd4c1f;
  --green: #168447;
  --line: rgba(33, 27, 23, 0.14);
  --shadow: 0 24px 70px rgba(18, 13, 10, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::selection {
  color: #fff;
  background: var(--orange-dark);
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 54px);
  color: #fff;
  background: linear-gradient(180deg, rgba(14, 10, 8, 0.84), rgba(14, 10, 8, 0.34) 72%, transparent);
}

.site-header.compact,
.menu-page .site-header {
  position: sticky;
  background: rgba(23, 18, 15, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand img {
  width: 82px;
  height: auto;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav a {
  opacity: 0.82;
  transition: color 160ms ease, opacity 160ms ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--orange);
  opacity: 1;
}

.header-call {
  display: inline-grid;
  gap: 2px;
  padding: 10px 15px;
  min-width: 146px;
  color: #fff;
  background: rgba(238, 121, 49, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.header-call span {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-call strong {
  font-size: 0.92rem;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 9, 8, 0.88), rgba(12, 9, 8, 0.44) 48%, rgba(12, 9, 8, 0.22)),
    linear-gradient(0deg, rgba(12, 9, 8, 0.78), transparent 45%);
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 36px));
  margin: 0 0 clamp(42px, 9vw, 96px) clamp(18px, 6vw, 86px);
  padding-top: 150px;
}

.hero-logo {
  width: 124px;
  margin-bottom: 20px;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.38));
}

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

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}

.hero h1 {
  margin-bottom: 16px;
  font-size: clamp(3.6rem, 8vw, 7.8rem);
  line-height: 0.88;
}

.hero-copy {
  max-width: 580px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.04rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions,
.signature-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

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

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

.btn-primary {
  color: #fff;
  background: var(--orange);
  border-color: rgba(255, 255, 255, 0.16);
}

.btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(10px);
}

.btn-light {
  color: var(--ink);
  background: #fff;
}

.btn-outline {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.quick-info {
  width: min(1120px, calc(100% - 32px));
  margin: -34px auto 0;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.quick-info article {
  padding: 22px;
  border-right: 1px solid var(--line);
}

.quick-info article:last-child {
  border-right: 0;
}

.quick-info span,
.menu-aside .eyebrow {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quick-info a,
.quick-info strong {
  display: block;
  margin-top: 8px;
  font-size: 1.08rem;
  font-weight: 800;
}

.intro-section,
.location-section,
.menu-layout {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.intro-section {
  padding: clamp(70px, 10vw, 120px) 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 30px;
}

.section-heading h2,
.menu-hero h1 {
  margin-bottom: 14px;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1;
}

.section-heading p:not(.eyebrow),
.menu-hero p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  padding: 28px;
  min-height: 250px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-icon {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 800;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

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

.signature-band {
  justify-content: space-between;
  gap: 28px;
  padding: clamp(42px, 7vw, 76px) clamp(18px, 6vw, 86px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(33, 27, 23, 0.96), rgba(33, 27, 23, 0.88)),
    url("assets/hero-los-tilos.jpg") center/cover;
}

.signature-band div {
  max-width: 760px;
}

.signature-band h2 {
  margin-bottom: 12px;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.95;
}

.signature-band p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.location-section {
  padding: clamp(70px, 10vw, 120px) 0;
}

.map-shell {
  height: min(520px, 70vh);
  overflow: hidden;
  background: #ddd;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.map-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 32px clamp(18px, 4vw, 54px);
  color: rgba(255, 255, 255, 0.76);
  background: var(--charcoal);
}

.site-footer img {
  width: 74px;
  margin-bottom: 12px;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 14px 20px;
}

.footer-links a {
  color: #fff;
  font-weight: 800;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.social-link span {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--charcoal);
  background: var(--orange);
  border-radius: 50%;
  font-weight: 900;
}

.menu-page {
  background: var(--paper);
}

.menu-hero {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(52px, 9vw, 96px) 0 34px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.menu-hero div {
  max-width: 740px;
}

.menu-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.menu-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 24px;
  padding-bottom: 90px;
}

.menu-aside {
  position: sticky;
  top: 116px;
  align-self: start;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.menu-tabs {
  display: grid;
  gap: 8px;
}

.menu-tabs a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 12px;
  color: var(--muted);
  background: var(--cream);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 800;
}

.menu-tabs a:hover {
  color: var(--ink);
}

.menu-accordion {
  display: grid;
  gap: 14px;
}

.menu-section {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(33, 27, 23, 0.07);
}

.menu-section summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 20px 22px;
  cursor: pointer;
  list-style: none;
}

.menu-section summary::-webkit-details-marker {
  display: none;
}

.menu-section summary h2 {
  margin-bottom: 4px;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.menu-section summary p {
  margin: 0;
  color: var(--muted);
}

.menu-count {
  display: inline-grid;
  min-width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: var(--charcoal);
  border-radius: 50%;
  font-weight: 800;
}

.menu-items {
  display: grid;
  gap: 1px;
  padding: 0 22px 22px;
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.menu-item h3 {
  margin-bottom: 5px;
  font-size: 1rem;
  text-transform: uppercase;
}

.menu-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.price {
  white-space: nowrap;
  color: var(--orange-dark);
  font-weight: 900;
}

.pdf-viewer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 90px;
  min-height: 76vh;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.pdf-viewer object,
.pdf-viewer iframe {
  display: block;
  width: 100%;
  height: min(980px, 78vh);
  min-height: 620px;
  border: 0;
}

.pdf-viewer p {
  padding: 28px;
  color: var(--muted);
  line-height: 1.6;
}

.pdf-viewer a {
  color: var(--orange-dark);
  font-weight: 800;
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: auto 1fr;
    gap: 12px;
    padding: 12px 16px;
  }

  .brand img {
    width: 64px;
  }

  .main-nav {
    justify-self: end;
    gap: 14px;
    font-size: 0.78rem;
  }

  .header-call {
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
    text-align: center;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(12, 9, 8, 0.38), rgba(12, 9, 8, 0.86)),
      linear-gradient(90deg, rgba(12, 9, 8, 0.62), rgba(12, 9, 8, 0.18));
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 auto 40px;
    padding-top: 170px;
  }

  .hero-logo {
    width: 104px;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 16vw, 5.2rem);
  }

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

  .quick-info,
  .feature-grid,
  .menu-layout {
    grid-template-columns: 1fr;
  }

  .quick-info article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-info article:last-child {
    border-bottom: 0;
  }

  .feature-card {
    min-height: auto;
  }

  .signature-band,
  .menu-hero,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .menu-actions {
    justify-content: stretch;
  }

  .site-footer,
  .footer-links {
    justify-content: flex-start;
  }

  .menu-aside {
    position: static;
  }

  .pdf-viewer {
    width: calc(100% - 18px);
    margin-bottom: 56px;
  }

  .pdf-viewer object,
  .pdf-viewer iframe {
    height: 72vh;
    min-height: 560px;
  }
}

@media (max-width: 520px) {
  .main-nav {
    grid-column: 1 / -1;
    justify-content: space-between;
    width: 100%;
    order: 3;
  }

  .site-header {
    grid-template-columns: auto auto;
  }

  .header-call {
    grid-column: auto;
    width: auto;
    min-width: 154px;
    padding: 9px 12px;
  }

  .header-call strong {
    font-size: 0.86rem;
  }

  .hero-content {
    padding-top: 142px;
  }

  .btn {
    width: 100%;
  }

  .menu-section summary,
  .menu-item {
    grid-template-columns: 1fr;
  }

  .menu-count {
    display: none;
  }

  .price {
    font-size: 1.05rem;
  }
}
