/* ==========================================================================
   CHENTANNOS - Innsbruck
   ========================================================================== */

:root {
  /* 70 % — Sand und Creme, die ruhigen Flaechen */
  --sand-50:  #faf6ec;
  --sand-100: #f3ebda;
  --sand-200: #e8dcc4;
  --sand-300: #d8c7a8;

  /* 15 % — Anthrazit mit warmem Einschlag, fuer Schrift und dunkle Baender */
  --coal-950: #221f1b;
  --coal-900: #2b2723;
  --coal-800: #3b352f;
  --coal-700: #514a42;
  --coal-500: #736a5f;
  --coal-400: #a49a8d;

  /* 10 % — Terrakotta, die einzige Signalfarbe */
  --terra-700: #9c4626;
  --terra-600: #b45530;
  --terra-500: #c56b45;
  --terra-400: #d68a68;
  --terra-200: #eccdba;
  --terra-100: #f7e5d9;

  /* Meerblau — die dunklen Flaechen und die Details. Der Name gibt es vor. */
  --deep-950: #06161f;
  --deep-900: #0a2231;
  --deep-800: #113247;
  --sea-700: #2c5768;
  --sea-500: #3f7387;
  --sea-200: #b3cbd4;

  --display: "Bodoni Moda", "Didot", Georgia, "Times New Roman", serif;
  --sans: "Karla", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --radius-sm: 3px;
  --radius: 6px;
  --shadow-md: 0 2px 8px rgba(6,22,31,.1), 0 22px 48px -26px rgba(6,22,31,.5);
  --shadow-lg: 0 4px 16px rgba(6,22,31,.14), 0 44px 90px -40px rgba(6,22,31,.62);

  --maxw: 1200px;
  --gut: clamp(20px, 4vw, 40px);
}

* { 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;
  background: var(--sand-50);
  color: var(--coal-700);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--sea-700); }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  color: var(--coal-900);
  line-height: 1.08;
  letter-spacing: -.01em;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(2.6rem, 7vw, 5rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-family: var(--sans); font-weight: 700; font-size: 1.12rem; letter-spacing: 0; }
p { margin: 0 0 18px; }

:focus-visible { outline: 2px solid var(--sea-500); outline-offset: 3px; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); }
.narrow { max-width: 760px; margin-left: auto; margin-right: auto; }
.section { padding: clamp(64px, 9vw, 128px) 0; }
.sec-sand { background: var(--sand-50); }
.sec-sand-2 { background: var(--sand-100); }
.sec-dark { background: var(--deep-900); color: var(--sand-100); }
.sec-dark h1, .sec-dark h2 { color: var(--sand-50); }
.sec-dark h3 { color: var(--sand-100); }

.center { text-align: center; }
.lede { font-size: 1.16rem; line-height: 1.62; color: var(--coal-700); }
.sec-dark .lede { color: var(--sand-100); }

