:root {
  --bg: #f6eee4;
  --bg-soft: #efe2d1;
  --surface: rgba(255, 249, 240, 0.82);
  --surface-strong: rgba(58, 31, 18, 0.92);
  --card: rgba(255, 251, 246, 0.86);
  --card-strong: #fff8ef;
  --line: rgba(99, 54, 32, 0.12);
  --text: #2f1b13;
  --muted: #6a4a3c;
  --accent: #b44b2a;
  --accent-strong: #8f3518;
  --olive: #6e7a3f;
  --gold: #c9a15d;
  --shadow: 0 24px 80px rgba(78, 42, 22, 0.16);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(196, 159, 85, 0.16), transparent 24rem),
    radial-gradient(circle at top right, rgba(180, 75, 42, 0.18), transparent 28rem),
    linear-gradient(180deg, #f7efe6 0%, #f3e7d7 45%, #f8f2ea 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(99, 54, 32, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 54, 32, 0.03) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, black 15%, transparent 85%);
  opacity: 0.45;
}

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

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  background: var(--text);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  z-index: 1000;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  backdrop-filter: blur(18px);
  background: rgba(247, 239, 230, 0.78);
  border-bottom: 1px solid rgba(99, 54, 32, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.brand-mark {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(180, 75, 42, 0.95), rgba(110, 122, 63, 0.9));
  color: #fff8f1;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 700;
  box-shadow: 0 12px 32px rgba(111, 62, 33, 0.28);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand-text strong {
  font-size: 0.98rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.site-nav a {
  position: relative;
  padding: 0.35rem 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.site-nav a.is-active,
.site-nav a:hover {
  color: var(--text);
}

.site-nav a.is-active::after,
.site-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta,
.button,
.floating-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease;
}

.header-cta,
.button-primary,
.floating-call {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff7f1;
  box-shadow: 0 14px 32px rgba(180, 75, 42, 0.24);
}

.header-cta {
  padding: 0.9rem 1.25rem;
}

.button {
  padding: 0.95rem 1.3rem;
  min-width: 10rem;
}

.button-secondary {
  border: 1px solid rgba(99, 54, 32, 0.16);
  background: rgba(255, 249, 242, 0.72);
  color: var(--text);
}

.header-cta:hover,
.button:hover,
.floating-call:hover {
  transform: translateY(-2px);
}

.section,
.stats-band,
.site-footer {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.section {
  padding: 6rem 0;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 2rem;
  min-height: calc(100vh - 5rem);
  align-items: center;
  padding-top: 4rem;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 7% 0 auto auto;
  width: 44rem;
  height: 44rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 245, 230, 0.7), transparent 30%),
    radial-gradient(circle at 70% 40%, rgba(201, 161, 93, 0.34), transparent 28%),
    linear-gradient(135deg, rgba(180, 75, 42, 0.8), rgba(110, 122, 63, 0.76));
  filter: blur(12px);
  opacity: 0.92;
  transform: translateX(28%);
}

.hero-copy,
.hero-panel,
.info-card,
.gluten-card,
.highlight-card,
.daily-menu-card,
.booking-card,
.faq-item,
.contact-panel,
.stat-card {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 1.9rem;
  height: 1px;
  background: currentColor;
}

.hero h1,
.section-heading h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.94;
  letter-spacing: -0.03em;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(3.6rem, 8vw, 6.8rem);
}

.hero-text,
.section-heading p,
.story-copy p,
.menu-item p,
.gluten-card p,
.highlight-card p,
.booking-card p,
.faq-item p,
.contact-block p,
.daily-menu-card p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  max-width: 40rem;
  font-size: 1.1rem;
  margin: 1.5rem 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero-badges span,
.pill,
.inline-static {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(99, 54, 32, 0.12);
  background: rgba(255, 249, 242, 0.68);
  color: var(--text);
  padding: 0.62rem 0.95rem;
  font-size: 0.9rem;
}

