:root {
  --ink: #201c19;
  --paper: #f7f1e7;
  --cream: #fffaf2;
  --ember: #c84a21;
  --ember-dark: #8f2c12;
  --gold: #e8a647;
  --green: #284d3b;
  --muted: #776b61;
  --line: rgba(63, 43, 28, 0.16);
  --shadow: 0 24px 70px rgba(37, 24, 14, 0.14);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--cream);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 10px;
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(27, 22, 19, 0.94);
  color: #fff;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap,
.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand img {
  width: 42px;
  height: 42px;
}

.brand small {
  display: block;
  color: var(--gold);
  font-size: 0.67rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 13px;
  color: #eadfd5;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 650;
  border-radius: 999px;
  transition: 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.site-nav .nav-cta {
  margin-left: 5px;
  background: var(--ember);
  color: #fff;
}

.site-nav .nav-cta:hover {
  background: #e15a2e;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: transparent;
  color: #fff;
  font-size: 1.35rem;
  cursor: pointer;
}

.hero {
  min-height: 680px;
  display: grid;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(21, 16, 13, 0.95) 0%, rgba(21, 16, 13, 0.78) 38%, rgba(21, 16, 13, 0.13) 76%),
    url("../images/hero-churrasco.webp") center/cover no-repeat;
}

.hero-content {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  padding: 92px 0 110px;
}

.hero-copy {
  max-width: 640px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

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

h1,
h2,
h3 {
  line-height: 1.08;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(3.15rem, 7.3vw, 6.6rem);
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero-copy > p {
  max-width: 580px;
  color: #e9ddd2;
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 750;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

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

.button-primary:hover {
  background: #e05a2d;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

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

.facts {
  position: relative;
  z-index: 2;
  margin-top: -52px;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: var(--shadow);
}

.fact {
  padding: 28px 30px;
  border-right: 1px solid var(--line);
}

.fact:last-child {
  border-right: 0;
}

.fact strong {
  display: block;
  margin-bottom: 3px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.fact span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 105px 0;
}

.section-tight {
  padding: 76px 0;
}

.section-dark {
  background: var(--ink);
  color: #fff;
}

.section-green {
  background: var(--green);
  color: #fff;
}

.section-head {
  max-width: 750px;
  margin-bottom: 42px;
}

.section-head h2,
.split-copy h2,
.page-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(2.3rem, 5vw, 4.35rem);
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.section-head > p,
.split-copy > p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-dark .section-head > p,
.section-green .section-head > p,
.section-dark .split-copy > p,
.section-green .split-copy > p {
  color: rgba(255, 255, 255, 0.72);
}

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

.card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: 0 18px 50px rgba(37, 24, 14, 0.08);
}

.card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.card:hover .card-media img {
  transform: scale(1.035);
}

.card-body {
  padding: 26px;
}

.card-body h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.card-body p {
  margin-bottom: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 68px;
  align-items: center;
}

.split-media {
  position: relative;
}

.split-media img {
  width: 100%;
  min-height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-list {
  display: grid;
  gap: 16px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 34px;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ember);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
}

.quote {
  padding: 36px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.quote p {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  line-height: 1.35;
}

.quote span {
  color: rgba(255, 255, 255, 0.68);
}

.page-hero {
  position: relative;
  min-height: 390px;
  display: grid;
  align-items: end;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(24, 18, 14, 0.93), rgba(24, 18, 14, 0.48)),
    url("../images/hero-churrasco.webp") center 46%/cover no-repeat;
}

.page-hero .container {
  padding: 105px 0 64px;
}

.page-hero p {
  max-width: 690px;
  margin-bottom: 0;
  color: #ebdfd5;
  font-size: 1.08rem;
}

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

.menu-block {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--cream);
}

.menu-block h2 {
  margin-bottom: 20px;
  font-size: 1.65rem;
}

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

.menu-list li {
  padding-bottom: 15px;
  border-bottom: 1px dashed var(--line);
}

.menu-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.menu-list strong {
  display: block;
  margin-bottom: 3px;
}

.menu-list span {
  color: var(--muted);
  font-size: 0.94rem;
}

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

.gallery-item {
  grid-column: span 5;
  min-height: 340px;
  overflow: hidden;
  border-radius: 22px;
}

.gallery-item:nth-child(3n + 1) {
  grid-column: span 7;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-card {
  padding: 34px;
  border-radius: var(--radius);
  background: var(--cream);
  border: 1px solid var(--line);
}

.contact-card h2 {
  margin-bottom: 22px;
  font-size: 2rem;
}

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

.contact-list strong {
  display: block;
  color: var(--ember-dark);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-list a {
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.map-card {
  min-height: 420px;
  display: grid;
  place-items: center;
  padding: 48px;
  text-align: center;
  border-radius: var(--radius);
  color: #fff;
  background:
    radial-gradient(circle at 30% 20%, rgba(232, 166, 71, 0.32), transparent 34%),
    linear-gradient(145deg, #315c48, #19382b);
}

.map-card h2 {
  margin-bottom: 14px;
  font-size: 2.2rem;
}

.map-card p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.76);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 44px;
  border-radius: var(--radius);
  background: var(--ember);
  color: #fff;
}

.cta-band h2 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.cta-band p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}

.cta-band .button {
  flex: 0 0 auto;
  background: #fff;
  color: var(--ember-dark);
}

.site-footer {
  padding: 64px 0 24px;
  background: #171310;
  color: #e9dfd7;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 50px;
  padding-bottom: 46px;
}

.footer-grid h2,
.footer-grid h3 {
  margin-bottom: 15px;
}

.footer-grid h2 {
  font-size: 1.55rem;
}

.footer-grid h3 {
  font-size: 0.82rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-grid p,
.footer-grid a {
  color: #bdb0a6;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: #8e8279;
  font-size: 0.85rem;
}

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 30px;
  text-align: center;
  color: #fff;
  background:
    linear-gradient(rgba(20, 15, 12, 0.82), rgba(20, 15, 12, 0.92)),
    url("../images/hero-churrasco.webp") center/cover no-repeat fixed;
}

.error-card {
  width: min(650px, 100%);
  padding: 58px 38px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 30px;
  background: rgba(20, 15, 12, 0.74);
  backdrop-filter: blur(12px);
}

.error-code {
  margin-bottom: 2px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5rem, 15vw, 9rem);
  font-weight: 800;
  line-height: 1;
}

.error-card h1 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 6vw, 3.4rem);
}