/* ---------- Kicker ---------- */
.kicker {
  display: block;
  font-family: var(--sans); font-size: .78rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--terra-700); margin-bottom: 20px;
}
.sec-dark .kicker { color: var(--terra-400); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border: 1px solid transparent; border-radius: var(--radius-sm);
  font-family: var(--sans); font-size: .82rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; line-height: 1;
  text-decoration: none; cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.btn .icon { width: 17px; height: 17px; }
.btn-solid { background: var(--terra-700); color: #fff; }
.btn-solid:hover { background: var(--terra-600); transform: translateY(-1px); }
.btn-line { background: transparent; color: var(--coal-900); border-color: var(--sand-300); }
.btn-line:hover { border-color: var(--coal-900); }
.btn-wa { background: #25d366; color: #04240f; }
.btn-wa:hover { background: #1eb257; transform: translateY(-1px); }
.btn-wa .icon { width: 18px; height: 18px; }

/* Schwebender WhatsApp-Knopf — Terminvereinbarung immer in Reichweite */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 200;
  display: inline-flex; align-items: center; gap: 10px;
  background: #25d366; color: #04240f;
  padding: 13px 18px; border-radius: 999px; text-decoration: none;
  font-family: var(--sans); font-weight: 700; font-size: .8rem;
  letter-spacing: .12em; text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(0,0,0,.28);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.wa-float:hover { background: #1eb257; transform: translateY(-2px); box-shadow: 0 16px 38px rgba(0,0,0,.34); }
.wa-float .wa-float-ic { width: 24px; height: 24px; flex: none; }
@media (max-width: 620px) { .wa-float span { display: none; } .wa-float { padding: 15px; } }
@media print { .wa-float { display: none; } }
.sec-dark .btn-line, .btn-line-light { background: transparent; color: var(--sand-50); border-color: rgba(244,236,220,.32); }
.sec-dark .btn-line:hover, .btn-line-light:hover { border-color: var(--sand-50); background: rgba(244,236,220,.07); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.center .btn-row { justify-content: center; }

/* ---------- Kopf ---------- */

.site-header {
  position: sticky; top: 0; z-index: 80;
  background: rgba(250,246,236,.93); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--sand-200);
}
.site-header .container {
  display: flex; align-items: center; gap: 22px;
  padding-top: 16px; padding-bottom: 16px;
}
.brand { text-decoration: none; margin-right: auto; display: block; line-height: 0; flex: none; }
.brand img { display: block; height: 74px; width: auto; max-width: none; }

.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a {
  font-size: .84rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--coal-700); text-decoration: none; padding: 9px 10px;
  border-radius: var(--radius-sm); white-space: nowrap;
  transition: color .16s ease;
}
.main-nav a:hover { color: var(--terra-700); }
.main-nav a[aria-current="page"] { color: var(--terra-700); }

.lang-switch { display: flex; align-items: center; gap: 2px; margin-left: 4px; }
.lang-switch a {
  font-size: .78rem; font-weight: 700; letter-spacing: .1em;
  color: var(--coal-700); text-decoration: none; padding: 7px 9px;
  border-radius: var(--radius-sm); transition: color .16s ease, background .16s ease;
}
.lang-switch a:hover { color: var(--coal-900); background: var(--sand-100); }
.lang-switch a[aria-current="true"] { color: var(--coal-950); background: var(--sand-200); }

.header-cta { padding: 12px 22px; font-size: .78rem; white-space: nowrap; }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--sand-300);
  border-radius: var(--radius-sm); padding: 9px; cursor: pointer; color: var(--coal-900);
}
.nav-toggle .icon { width: 22px; height: 22px; }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--deep-950); color: var(--sand-50); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .58; filter: saturate(1.04); }
.js .hero-bg img { animation: heroDrift 26s ease-out forwards; }
@keyframes heroDrift { from { transform: scale(1.1); } to { transform: scale(1); } }
@media (prefers-reduced-motion: reduce) { .js .hero-bg img { animation: none; } }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,22,31,.58) 0%, rgba(10,34,49,.46) 40%, rgba(6,22,31,.92) 100%);
}
.hero-inner {
  position: relative; z-index: 1; text-align: center;
  padding: clamp(96px, 17vw, 210px) 0 clamp(72px, 11vw, 132px);
  max-width: 820px; margin: 0 auto;
}
.hero .kicker { color: var(--terra-400); }
.hero h1 { color: var(--sand-50); font-style: italic; margin-bottom: 26px; }
.hero p { color: rgba(244,236,220,.82); font-size: 1.14rem; line-height: 1.68; margin: 0 auto; max-width: 60ch; }
.hero .btn-row { justify-content: center; }

.hero-strip {
  position: relative; z-index: 1; border-top: 1px solid rgba(244,236,220,.16);
  display: flex; flex-wrap: wrap;
}
.hero-strip > div {
  flex: 1 1 220px; padding: 22px 24px;
  border-right: 1px solid rgba(244,236,220,.16);
  font-size: .82rem; letter-spacing: .06em; color: rgba(244,236,220,.72);
}
.hero-strip > div:last-child { border-right: none; }
.hero-strip b {
  display: block; font-family: var(--display); font-size: 1.1rem; font-weight: 400;
  color: var(--sand-50); letter-spacing: .02em; margin-bottom: 3px;
}

