/* ===== ÖTZIBAR G12 ===== */
:root {
  --charcoal: #35342f;
  --charcoal-deep: #26251f;
  --paper: #f7f5f1;
  --white: #ffffff;
  --ink: #2c2b27;
  --muted: #7d7a72;
  --accent: #b98a4e;
  --accent-soft: #d9c1a0;
  --font-sans: "Barlow", system-ui, sans-serif;
  --font-head: "Barlow Condensed", "Barlow", system-ui, sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { opacity: .85; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ===== Header ===== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px;
  transition: background .35s ease, box-shadow .35s ease;
}
.site-header.is-scrolled {
  background: rgba(38, 37, 31, .96);
  box-shadow: 0 2px 18px rgba(0,0,0,.25);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: 44px; height: 44px; border-radius: 50%; box-shadow: 0 1px 6px rgba(0,0,0,.35); }
.brand-name {
  color: var(--white); font-size: 18px; letter-spacing: .22em; font-weight: 300;
}
.brand-name strong { font-weight: 600; }
.brand-g12 { color: var(--accent-soft); font-weight: 400; }

.main-nav { display: flex; gap: 30px; }
.main-nav a {
  color: var(--white); font-size: 12px; letter-spacing: .18em;
  text-transform: uppercase; font-weight: 400;
  padding: 6px 0; border-bottom: 1px solid transparent;
  transition: border-color .25s;
}
.main-nav a:hover { border-color: var(--accent-soft); opacity: 1; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--white); margin: 6px 0; transition: .3s; }

/* ===== Hero ===== */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
  transform: scale(1.04);
}
.hero-bg.is-active { opacity: 1; animation: heroZoom 14s ease-out forwards; }
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1.0); } }
.hero-bg-winter { background-image: url("assets/hero-winter.jpg"); }
.hero-bg-sommer { background-image: url("assets/hero-sommer.jpg"); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(24,23,19,.55) 0%, rgba(24,23,19,.25) 45%, rgba(24,23,19,.65) 100%);
}
.hero-content { position: relative; text-align: center; color: var(--white); padding: 100px 24px 170px; }
.hero-logo { width: 130px; margin: 0 auto 18px; filter: drop-shadow(0 2px 10px rgba(0,0,0,.4)); }
.hero-kicker {
  font-size: 13px; letter-spacing: .34em; text-transform: uppercase;
  color: var(--accent-soft); margin-bottom: 14px; font-weight: 400;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(48px, 7.6vw, 94px); font-weight: 300; letter-spacing: .18em;
  line-height: 1.05;
}
.hero h1 strong { font-weight: 600; }
.hero-sub {
  font-family: var(--font-serif); font-size: clamp(19px, 2.4vw, 26px);
  font-style: italic; margin: 18px auto 34px; max-width: 640px;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block; padding: 14px 34px;
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase; font-weight: 500;
  transition: all .3s ease; border: 1px solid transparent;
}
.btn-solid { background: var(--accent); color: var(--white); }
.btn-solid:hover { background: #a1743c; opacity: 1; }
.btn-ghost { border-color: rgba(255,255,255,.7); color: var(--white); }
.btn-ghost:hover { background: rgba(255,255,255,.12); opacity: 1; }
.btn-dark { background: var(--charcoal); color: var(--white); }
.btn-dark:hover { background: var(--charcoal-deep); opacity: 1; }

.hero-season-toggle {
  position: absolute; bottom: 86px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 5;
}
.season-dot {
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.45);
  color: var(--white); font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  padding: 7px 18px; cursor: pointer; transition: .3s; font-family: var(--font-sans);
}
.season-dot.is-active { background: var(--accent); border-color: var(--accent); }
.scroll-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  color: var(--white); font-size: 22px; opacity: .75; animation: bob 2.2s infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%,0);} 50% { transform: translate(-50%,8px);} }

/* ===== Sections ===== */
.section { padding: 110px 0; }
.section-dark { background: var(--charcoal); color: #e9e6df; }
.section-gray { background: #edeae4; }

.kicker {
  font-size: 12px; letter-spacing: .34em; text-transform: uppercase;
  color: var(--accent); font-weight: 500; margin-bottom: 14px;
}
.kicker-light { color: var(--accent-soft); }
h2 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4.4vw, 50px); font-weight: 400; letter-spacing: .04em;
  line-height: 1.15; margin-bottom: 26px; color: var(--charcoal);
  text-transform: uppercase;
}
.h2-light { color: var(--white); }
.section p { margin-bottom: 18px; max-width: 62ch; }

/* Split layout */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }
.split-media { position: relative; }
.media-main img { width: 100%; height: 520px; object-fit: cover; }
.media-small {
  position: absolute; bottom: -50px; left: -60px; width: 46%;
  border: 8px solid var(--paper); box-shadow: 0 18px 40px rgba(0,0,0,.18);
}
.media-small img { width: 100%; height: 220px; object-fit: cover; }
.media-sheep img { height: 560px; }

.fact-row { display: flex; gap: 44px; margin-top: 36px; }
.fact { display: flex; flex-direction: column; }
.fact-num { font-size: 26px; font-weight: 500; color: var(--accent); letter-spacing: .04em; }
.fact-label { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }

