* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-cream);
  font-family: var(--font-body);
  line-height: 1.65;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}
.section { padding: 96px 0; }
.section-muted { background: var(--color-beige); }
.eyebrow {
  margin: 0 0 14px;
  color: var(--color-terracotta);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0;
  font-family: var(--font-title);
  line-height: 1.08;
  letter-spacing: 0;
}
h1 { font-size: clamp(3rem, 8vw, 6.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3.6rem); }
h3 { font-size: 1.45rem; }
p { margin: 0 0 18px; }
.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--color-white);
}
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 30, 26, 0.82), rgba(17, 30, 26, 0.48) 46%, rgba(17, 30, 26, 0.12)),
    linear-gradient(0deg, rgba(17, 30, 26, 0.42), transparent 40%);
}
.hero-content {
  position: relative;
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
  padding-top: var(--header-height);
}
.hero-copy {
  max-width: 660px;
  margin: 22px 0 34px;
  font-size: clamp(1.08rem, 2vw, 1.45rem);
}
.hero-actions, .contact-actions, .stacked-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 22px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--color-terracotta); color: var(--color-white); }
.btn-secondary { background: var(--color-green); color: var(--color-white); }
.btn-ghost { border-color: rgba(255, 250, 244, .7); color: var(--color-white); }
.btn-ghost-dark { border-color: var(--color-green); color: var(--color-green); }
.text-link {
  color: var(--color-green);
  font-weight: 800;
  border-bottom: 2px solid var(--color-terracotta);
}
.two-column {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 80px;
  align-items: start;
}
.lead-copy {
  color: var(--color-muted);
  font-size: 1.05rem;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 40px;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card, .info-card, .contact-panel {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.feature-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.feature-card div, .info-card, .contact-panel { padding: 26px; }
.info-card h2 {
  font-size: clamp(1.55rem, 2vw, 2rem);
  overflow-wrap: anywhere;
}
.masonry-preview, .gallery-grid {
  columns: 3 260px;
  column-gap: 22px;
}
.masonry-preview img, .gallery-item {
  width: 100%;
  margin: 0 0 22px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  break-inside: avoid;
}
.masonry-preview img:nth-child(2) { margin-top: 48px; }
.gallery-section + .gallery-section { padding-top: 88px; }
.gallery-section-heading {
  display: grid;
  gap: 8px;
  max-width: 820px;
  margin-bottom: 34px;
}
.arroz-band {
  background: var(--color-terracotta);
  color: var(--color-white);
}
.arroz-band .eyebrow { color: rgba(230, 214, 200, 0.82); }
.arroz-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.arroz-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}
.arroz-copy {
  max-width: 540px;
  margin: 20px 0 32px;
  font-size: 1.05rem;
  color: rgba(245, 243, 238, 0.88);
  line-height: 1.7;
}
.btn-arroz {
  background: var(--color-white);
  color: var(--color-terracotta);
  font-weight: 700;
  border-radius: var(--radius);
}
.btn-arroz:hover { background: var(--color-beige); }
.events-band {
  color: var(--color-white);
  background: var(--color-green);
}
.events-band .eyebrow { color: var(--color-beige); }
.contact-strip { background: var(--color-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}
.page-hero {
  padding: calc(var(--header-height) + 86px) 0 82px;
  background: var(--color-green);
  color: var(--color-white);
}
.compact-hero p { max-width: 760px; color: rgba(255, 250, 244, .82); }
.split-hero { padding: calc(var(--header-height) + 72px) 0 88px; }
.split-hero-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 58px;
  align-items: center;
}
.split-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.event-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.menu-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 42px;
}
.menu-tabs {
  position: sticky;
  top: calc(var(--header-height) + 20px);
  align-self: start;
  display: grid;
  gap: 8px;
}
.tab-button {
  min-height: 46px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-white);
  color: var(--color-green);
  cursor: pointer;
  font-weight: 700;
}
.tab-button.is-active { background: var(--color-green); color: var(--color-white); }
.menu-category { display: none; }
.menu-category.is-active { display: block; }
.menu-image {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 22px 0;
}
.menu-intro {
  color: var(--color-muted);
  font-size: 0.96rem;
  margin: 10px 0 0;
  border-left: 3px solid var(--color-terracotta);
  padding-left: 14px;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--color-line);
}
.menu-item p { color: var(--color-muted); }
.menu-item span { display: block; font-size: .9rem; color: var(--color-terracotta); }
.menu-subsection-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--color-white);
  background: var(--color-green);
  padding: 8px 14px;
  border-radius: var(--radius);
  margin: 32px 0 4px;
}
.gallery-item {
  display: block;
  padding: 0;
  border: 0;
  cursor: zoom-in;
  background: transparent;
}
.gallery-item img {
  width: 100%;
  transition: transform .32s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(10, 16, 13, .86);
}
.lightbox img {
  max-height: 86vh;
  border-radius: var(--radius);
}
.lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  opacity: .75;
  transition: opacity .2s;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, .15);
  border: none;
  color: #fff;
  font-size: 2.8rem;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .2s;
  line-height: 1;
}
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255, 255, 255, .3); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.contact-page-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 28px;
}
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-line);
}
.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}
.map-link {
  display: block;
  padding: 13px 20px;
  text-align: center;
  background: var(--color-beige);
  color: var(--color-green);
  font-size: 0.88rem;
  font-weight: 700;
}
.legal-page { padding: calc(var(--header-height) + 48px) 0 72px; }
.legal-content {
  max-width: 860px;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 42px;
}
.legal-content h2 { margin-top: 34px; font-size: 1.75rem; }
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
