:root {
  --ink: oklch(0.18 0.035 19);
  --muted: oklch(0.38 0.035 25);
  --paper: oklch(0.97 0.012 78);
  --soft: oklch(0.92 0.03 67);
  --wine: oklch(0.38 0.105 19);
  --wine-dark: oklch(0.25 0.08 19);
  --leaf: oklch(0.43 0.075 142);
  --gold: oklch(0.72 0.12 76);
  --white: oklch(0.99 0 0);
  --line: color-mix(in oklch, var(--wine) 18%, transparent);
  --shadow: 0 8px 24px color-mix(in oklch, var(--wine-dark) 14%, transparent);
  --max: 1160px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-bottom: 4.5rem;
  background: var(--paper);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-140%);
  background: var(--wine-dark);
  color: var(--white);
  padding: 0.7rem 1rem;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 3vw, 2.5rem);
  background: color-mix(in oklch, var(--paper) 88%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.site-header.compact {
  position: static;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: clamp(3rem, 6vw, 4.5rem);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 3vw, 2rem);
  color: var(--muted);
  font-weight: 700;
}

.main-nav a,
.header-action,
.text-link,
.site-footer a {
  text-decoration: none;
}

.main-nav a:hover,
.text-link:hover,
.site-footer a:hover {
  color: var(--wine);
}

.header-action,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.75rem 1.05rem;
  font-weight: 800;
  text-decoration: none;
}

.header-action,
.button.primary {
  background: var(--wine);
  color: var(--white);
}

.button.secondary {
  border: 1px solid var(--wine);
  color: var(--wine-dark);
}

.hero {
  min-height: calc(100svh - 86px);
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1fr);
  align-items: stretch;
  border-bottom: 1px solid var(--line);
}

.hero-image {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 7vw, 7rem);
  background:
    linear-gradient(135deg, color-mix(in oklch, var(--wine) 10%, transparent), transparent 38%),
    var(--paper);
}

.place {
  margin: 0 0 1rem;
  color: var(--wine);
  font-weight: 900;
  letter-spacing: 0.02em;
}

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

h1 {
  max-width: 11ch;
  margin-bottom: 1.2rem;
  font-size: clamp(3.5rem, 9vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 4.25rem);
  line-height: 1;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.15;
}

.hero-copy p:not(.place),
.intro-band p,
.split-section p,
.location p,
.story-block p {
  max-width: 64ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.hero-actions,
.center-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.intro-band,
.menu-preview,
.faq,
.location,
.story-block {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 3vw, 2rem);
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(280px, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.features article {
  background: var(--paper);
}

.features img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.features h2,
.features p {
  padding-inline: clamp(1rem, 3vw, 2rem);
}

.features h2 {
  margin: 1.5rem 0 0.7rem;
  font-size: clamp(1.5rem, 2.8vw, 2.6rem);
}

.features p {
  color: var(--muted);
  padding-bottom: 2rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.menu-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.menu-columns > div {
  min-height: 180px;
  padding: 1.4rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.menu-columns p,
.menu-section li span,
.faq p {
  color: var(--muted);
}

.center-actions {
  align-items: center;
  justify-content: center;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(300px, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 3vw, 2rem);
}

.split-section img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin: 2rem 0 0;
}

.contact-list div {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.contact-list dt {
  color: var(--wine);
  font-weight: 900;
}

.contact-list dd {
  margin: 0.2rem 0 0;
  font-size: 1.15rem;
  font-weight: 800;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 1.2rem 0;
}

.faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 900;
}

.location {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: var(--wine-dark);
  color: var(--white);
  max-width: none;
  padding-inline: max(clamp(1rem, 3vw, 2rem), calc((100vw - var(--max)) / 2));
}

.location .place,
.location p {
  color: color-mix(in oklch, var(--white) 78%, var(--gold));
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.5rem;
  padding: 2rem;
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 12;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.8rem 1rem;
  background: var(--leaf);
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.menu-hero {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(260px, 0.75fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 7rem) clamp(1rem, 3vw, 2rem);
}

.menu-hero h1 {
  max-width: 12ch;
}

.menu-hero img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.menu-section {
  background: var(--paper);
  padding: clamp(1.4rem, 3vw, 2.4rem);
}

.menu-section h2 {
  margin-bottom: 1.4rem;
  color: var(--wine-dark);
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.price-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: baseline;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.price-list strong {
  color: var(--wine);
  white-space: nowrap;
}

.story-block {
  text-align: center;
}

.story-block p {
  margin-inline: auto;
}

@media (max-width: 820px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }

  .hero,
  .intro-band,
  .split-section,
  .menu-hero {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero picture {
    order: 2;
  }

  .hero-copy {
    order: 1;
  }

  .hero-image {
    min-height: 420px;
    max-height: 64svh;
  }

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

  .location {
    align-items: flex-start;
    flex-direction: column;
  }

  h1 {
    max-width: 9ch;
  }
}

@media (max-width: 520px) {
  .header-action {
    width: 100%;
  }

  .hero-copy {
    padding: 2rem 1rem 3rem;
  }

  .button,
  .hero-actions a,
  .center-actions a {
    width: 100%;
  }

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

  .price-list li {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .floating-whatsapp {
    left: 1rem;
  }
}

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

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