/* ============================================================
   s'Gartehüüsli — Stylesheet
   Palette:  Tanne #1E3A2B · Papier #F5F3E9 · Linde #EBEDDC
             Gold #C9963C · Glut #E9B44C · Kraut #7FA05A
   Schrift:  Fraunces (Titel) · Karla (Text)
   ============================================================ */

:root {
  --tanne: #1E3A2B;
  --tanne-deep: #14271C;
  --paper: #F5F3E9;
  --linde: #EBEDDC;
  --gold: #C9963C;
  --glut: #E9B44C;
  --kraut: #7FA05A;
  --ink: #22302A;
  --muted: #5C6B5F;
  --line: #D8D6C4;
  --radius: 14px;
  --wrap: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  font-family: "Karla", "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
}

h1, h2, h3 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  color: var(--tanne);
  line-height: 1.12;
  margin: 0 0 0.4em;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.3rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); font-weight: 600; }
h3 { font-size: 1.35rem; font-weight: 600; }

a { color: var(--tanne); }
img { max-width: 100%; display: block; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.9em;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 243, 233, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand img { width: 44px; height: 44px; }
.brand-name {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--tanne);
}
.site-nav { margin-left: auto; display: flex; align-items: center; gap: 26px; }
.site-nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
}
.site-nav a:hover { color: var(--gold); }
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid var(--tanne);
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-solid { background: var(--tanne); color: var(--paper); }
.btn-solid:hover { background: var(--tanne-deep); }
.btn-ghost { background: transparent; color: var(--tanne); }
.btn-ghost:hover { background: var(--tanne); color: var(--paper); }
.btn-gold { background: var(--gold); border-color: var(--gold); color: #fff; }
.btn-gold:hover { background: #B58433; border-color: #B58433; }
.site-nav .btn { padding: 9px 18px; font-size: 0.9rem; }

/* ---------- Hero ---------- */
.hero { padding: 72px 0 56px; overflow: hidden; }
.hero .wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.hero .lead { font-size: 1.22rem; color: var(--muted); max-width: 34em; }
.hero .lead em { font-style: italic; font-family: "Fraunces", Georgia, serif; color: var(--tanne); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 26px 0 30px; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 0; list-style: none; }
.hero-facts li {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--muted);
}
.hero-badge { text-align: center; }
.hero-badge img, .hero-badge svg { width: min(340px, 76%); margin: 0 auto; filter: drop-shadow(0 18px 30px rgba(20, 39, 28, 0.25)); }

/* ---------- Photo strip ---------- */
.photos { padding: 10px 0 30px; }
.photos .wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.photos img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

/* ---------- Sections ---------- */
.section { padding: 72px 0; }
.section-alt { background: var(--linde); }
.section-head { max-width: 640px; margin-bottom: 40px; }
.section-head p { color: var(--muted); }

/* ---------- Delivery cards ---------- */
.delivery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}
.delivery-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 22px 18px;
  text-decoration: none;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.delivery-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(20, 39, 28, 0.12);
  border-color: var(--gold);
}
.delivery-provider {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  background: var(--kraut);
  align-self: flex-start;
  border-radius: 6px;
  padding: 3px 9px;
}
.delivery-provider.uber { background: var(--tanne); }
.delivery-name {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--tanne);
}
.delivery-desc { font-size: 0.92rem; color: var(--muted); margin: 0; flex: 1; }
.delivery-cta { font-weight: 700; color: var(--gold); font-size: 0.95rem; }
.delivery-card:hover .delivery-cta { text-decoration: underline; }

/* ---------- Menu ---------- */
.menu-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 46px;
  padding: 0;
  list-style: none;
}
.menu-nav a {
  display: inline-block;
  padding: 8px 18px;
  border: 1.5px solid var(--tanne);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--tanne);
  background: transparent;
  transition: background 0.15s, color 0.15s;
}
.menu-nav a:hover { background: var(--tanne); color: var(--paper); }

.menu-cat { padding: 34px 0 8px; scroll-margin-top: 90px; }
.menu-cat + .menu-cat { border-top: 1px solid var(--line); }
.menu-cat-head { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; margin-bottom: 6px; }
.menu-cat-head .note { color: var(--muted); font-size: 0.92rem; }
.menu-divider { display: flex; align-items: center; gap: 10px; color: var(--kraut); margin: 2px 0 22px; }
.menu-divider::before, .menu-divider::after {
  content: "";
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
  flex: 0 0 54px;
}

.menu-list {
  columns: 2;
  column-gap: 56px;
}
.dish {
  break-inside: avoid;
  margin-bottom: 20px;
}
.dish-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.dish-line h4 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--tanne);
  margin: 0;
}
.dish-line .dots {
  flex: 1;
  border-bottom: 2px dotted rgba(92, 107, 95, 0.5);
  transform: translateY(-4px);
  min-width: 24px;
}
.dish-line .price {
  font-weight: 800;
  color: var(--gold);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.dish p { margin: 3px 0 0; font-size: 0.92rem; color: var(--muted); }
.tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--kraut);
  border-radius: 5px;
  padding: 2px 7px;
  vertical-align: 2px;
}
.tag.hot { background: #B4452F; }

.chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 4px 0 10px; }
.chips span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
}
.menu-cat .hint { color: var(--muted); font-size: 0.9rem; font-style: italic; }

.deal-card {
  margin-top: 14px;
  background: var(--tanne);
  color: var(--paper);
  border-radius: var(--radius);
  padding: 22px 26px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 18px;
}
.deal-card h4 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.25rem;
  margin: 0;
  color: var(--glut);
}
.deal-card p { margin: 0; flex: 1 1 320px; color: #E5E9DC; }
.deal-card .price { font-weight: 800; color: var(--glut); font-size: 1.15rem; white-space: nowrap; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}
.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 28px;
}
.info-card h3 { margin-top: 0; }
.info-card dl { margin: 0; }
.info-card dt {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 16px;
}
.info-card dt:first-child { margin-top: 0; }
.info-card dd { margin: 2px 0 0; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
}
.contact-card h3 { margin-top: 0; font-size: 1.15rem; }
.contact-card p { margin: 0 0 12px; color: var(--muted); }
.contact-card .big {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.5rem;
  color: var(--tanne);
  text-decoration: none;
  font-weight: 600;
}
.contact-card .big:hover { color: var(--gold); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--tanne-deep);
  color: #C8D2C3;
  padding: 46px 0 34px;
  font-size: 0.92rem;
}
.site-footer .wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: center;
}
.site-footer img { width: 62px; height: 62px; }
.site-footer a { color: var(--glut); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.site-footer p { margin: 3px 0; }
.footer-domains { text-align: right; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-badge { order: -1; }
  .hero-badge img, .hero-badge svg { width: 200px; }
  .about-grid { grid-template-columns: 1fr; }
  .menu-list { columns: 1; }
  .site-footer .wrap { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .footer-domains { text-align: center; }
}
@media (max-width: 720px) {
  .site-nav a:not(.btn) { display: none; }
  .hero { padding: 44px 0 36px; }
  .section { padding: 54px 0; }
}