/* ---------- Seitenkopf ---------- */
.page-hero { background: var(--deep-900); color: var(--sand-100); padding: clamp(64px, 8vw, 118px) 0 clamp(56px, 7vw, 96px); }
.page-hero h1 { color: var(--sand-50); font-style: italic; margin-bottom: 22px; }
.page-hero .lede { color: rgba(244,236,220,.8); max-width: 62ch; }
.page-hero .kicker { color: var(--terra-400); }

/* ---------- Split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 84px); align-items: center; }
.split-media { position: relative; }
.split-media img { width: 100%; aspect-ratio: 3/2; object-fit: cover; box-shadow: var(--shadow-md); }
.split-rev .split-media { order: 2; }
.img-note {
  font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--coal-700); margin-top: 10px;
}
.sec-dark .img-note { color: rgba(216,199,168,.65); }

/* ---------- Saeulen ---------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 52px); margin-top: 60px; }
.pillar { border-top: 2px solid var(--terra-500); padding-top: 22px; }
.sec-dark .pillar { border-top-color: rgba(244,236,220,.2); }
.pillar h3 { margin-bottom: 8px; }
.pillar p { font-size: .95rem; color: var(--coal-500); margin: 0; }
.sec-dark .pillar p { color: rgba(216,199,168,.86); }

/* ---------- Bildband ---------- */
.strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; }
.strip img { width: 100%; aspect-ratio: 3/4; object-fit: cover; filter: saturate(.92); }

/* ---------- Speisekarte ---------- */
.menu-group { margin-bottom: clamp(48px, 6vw, 78px); }
.menu-head { border-bottom: 1px solid var(--sand-200); padding-bottom: 16px; margin-bottom: 30px; }
.menu-head h2 { font-style: italic; margin-bottom: 6px; }
.menu-head p { font-size: .92rem; color: var(--coal-500); margin: 0; letter-spacing: .04em; }
.dish {
  display: grid; grid-template-columns: 1fr auto; gap: 8px 26px;
  padding: 18px 0; border-bottom: 1px solid var(--sand-200);
}
.dish:last-child { border-bottom: none; }
.dish-name { font-family: var(--display); font-size: 1.16rem; color: var(--coal-900); }
.dish-price {
  font-family: var(--display); font-size: 1.08rem; color: var(--terra-700);
  font-variant-numeric: tabular-nums; white-space: nowrap; padding-top: 2px;
}
.dish-desc { grid-column: 1 / 2; font-size: .94rem; color: var(--coal-500); margin: 0; }
.menu-note {
  margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--sand-200);
  font-size: .9rem; color: var(--coal-500);
}

.foto-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 2px; }
.foto-grid img { width: 100%; height: 100%; object-fit: cover; display: block; }
.foto-grid img.breit { grid-column: span 3; aspect-ratio: 4/3; }
.foto-grid img.hoch  { grid-column: span 2; aspect-ratio: 3/4; }

/* ---------- Haus-Einblick ---------- */
.haus-fotos { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; margin-top: 48px; }
.haus-fotos figure { margin: 0; }
.haus-fotos img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; display: block; box-shadow: var(--shadow-md); }
@media (max-width: 700px) { .haus-fotos { grid-template-columns: 1fr; } }

/* ---------- Weine ---------- */
.wine-list { display: grid; gap: 0; margin-top: 48px; }
.wine {
  display: grid; grid-template-columns: minmax(0,.86fr) minmax(0,1.14fr);
  gap: 12px 44px; padding: 30px 0; border-top: 1px solid var(--sand-200);
}
.wine:last-child { border-bottom: 1px solid var(--sand-200); }
.wine h3 { font-family: var(--display); font-weight: 400; font-size: 1.4rem; color: var(--coal-900); }
.wine p { margin: 0; font-size: .97rem; color: var(--coal-500); }

