:root {
  --ink: #1f1712;
  --muted: #705f55;
  --paper: #fffaf3;
  --warm: #f6eadc;
  --red: #b4111d;
  --red-dark: #74131a;
  --gold: #e2a726;
  --green: #47735c;
  --line: rgba(31, 23, 18, 0.14);
  --shadow: 0 22px 60px rgba(52, 24, 12, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(255, 250, 243, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: white;
  font-weight: 900;
  background: linear-gradient(145deg, var(--red), var(--red-dark));
  box-shadow: 0 8px 22px rgba(180, 17, 29, 0.25);
}

.brand strong,
.brand small {
  display: block;
}

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

nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 24px);
  font-size: 0.95rem;
}

nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 750;
}

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

.lang-link {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  min-height: calc(100vh - 70px);
  gap: clamp(26px, 4vw, 62px);
  align-items: center;
  padding: clamp(34px, 6vw, 84px) clamp(18px, 5vw, 76px) clamp(30px, 5vw, 58px);
  overflow: hidden;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.45rem, 6vw, 5.7rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  color: white;
  background: var(--red);
  box-shadow: 0 18px 34px rgba(180, 17, 29, 0.28);
}

.button.secondary {
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 34px 0 0;
}

.quick-facts div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.quick-facts dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.quick-facts dd {
  margin: 6px 0 0;
  font-weight: 850;
}

.hero-media {
  position: relative;
}

.hero-media::before {
  position: absolute;
  inset: -18px;
  z-index: -1;
  content: "";
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(226, 167, 38, 0.28), rgba(180, 17, 29, 0.18));
  transform: rotate(-2deg);
}

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

.austria-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 22px;
  padding: 20px clamp(18px, 5vw, 72px);
  color: white;
  background: var(--green);
}

.austria-strip p,
.austria-strip strong {
  margin: 0;
}

.austria-strip a {
  font-weight: 850;
}

.section {
  padding: clamp(54px, 8vw, 108px) clamp(18px, 5vw, 76px);
}

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

.section-heading.compact {
  max-width: 620px;
}

.section-heading p:not(.eyebrow),
.story-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.72;
}

.food-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.food-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 45px rgba(52, 24, 12, 0.08);
}

.food-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.food-card div {
  padding: 20px;
}

.food-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.food-card.featured {
  transform: translateY(-18px);
}

.story-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: var(--warm);
}

.story-photo img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 210px;
  gap: 14px;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 14px 35px rgba(52, 24, 12, 0.11);
}

.gallery img:first-child {
  grid-row: span 2;
}

.gallery img:last-child {
  object-position: center top;
}

.contact-section {
  padding: clamp(54px, 8vw, 108px) clamp(18px, 5vw, 76px);
  background: linear-gradient(135deg, var(--red-dark), var(--red));
}

.contact-card {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 52px);
  border-radius: 8px;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.contact-card .eyebrow,
.contact-card .address {
  color: #ffe3a6;
}

.address {
  margin: 16px 0 0;
  font-size: 1.35rem;
  font-weight: 850;
}

.contact-card .button.primary {
  color: var(--red-dark);
  background: white;
  box-shadow: none;
}

.phone {
  font-weight: 850;
}

.notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.notes li {
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  line-height: 1.45;
}

footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 18px;
  padding: 22px clamp(18px, 5vw, 76px);
  color: rgba(255, 250, 243, 0.72);
  background: #15100c;
}

footer p {
  margin: 0;
}

.creator {
  grid-column: 1 / -1;
  max-width: 860px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 250, 243, 0.12);
  color: rgba(255, 250, 243, 0.9);
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.5;
}

footer a {
  color: #fff0c2;
  font-weight: 850;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.food-card[data-reveal]:nth-child(2),
.gallery [data-reveal]:nth-child(2) {
  transition-delay: 120ms;
}

.food-card[data-reveal]:nth-child(3),
.gallery [data-reveal]:nth-child(3) {
  transition-delay: 220ms;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

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

  .hero {
    min-height: auto;
  }

  .hero-media {
    order: -1;
  }

  .hero-media img {
    min-height: 320px;
    max-height: 460px;
  }

  .quick-facts,
  .food-grid,
  .notes {
    grid-template-columns: 1fr;
  }

  .food-card.featured {
    transform: none;
  }

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

@media (max-width: 560px) {
  nav {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 2px;
  }

  h1 {
    font-size: 2.65rem;
  }

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

  .gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .gallery img:first-child {
    grid-row: auto;
  }
}