.error-card p {
  color: #d7ccc3;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .site-nav {
    position: fixed;
    top: 78px;
    right: 0;
    bottom: 0;
    width: min(360px, 88vw);
    padding: 24px;
    display: none;
    align-content: start;
    background: #1b1613;
    box-shadow: -22px 30px 60px rgba(0, 0, 0, 0.35);
  }

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

  .site-nav a {
    padding: 14px 16px;
  }

  .site-nav .nav-cta {
    margin: 10px 0 0;
    text-align: center;
  }

  .hero {
    min-height: 620px;
    background-position: 62% center;
  }

  .hero-content {
    padding: 80px 0 90px;
  }

  .facts-grid,
  .cards,
  .split,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .fact:last-child {
    border-bottom: 0;
  }

  .split {
    gap: 38px;
  }

  .split-media img {
    min-height: 360px;
  }

  .footer-grid {
    gap: 28px;
  }
}

@media (max-width: 680px) {
  .nav-wrap,
  .container,
  .hero-content {
    width: min(100% - 28px, 1180px);
  }

  .brand span {
    font-size: 0.9rem;
  }

  .brand small {
    font-size: 0.58rem;
  }

  .hero {
    min-height: 570px;
    background:
      linear-gradient(90deg, rgba(21, 16, 13, 0.94), rgba(21, 16, 13, 0.51)),
      url("../images/hero-churrasco.webp") 64% center/cover no-repeat;
  }

  h1 {
    font-size: clamp(2.8rem, 15vw, 4.4rem);
  }

  .facts {
    margin-top: -30px;
  }

  .section {
    padding: 78px 0;
  }

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

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

  .gallery-item,
  .gallery-item:nth-child(3n + 1) {
    grid-column: auto;
    min-height: 280px;
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
    padding: 34px 26px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