/* ---------- Team ---------- */
.member { padding: clamp(34px, 4vw, 52px) 0; border-top: 1px solid var(--sand-200); }
.member:first-of-type { border-top: none; padding-top: 0; }
.member-grid { display: grid; grid-template-columns: minmax(0,.72fr) minmax(0,1.28fr); gap: 14px 44px; }
.member h2 { font-style: italic; font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 6px; }
.member-role {
  font-size: .78rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--sea-700); line-height: 1.7;
}
.member p { font-size: 1rem; }
.member p:last-child { margin-bottom: 0; }
.member-photo {
  margin-top: 20px; width: 100%; max-width: 320px; aspect-ratio: 3 / 4;
  object-fit: cover; border-radius: 4px; box-shadow: var(--shadow-md);
}

/* ---------- Prosa ---------- */
.prose h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); font-style: italic; margin: 46px 0 16px; }
.prose h2:first-child { margin-top: 0; }
.prose p { font-size: 1.05rem; }
.prose a, .legal a { display: inline-block; padding: 3px 0; }

/* ---------- Zitat ---------- */
.pull {
  font-family: var(--display); font-style: italic;
  font-size: clamp(1.5rem, 3.2vw, 2.4rem); line-height: 1.3;
  color: var(--sand-50); text-align: center; max-width: 20ch; margin: 0 auto;
}
.claim-line {
  margin: 34px auto 0; text-align: center; color: var(--sea-200);
  font-size: .82rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  line-height: 2;
}

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr); gap: clamp(36px, 5vw, 72px); align-items: start; }
.contact-grid.form-first { grid-template-columns: minmax(0,1.25fr) minmax(0,.75fr); }
.info-block { display: grid; gap: 26px; margin-top: 34px; }
.info-item { display: grid; grid-template-columns: 26px minmax(0, 1fr); gap: 16px; align-items: start; }
.info-item > div { min-width: 0; }
.info-item .icon { width: 21px; height: 21px; color: var(--terra-700); margin-top: 3px; }
.info-item strong {
  display: block; font-size: .78rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--coal-700); margin-bottom: 6px;
}
.info-item a, .info-item span { color: var(--coal-900); text-decoration: none; overflow-wrap: anywhere; }
.info-item a { display: inline-block; padding: 4px 0; }
.info-item a:hover { color: var(--terra-700); }
.hours { list-style: none; margin: 0; padding: 0; }
.hours li { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 4px 20px; padding: 6px 0; font-size: .94rem; color: var(--coal-700); }
.hours li span:last-child { color: var(--coal-500); font-variant-numeric: tabular-nums; }

[hidden] { display: none !important; }

.map-frame { margin-top: 44px; border: 1px solid var(--sand-200); }
.map-frame iframe { width: 100%; height: 400px; border: 0; display: block; }

/* ---------- Reservierung per E-Mail ---------- */
.mail-card {
  background: var(--deep-900); color: var(--sand-200);
  padding: clamp(28px, 3.4vw, 44px);
  border-left: 3px solid var(--terra-600);
}
.mail-card h2 { color: var(--sand-50); font-style: italic; font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 14px; }
.mail-card .kicker { color: var(--terra-400); }
.mail-card p { font-size: 1rem; margin-bottom: 26px; }
.mail-card .btn { width: auto; max-width: 100%; word-break: break-word; }
.mail-card .mail-hint {
  margin: 26px 0 0; padding-top: 20px; font-size: .9rem; color: var(--sea-200);
  border-top: 1px solid rgba(244,236,220,.18);
}

.widget-hint {
  margin: 26px 0 0; padding-top: 20px; border-top: 1px solid var(--sand-200);
  font-size: .86rem; color: var(--coal-500);
}
.pending { font-style: italic; color: var(--coal-500); font-size: .94rem; }

.note-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; margin-top: 52px; }
.note-card { background: var(--sand-50); padding: clamp(26px, 3vw, 38px); }
.note-card h3 { margin-bottom: 9px; color: var(--coal-900); }
.note-card p { font-size: .95rem; color: var(--coal-500); margin: 0; }