/* Culinary cards */
.culinary-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; margin-top: 50px; }
.culinary-grid-4 { grid-template-columns: repeat(4, 1fr); gap: 26px; }
.culinary-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 44px;
}
.culinary-strip figure { overflow: hidden; }
.culinary-strip img {
  width: 100%; height: 190px; object-fit: cover; transition: transform .6s ease;
}
.culinary-strip figure:hover img { transform: scale(1.06); }
.culinary-card { background: var(--charcoal-deep); }
.culinary-card img { width: 100%; height: 240px; object-fit: cover; }
.culinary-card h3 {
  font-size: 17px; letter-spacing: .18em; text-transform: uppercase; font-weight: 500;
  color: var(--accent-soft); padding: 24px 26px 8px;
}
.culinary-card p { padding: 0 26px 28px; font-size: 15px; color: #cfccc4; }

/* Menu */
.menu-note { color: var(--muted); font-style: italic; font-family: var(--font-serif); font-size: 18px; }
.menu-columns {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px 80px; margin-top: 46px;
}
.menu-group h3 {
  font-size: 15px; letter-spacing: .26em; text-transform: uppercase; font-weight: 500;
  color: var(--accent); margin: 44px 0 18px; padding-bottom: 10px;
  border-bottom: 1px solid #ddd8cf;
}
.menu-group h3:first-child { margin-top: 0; }
.menu-list { list-style: none; }
.menu-list li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 18px;
  padding: 9px 0; border-bottom: 1px dotted #ddd8cf;
}
.menu-list .dish { font-weight: 400; }
.menu-list .dish em {
  display: block; font-style: normal; font-size: 13px; color: var(--muted); font-weight: 300;
}
.menu-list .price { white-space: nowrap; font-weight: 500; color: var(--charcoal); }

/* Sheep section */
.section-sheep { background: linear-gradient(180deg, var(--paper) 0%, #eef0e9 100%); }

/* Team */
.team-intro { margin-top: 10px; }
.team-intro h3 {
  font-family: var(--font-head); font-size: 26px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 14px;
}
.team-intro p { max-width: 74ch; }
.team-photos {
  display: grid; grid-template-columns: 1.6fr 1fr; gap: 22px;
  margin-top: 44px; align-items: stretch;
}
.team-photos figure { overflow: hidden; }
.team-photos img {
  width: 100%; height: 520px; object-fit: cover; display: block;
  transition: transform .6s ease;
}
.team-photo-side img { object-position: center 35%; }
.team-photos figure:hover img { transform: scale(1.04); }

/* Video / Events */
.section-video .video-intro { max-width: 66ch; }
.event-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 28px; }
.video-wrap { margin-top: 44px; }
.video-wrap video {
  width: 100%; max-height: 76vh; display: block; background: #000;
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
}

/* Menu sweet note */
.menu-sweet {
  font-family: var(--font-serif); font-style: italic; font-size: 19px; color: var(--muted);
}

/* Gallery */
.gallery {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 46px;
}
.gallery figure { overflow: hidden; cursor: pointer; }
.gallery img {
  width: 100%; height: 230px; object-fit: cover;
  transition: transform .6s ease;
}
.gallery figure:hover img { transform: scale(1.06); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 300; background: rgba(20,19,16,.94);
  display: none; align-items: center; justify-content: center; padding: 40px;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; object-fit: contain; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lightbox-close {
  position: absolute; top: 22px; right: 30px; background: none; border: 0;
  color: var(--white); font-size: 38px; cursor: pointer; line-height: 1;
}

/* Contact */
.section-contact { background: var(--charcoal-deep); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; }
address { font-style: normal; margin-bottom: 18px; line-height: 1.8; }
.contact-links a { color: var(--accent-soft); }
.contact-h3 {
  font-size: 13px; letter-spacing: .26em; text-transform: uppercase; font-weight: 500;
  color: var(--accent-soft); margin: 28px 0 14px;
}
.contact-h3:first-child { margin-top: 0; }
.hours { border-collapse: collapse; width: 100%; max-width: 380px; }
.hours td { padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.hours td:last-child { text-align: right; color: var(--accent-soft); }
.hours-note { font-size: 14px; color: #a5a29a; margin-top: 14px; }

/* Footer */
.site-footer {
  background: #1c1b17; color: #94918a; text-align: center; padding: 60px 24px 40px;
}
.footer-logo { width: 84px; margin: 0 auto 16px; opacity: .9; }
.footer-line { margin-bottom: 22px; font-size: 14px; }
.footer-line a { color: var(--accent-soft); }
.footer-nav { display: flex; gap: 26px; justify-content: center; flex-wrap: wrap; margin-bottom: 26px; }
.footer-nav a {
  color: #c8c5bd; font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
}
.footer-legal { font-size: 12px; letter-spacing: .06em; }

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .culinary-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .split, .contact-grid { grid-template-columns: 1fr; gap: 46px; }
  .media-small { left: auto; right: -10px; bottom: -40px; }
  .culinary-grid { grid-template-columns: 1fr; }
  .culinary-grid-4 { grid-template-columns: 1fr; }
  .culinary-strip { grid-template-columns: repeat(2, 1fr); }
  .menu-columns { grid-template-columns: 1fr; gap: 36px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .team-photos { grid-template-columns: 1fr; }
  .team-photos img { height: 340px; }
  .section { padding: 80px 0; }
}
@media (max-width: 760px) {
  .main-nav {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(78vw, 320px);
    background: rgba(28,27,23,.98); flex-direction: column; gap: 8px;
    padding: 100px 36px; transform: translateX(100%); transition: transform .35s ease;
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav a { padding: 12px 0; font-size: 14px; }
  .nav-toggle { display: block; position: relative; z-index: 120; }
  .media-main img, .media-sheep img { height: 380px; }
  .fact-row { gap: 26px; flex-wrap: wrap; }
  .hero-season-toggle { bottom: 74px; }
}
