:root {
  --paper: #fff;
  --white: #fff;
  --ink: #111;
  --muted: #5a5a5a;
  --line: rgba(17, 17, 17, 0.12);
  --navy: #111;
  --brass: #c4a35a;
  --shadow: 0 24px 60px rgba(17, 17, 17, 0.08);
  --header: 72px;
  --serif: "Fraunces", "Iowan Old Style", Palatino, serif;
  --sans: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.6;
}

img { max-width: 100%; }

a { color: inherit; }

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--navy);
  color: var(--white);
  padding: 0.6rem 0.9rem;
  z-index: 40;
}

.skip:focus { top: 1rem; }

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 30;
  height: var(--header);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 1.5rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}

.header.is-scrolled { border-bottom-color: var(--line); }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  font-family: var(--serif);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.mark {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1rem;
}

.nav {
  display: flex;
  gap: 1.4rem;
  margin-left: auto;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.header-call {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.lang select {
  appearance: none;
  border: 1px solid var(--brass);
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23111' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E") no-repeat right 0.7rem center;
  border-radius: 999px;
  padding: 0.35rem 1.6rem 0.35rem 0.75rem;
  font: inherit;
  font-size: 0.85rem;
  color: var(--ink);
  cursor: pointer;
}

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

.nav-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font: inherit;
  cursor: pointer;
}

section { scroll-margin-top: calc(var(--header) + 12px); }

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) 1.15fr;
  padding-top: var(--header);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem 8vw 3.5rem 6vw;
}

.eyebrow,
.facts span,
.hours span {
  margin: 0 0 0.8rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.facts span,
.hours span { margin: 0; color: var(--muted); }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; font-style: normal; letter-spacing: -0.03em; }

h1 {
  margin: 0;
  font-size: clamp(4.2rem, 8vw, 7rem);
  line-height: 0.9;
}

.lede {
  margin: 1.2rem 0 0.4rem;
  max-width: 34rem;
  color: var(--ink);
}

.hero-text {
  max-width: 34rem;
  margin: 0.4rem 0 0;
  color: var(--muted);
}

.hero-actions, .visita-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  border: 1px solid var(--navy);
}

.button:hover { background: #000; border-color: #000; }

.button-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(17, 17, 17, 0.22);
}

.button-ghost:hover { background: rgba(17, 17, 17, 0.04); }

.facts {
  display: flex;
  gap: 1.6rem;
  list-style: none;
  margin: 2.6rem 0 0;
  padding: 1.3rem 0 0;
  border-top: 1px solid var(--line);
}

.facts strong, .hours strong, .day-menu strong {
  display: block;
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0;
}

.hero-photo { margin: 0; min-height: 70vh; }

.hero-photo img, .casa-photo img, .strip img, .shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.casa {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 4rem;
  align-items: center;
  padding: 7rem 6vw;
}

.casa-copy h2, .section-head h2, .visita-card h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.08;
}

.casa-copy p { color: var(--muted); max-width: 38rem; }

.casa-copy a { color: var(--ink); }

.casa-photo {
  margin: 0;
  height: min(72vh, 640px);
  border-radius: 1.4rem;
  overflow: hidden;
}

.strip {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 0.8rem;
  padding: 0 6vw 6rem;
}

.strip figure { margin: 0; }

.strip img {
  height: 340px;
  border-radius: 1.1rem;
}

.ementa, .galeria { padding: 1rem 6vw 6rem; }

.menu-page .ementa { padding-top: calc(var(--header) + 2.5rem); }

.section-head { max-width: 38rem; margin-bottom: 2rem; }

.section-head p:last-child { color: var(--muted); margin: 0; }

.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 0.15rem;
  overflow-x: auto;
  margin: 0.4rem 0 2.6rem;
  padding-bottom: 0;
  border-bottom: 1px solid var(--line);
}

.tabs button {
  flex: 0 0 auto;
  border: 0;
  border-bottom: 1px solid transparent;
  margin-bottom: -1px;
  background: transparent;
  color: var(--muted);
  border-radius: 0;
  padding: 0.75rem 0.9rem 0.7rem;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  cursor: pointer;
}

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

.tabs button[aria-selected="true"] {
  background: transparent;
  color: var(--ink);
  border-bottom-color: var(--brass);
}

.panel {
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.panel h3 {
  margin: 0.2rem 0 0.4rem;
  font-size: 1.45rem;
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.72rem 0;
  border-bottom: 1px solid var(--line);
}

.menu-list li span:last-child {
  flex: 0 0 auto;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}

.menu-list em, h3 em {
  display: block;
  color: var(--muted);
  font-style: normal;
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 0;
}

.menu-list-two { columns: 1; }

.note {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 1rem 0 0.2rem;
}

.day-menu {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 0.4rem;
  border-bottom: 1px solid var(--line);
}

.day-menu h3 { margin: 0; font-size: 2rem; }

.day-menu p { margin: 0.3rem 0 0; color: var(--muted); }

.day-menu strong {
  font-size: 1.25rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.shot {
  position: relative;
  padding: 0;
  border: 0;
  border-radius: 1.1rem;
  overflow: hidden;
  cursor: zoom-in;
  background: #eee;
  aspect-ratio: 1;
}

.shot img {
  transition: transform 0.6s ease;
  object-fit: cover;
}

.shot:hover img { transform: scale(1.04); }

.visita {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
  padding: 1rem 6vw 5rem;
}

.visita-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  padding: 2.2rem 2rem;
}

.visita-card address {
  font-style: normal;
  font-size: 1.15rem;
  margin-bottom: 1.4rem;
}

.hours {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0;
  padding: 0.8rem 0;
  border-top: 1px solid var(--line);
}

.map-wrap {
  min-height: 460px;
  border-radius: 1.4rem;
  overflow: hidden;
  background: #f2f2f2;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
  filter: grayscale(0.35) contrast(1.05);
}

.footer {
  padding: 2rem 6vw 2.6rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

.footer p { margin: 0; }

.footer p:first-child {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  font-size: 1.2rem;
}

.lightbox {
  width: min(920px, calc(100vw - 2rem));
  padding: 2.6rem 0 0;
  border: 0;
  background: transparent;
  color: white;
}

.lightbox::backdrop { background: rgba(18, 16, 14, 0.88); }

.lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 0.8rem;
}

.lightbox-close {
  position: absolute;
  top: 0;
  right: 0;
  border: 0;
  background: transparent;
  color: white;
  font: inherit;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; margin-left: 0.5rem; }
  .lang { margin-left: auto; }

  .nav {
    display: none;
    position: absolute;
    top: var(--header);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0.4rem 1.2rem 1rem;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
  }

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

  .nav a { padding: 0.75rem 0; border-top: 1px solid var(--line); }

  .header-call { display: none; }

  .hero, .casa, .visita, .strip { grid-template-columns: 1fr; }

  .hero-copy { padding: 2.4rem 1.4rem 2rem; }

  .hero-photo { min-height: 62vh; order: -1; }

  .casa, .strip, .ementa, .galeria, .visita { padding-left: 1.2rem; padding-right: 1.2rem; }

  .casa { padding-top: 3.5rem; gap: 1.6rem; }

  .strip img { height: 240px; }

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

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

  .footer { flex-direction: column; }
}

@media (max-width: 640px) {
  h1 { font-size: 4rem; }

  .facts { flex-direction: column; gap: 0.8rem; }

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

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

  .tabs { flex-wrap: nowrap; justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .shot img { transition: none; }
}