/* ---------- Persoenliches Wort ---------- */
.signature { text-align: center; max-width: 720px; margin: 0 auto; }
.signature blockquote {
  font-family: var(--display); font-style: italic;
  font-size: clamp(1.4rem, 2.9vw, 2.1rem); line-height: 1.36;
  color: var(--coal-900); margin: 0 0 24px; quotes: none;
}
.signature cite {
  font-style: normal; font-size: .76rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--terra-700);
}
.signature-rule { width: 44px; height: 2px; background: var(--terra-600); margin: 0 auto 26px; }

/* ---------- Rechtliches ---------- */
.legal h2 { font-size: 1.3rem; font-style: normal; font-family: var(--sans); font-weight: 700; margin: 38px 0 12px; }
.legal h2:first-of-type { margin-top: 0; }
.legal p { font-size: .98rem; }

/* ---------- Fussbereich ---------- */
.site-footer { background: var(--deep-950); color: rgba(232,220,198,.66); padding: clamp(56px, 7vw, 88px) 0 32px; font-size: .94rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: clamp(30px, 4vw, 56px); }
.site-footer .brand { display: block; margin-bottom: 18px; }
.site-footer .brand img { height: 96px; width: auto; }
.site-footer .claim { font-style: italic; color: var(--sand-100); margin-bottom: 10px; }
.site-footer p { margin-top: 16px; max-width: 36ch; }
.site-footer h4 { font-size: .78rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--terra-400); margin: 0 0 16px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.site-footer ul a, .footer-bottom a { display: inline-block; padding: 5px 0; }
.site-footer a { color: rgba(232,220,198,.78); text-decoration: none; }
.site-footer a:hover { color: var(--sand-50); }
.footer-bottom {
  margin-top: 52px; padding-top: 24px; border-top: 1px solid rgba(232,220,198,.14);
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; font-size: .84rem;
}

/* ---------- Reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; } }

/* ==========================================================================
   Responsiv
   ========================================================================== */
@media (max-width: 1320px) {
  .main-nav a { padding: 9px 8px; font-size: .79rem; }
  .lang-switch a { padding: 6px 6px; }
}

@media (max-width: 1260px) {
  .main-nav, .header-cta { display: none; }
  .brand img { height: 62px; }
  .nav-toggle { display: inline-flex; }
  .site-header .container { justify-content: space-between; }
  .main-nav.open {
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--sand-50); border-bottom: 1px solid var(--sand-200);
    padding: 10px var(--gut) 24px; box-shadow: var(--shadow-md);
    max-height: 78vh; overflow-y: auto;
  }
  .main-nav.open a { padding: 14px 0; border-bottom: 1px solid var(--sand-200); }
  .main-nav.open .lang-switch { margin: 16px 0 0; gap: 6px; }
  .main-nav.open .lang-switch a { border-bottom: none; padding: 8px 12px; border: 1px solid var(--sand-200); }
  .split, .contact-grid, .contact-grid.form-first, .member-grid { grid-template-columns: 1fr; }
  .split-rev .split-media { order: 0; }
  .pillars { grid-template-columns: 1fr; gap: 26px; }
  .wine { grid-template-columns: 1fr; gap: 8px; }
  .strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .foto-grid { grid-template-columns: 1fr; }
  .foto-grid img.breit, .foto-grid img.hoch { grid-column: span 1; }
}

@media (max-width: 760px) {
  body { font-size: 16.5px; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-strip > div { flex-basis: 100%; border-right: none; border-bottom: 1px solid rgba(244,236,220,.16); }
  .hero-strip > div:last-child { border-bottom: none; }
  .btn { width: 100%; }
  .mail-card .btn { width: 100%; }
  .btn-row { flex-direction: column; }
  .dish { grid-template-columns: 1fr; gap: 4px; }
  .note-grid { grid-template-columns: 1fr; }
  .foto-grid { grid-template-columns: repeat(2, 1fr); }
  .foto-grid img.breit { grid-column: span 2; }
  .foto-grid img.hoch { grid-column: span 1; }
  .dish-price { grid-row: 1; justify-self: start; }
  .map-frame iframe { height: 300px; }
}