.hero-panel,
.daily-menu-card,
.contact-panel {
  background:
    linear-gradient(180deg, rgba(255, 248, 238, 0.88), rgba(247, 235, 220, 0.92));
  border: 1px solid rgba(99, 54, 32, 0.08);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.panel-kicker {
  margin: 0;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
}

.hero-menu-box {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin: 1.2rem 0 0.5rem;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(99, 54, 32, 0.08);
  border-bottom: 1px solid rgba(99, 54, 32, 0.08);
}

.hero-menu-box span,
.menu-item-heading h4,
.highlight-card h3,
.booking-card h3,
.contact-block strong,
.daily-menu-card h3 {
  font-size: 1.15rem;
}

.hero-menu-box strong,
.highlight-card strong {
  font-size: 2rem;
  font-family: "Cormorant Garamond", serif;
}

.hero-list {
  margin: 1.5rem 0;
  padding-left: 1.15rem;
  color: var(--muted);
  line-height: 1.9;
}

.inline-link {
  color: var(--accent-strong);
  font-weight: 800;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: -1rem;
}

.stat-card,
.info-card,
.gluten-card,
.highlight-card,
.booking-card,
.faq-item {
  background: rgba(255, 252, 247, 0.74);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 48px rgba(86, 49, 29, 0.08);
}

.stat-card {
  padding: 1.45rem 1.6rem;
}

.stat-card strong {
  display: block;
  font-size: 1.6rem;
  font-family: "Cormorant Garamond", serif;
}

.stat-card span {
  color: var(--muted);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2rem;
  align-items: start;
}

.section-heading {
  max-width: 46rem;
}

.section-heading h2 {
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  max-width: 14ch;
}

.section-heading p {
  margin-top: 1.2rem;
  font-size: 1.02rem;
}

.story-copy {
  padding-top: 4.5rem;
}

.info-grid,
.gluten-grid,
.highlight-grid,
.booking-grid {
  display: grid;
  gap: 1rem;
}

.info-grid {
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1rem;
}

.info-card,
.gluten-card,
.booking-card {
  padding: 1.7rem;
}

.info-card h3,
.gluten-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.1rem;
}

.gluten-section,
.menu-section,
.faq-section {
  position: relative;
}

.gluten-section::before,
.menu-section::before,
.faq-section::before {
  content: "";
  position: absolute;
  inset: 1.5rem -1.25rem;
  background: rgba(255, 247, 236, 0.4);
  border-radius: 40px;
  z-index: -1;
}

.gluten-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

.highlight-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 2rem;
}

.highlight-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 16rem;
  padding: 1.75rem;
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.92), rgba(245, 232, 216, 0.82));
}

.menu-section .section-heading h2,
.faq-section .section-heading h2 {
  max-width: 12ch;
}

.daily-menu-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.menu-accordion {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.menu-category {
  background: rgba(255, 251, 246, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.menu-category summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.6rem 1.7rem;
}

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

.menu-category h3,
.menu-category p,
.menu-item-heading h4,
.faq-item summary,
.contact-block span {
  margin: 0;
}

.menu-category p {
  margin-top: 0.45rem;
  color: var(--muted);
}

.menu-category-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.8rem;
}

.toggle {
  color: var(--accent-strong);
  font-weight: 700;
}

.menu-category[open] .toggle::after {
  content: " menos";
}

.menu-category:not([open]) .toggle::after {
  content: " más";
}

.menu-category ul {
  list-style: none;
  margin: 0;
  padding: 0 1.7rem 1.7rem;
}

.menu-item {
  padding: 1rem 0;
  border-top: 1px solid rgba(99, 54, 32, 0.08);
}

.menu-item-heading {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
}

.menu-item-heading span {
  color: var(--accent-strong);
  font-weight: 800;
  white-space: nowrap;
}

.booking-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.faq-item {
  padding: 1.3rem 1.5rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0.8rem 0 0;
}

.contact-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.contact-block {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(99, 54, 32, 0.06);
}

.contact-block span {
  display: block;
  color: var(--muted);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
}

.site-footer {
  padding: 2rem 0 4rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.floating-call {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  padding: 1rem 1.2rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .site-header {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .hero-background {
    width: 32rem;
    height: 32rem;
    transform: translateX(18%);
  }

  .story-copy {
    padding-top: 0;
  }

  .info-grid,
  .gluten-grid,
  .highlight-grid,
  .booking-grid,
  .contact-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .site-header {
    align-items: flex-start;
    padding: 1rem;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.25rem;
  }

  .header-cta {
    width: 100%;
  }

  .section {
    padding: 4.5rem 0;
  }

  .hero {
    min-height: auto;
    padding-top: 2rem;
  }

  .hero h1 {
    max-width: 100%;
  }

  .hero-panel,
  .daily-menu-card,
  .contact-panel {
    padding: 1.4rem;
  }

  .stats-band,
  .info-grid,
  .gluten-grid,
  .highlight-grid,
  .booking-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .menu-category summary,
  .daily-menu-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-category-meta {
    align-items: flex-start;
  }

  .menu-item-heading {
    flex-direction: column;
    gap: 0.3rem;
  }

  .floating-call {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .header-cta,
  .button,
  .floating-call {
    transition: none;
  }
}
