/* ============================================================
   EDELWEISS – Café · Restaurant · Reutte · Tirol
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=EB+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Cinzel:wght@400;500;600;700&family=UnifrakturCook:wght@700&family=UnifrakturMaguntia&display=swap');

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; }

:root {
  --parchment:  #f1ead8;
  --parchment2: #ebe3ce;
  --dark-green: #2c3a2a;
  --mid-green:  #3a5236;
  --gold:       #b08a3e;
  --gold-soft:  #c6a661;
  --gold-light: #d8be7a;
  --ink:        #1f1a13;
  --ink-mid:    #4a3f2a;
  --ink-soft:   #6b5d44;
  --border:     #c9b07a;
  --border-soft:#d8c79a;
}

body {
  font-family: 'EB Garamond', 'Cormorant Garamond', Georgia, serif;
  background: var(--parchment);
  color: var(--ink-mid);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.45  0 0 0 0 0.36  0 0 0 0 0.22  0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
}
/* Aged paper spots overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.17;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='sp'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.85 1.85' numOctaves='1' seed='12' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.42  0 0 0 0 0.31  0 0 0 0 0.14  0 0 0 1.4 -0.6'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23sp)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  background-repeat: repeat;
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  background: var(--parchment);
  background-color: #f8f3e6;
  position: relative;
  border-bottom: none;
  z-index: 20;
}
/* Torn paper edge under the navbar */
.torn.torn-nav {
  display: block;
  margin: 0;
  height: 16px;
  background: #f8f3e6;
  position: relative;
  z-index: 19;
  margin-top: -1px;
  margin-bottom: -1px;
  pointer-events: none;
}
.torn.torn-nav svg {
  display: block;
  width: 100%;
  height: 100%;
  transform: rotate(180deg);
  transform-origin: center;
}
.torn.torn-nav path { fill: rgba(152, 132, 88, 0.1) !important; }
/* Torn paper edge above the footer */
.torn.torn-foot {
  margin: 0;
  height: 16px;
  background: var(--parchment);
  position: relative;
  z-index: 5;
  margin-bottom: -1px;
  pointer-events: none;
}
.torn.torn-foot svg { display: block; width: 100%; height: 100%; }
.nav-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.4rem 2.5rem;
  background-color: #f8f3e6;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
}

/* Logo */
.brand { display: flex; align-items: center; gap: 0.9rem; }
.brand-flower {
  width: 88px; height: 88px; flex-shrink: 0;
  color: transparent;
  background: url('Uploads/edelweiss-logo.png') center/contain no-repeat;
}
.brand-flower > * { display: none; }
.brand-text { display: flex; flex-direction: column; line-height: 0.88; }
.brand-name {
  font-family: 'UnifrakturMaguntia', 'UnifrakturCook', 'Old English Text MT', 'Goudy Text MT', serif;
  font-style: normal;
  font-weight: 400;
  font-size: 3.15rem;
  color: var(--ink);
  letter-spacing: 0;
  margin-bottom: 2px;
  text-transform: none;
}
.brand-sub {
  font-family: 'Cinzel', 'EB Garamond', serif;
  font-size: 0.72rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  gap: 0.45rem;
  margin-bottom: 2px;
  font-weight: 500;
}
.brand-sub::before, .brand-sub::after {
  content: ''; flex: 1; height: 1px; background: var(--gold); opacity: 0.6;
}
.brand-sub2 {
  font-family: 'Cinzel', 'EB Garamond', serif;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: flex; align-items: center; justify-content: center;
  gap: 0.45rem;
  font-weight: 500;
}
.brand-sub2::before { content: '\25B6'; flex: 0 0 auto; color: var(--ink-soft); font-size: 0.5rem; opacity: 0.7; }
.brand-sub2::after  { content: '\25C0'; flex: 0 0 auto; color: var(--ink-soft); font-size: 0.5rem; opacity: 0.7; }

/* Nav */
.main-nav { display: flex; justify-content: center; gap: 1.6rem; }
.main-nav a {
  font-family: 'Cinzel', 'EB Garamond', serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 4px 0;
  border-bottom: 1.5px solid transparent;
  transition: border-color .2s;
  white-space: nowrap;
}
.main-nav a:hover { border-bottom-color: var(--gold); }
.main-nav a.active { border-bottom-color: var(--gold); }

/* Reserve button */
.btn-reserve {
  background: var(--dark-green);
  color: #f1ead8;
  font-family: 'EB Garamond', serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.85rem 1.6rem;
  border: none;
  transition: background .2s;
}
.btn-reserve:hover { background: var(--mid-green); }

/* ============================================================
   SECTION CONTAINERS
   ============================================================ */
.section {
  padding: 5rem 2rem;
  position: relative;
}
.section--parchment  { background: var(--parchment); }
.section--parchment2 { background: var(--parchment2); }
.section--dark {
  background: var(--dark-green);
  color: #d8cfb6;
}
.container { max-width: 1180px; margin: 0 auto; }
.container--narrow { max-width: 880px; margin: 0 auto; }

/* ============================================================
   TORN PAPER EDGES (svg masks)
   ============================================================ */
.torn { display: block; width: 100%; height: 18px; line-height: 0; position: relative; z-index: 2; margin-top: -9px; margin-bottom: -9px; pointer-events: none; }
.torn svg { display: block; width: 100%; height: 100%; }
.torn svg { width: 100%; height: 100%; display: block; }
.torn--bottom { margin-top: -9px; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  color: var(--ink);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.005em;
}
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #ece2c5; }

.h-hero { font-size: clamp(2.6rem, 5.2vw, 4rem); font-weight: 700; }
.h-section { font-size: clamp(1.9rem, 3.5vw, 2.6rem); font-weight: 700; }
.h-frame { font-size: clamp(1.6rem, 2.8vw, 2.1rem); font-weight: 700; }

p { color: var(--ink-mid); }
.section--dark p { color: #c8bf9f; }

/* Small gold uppercase eyebrow label */
.eyebrow {
  font-family: 'EB Garamond', serif;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.4rem;
  display: block;
}
.eyebrow-center { text-align: center; margin-bottom: 0.6rem; }

/* Centered section heading (small gold caps) */
.section-heading-sm {
  font-family: 'EB Garamond', serif;
  font-size: 0.95rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  text-align: center;
  margin-bottom: 1rem;
}

/* Ornament dash with center asterisk */
.ornament-dash {
  display: flex; align-items: center; justify-content: center;
  gap: 0.7rem;
  margin: 0.6rem 0 1.8rem;
}
.ornament-dash.left { justify-content: center; }
.ornament-dash.left::before,
.ornament-dash.left::after {
  max-width: none;
}
.ornament-dash::before, .ornament-dash::after {
  content: ''; display: block; flex: 1; height: 2px;
  background: var(--gold);
}
.ornament-dash::before {
  -webkit-mask-image: radial-gradient(ellipse 92% 50% at 100% 50%, black 15%, rgba(0,0,0,0.55) 55%, transparent 100%);
  mask-image:         radial-gradient(ellipse 92% 50% at 100% 50%, black 15%, rgba(0,0,0,0.55) 55%, transparent 100%);
}
.ornament-dash::after {
  -webkit-mask-image: radial-gradient(ellipse 92% 50% at 0% 50%, black 15%, rgba(0,0,0,0.55) 55%, transparent 100%);
  mask-image:         radial-gradient(ellipse 92% 50% at 0% 50%, black 15%, rgba(0,0,0,0.55) 55%, transparent 100%);
}

.ornament-dash span {
  width: 28px;
  height: 28px;
  display: inline-block;
  font-size: 0;
  color: transparent;
  background: url('Uploads/edelweiss-logo.png') center/contain no-repeat;
  line-height: 1;
}

.heart {
  width: 26px;
  height: 26px;
  display: block;
  margin: 1rem auto 0;
  font-size: 0;
  color: transparent;
  background: url('edelweiss-gold.png') center/contain no-repeat;
}
.heart-top {
  width: 28px;
  height: 28px;
  display: block;
  margin: 0 auto 0.6rem;
  font-size: 0;
  color: transparent;
  background: url('edelweiss-gold.png') center/contain no-repeat;
}

/* Body text utility */
.lead { font-size: 1rem; color: var(--ink-mid); max-width: 480px; line-height: 1.75; }
.lead-wide { max-width: 560px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-outline {
  display: inline-block;
  border: 1px solid var(--ink);
  font-family: 'EB Garamond', serif;
  font-size: 0.76rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0.95rem 1.8rem;
  transition: background .2s, color .2s;
  background: transparent;
  margin-top: 1.6rem;
}
.btn-outline:hover { background: var(--ink); color: var(--parchment); }

/* ============================================================
   ANTIQUE DOUBLE FRAME (the gold frame from screenshots)
   thin outer line + small bracket flourishes at the 4 corners
   ============================================================ */
.frame {
  position: relative;
  padding: 2.8rem 3rem;
  border: 1px solid rgba(184,150,62,0.45);
  background: transparent;
}
.frame::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(184,150,62,0.15);
  pointer-events: none;
}
.frame::after { content: none; }
.frame .corner {
  position: absolute;
  width: 42px; height: 42px;
  pointer-events: none;
}
.frame .corner::before, .frame .corner::after { content: none; }
.frame .corner.tl {
  top: 5px; left: 5px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 42 42'%3E%3Cpath d='M1 41 L1 1 L41 1' stroke='%23b8963e' fill='none' stroke-width='1.3'/%3E%3Ccircle cx='1' cy='1' r='2' fill='%23b8963e'/%3E%3C/svg%3E") center/contain no-repeat;
}
.frame .corner.tr {
  top: 5px; right: 5px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 42 42'%3E%3Cpath d='M41 41 L41 1 L1 1' stroke='%23b8963e' fill='none' stroke-width='1.3'/%3E%3Ccircle cx='41' cy='1' r='2' fill='%23b8963e'/%3E%3C/svg%3E") center/contain no-repeat;
}
.frame .corner.bl {
  bottom: 5px; left: 5px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 42 42'%3E%3Cpath d='M1 1 L1 41 L41 41' stroke='%23b8963e' fill='none' stroke-width='1.3'/%3E%3Ccircle cx='1' cy='41' r='2' fill='%23b8963e'/%3E%3C/svg%3E") center/contain no-repeat;
}
.frame .corner.br {
  bottom: 5px; right: 5px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 42 42'%3E%3Cpath d='M41 1 L41 41 L1 41' stroke='%23b8963e' fill='none' stroke-width='1.3'/%3E%3Ccircle cx='41' cy='41' r='2' fill='%23b8963e'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Dark frame variant for use on dark backgrounds */
.frame-dark { border-color: var(--gold-light); }
.frame-dark .corner::before, .frame-dark .corner::after { background: var(--gold-light); }

/* ============================================================
   HERO LAYOUTS
   ============================================================ */
.hero {
  padding: 5rem 2rem 5.5rem;
  background: var(--parchment);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}
.hero-grid--text-only > div:last-child { /* keep visual column reserved */ }

/* Big vintage edelweiss illustration in homepage hero background */
/* Big vintage edelweiss illustration filling right half of homepage hero */
.hero-bg-flower {
  position: absolute;
  right: 10%;
  top: 52%;
  width: min(42vw, 560px);
  max-width: none;
  height: auto;
  aspect-ratio: 1300 / 1210;
  transform: translateY(-50%) rotate(8deg);
  transform-origin: center center;
  opacity: 0.9;
  pointer-events: none;
  color: transparent;
  background: url('Uploads/edelweiss-cut.png') center/contain no-repeat;
}
.hero-bg-flower > * { display: none; }

/* Hops illustration for biergarten quote box */
.illu-hops {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 1000 / 1126;
  margin: 0 auto;
  background: url('hops-gold.png') center/contain no-repeat;
  opacity: 0.95;
}

/* Vintage scene illustrations — hand-drawn line-art SVGs in gold */
.illu-scene {
  display: block;
  width: 100%;
  margin: 0 auto;
  opacity: 1;
}
.illu-scene--tall { min-height: 380px; }
/* Hand-drawn vintage illustrations (cropped from Illustratotion.png) */
.illu-farmhouse { aspect-ratio: 560 / 280; background: url('img/illu/mountain-landscape.png') center/contain no-repeat; }
.illu-mortar    { aspect-ratio: 450 / 310; background: url('img/illu/beer-mug-pretzel.png')   center/contain no-repeat; }
.illu-tavern    { aspect-ratio: 880 / 640; background: url('img/illu/biergarten-scene.png')   center/contain no-repeat; }
.illu-story-house { aspect-ratio: 350 / 260; background: url('Uploads/Edelweisshaus-cut.png') left center/contain no-repeat; }

/* Vintage card wrapping an illu-scene — looks like a printed plate */
.illu-card {
  position: relative;
  background: linear-gradient(180deg, #f4ecd6 0%, #ebe1c4 100%);
  border: 1px solid var(--gold-light);
  box-shadow: 0 1px 0 #fff inset, 0 2px 8px rgba(0,0,0,0.08);
  padding: 1.4rem 1.6rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.illu-card .illu-scene { opacity: 1; width: 100%; max-width: none; }
.illu-card .illu-caption {
  margin-top: 0.6rem;
  font-family: 'EB Garamond', serif;
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
}

/* About page story banner: image integrated directly in the banner area */
.story-banner {
  position: relative;
  display: grid;
  grid-template-columns: min(41vw, 520px) minmax(0, 1fr);
  align-items: center;
  column-gap: clamp(1.4rem, 3vw, 2.8rem);
  width: 100%;
  min-height: 320px;
  overflow: visible;
}
.story-banner-illu {
  position: relative;
  inset: auto;
  width: 100%;
  height: 100%;
  min-height: 320px;
  overflow: visible;
  pointer-events: none;
  z-index: 7;
}
.story-banner-illu .illu-scene {
  width: 100%;
  height: 100%;
  min-height: calc(320px + 26px);
  aspect-ratio: auto;
  max-width: none;
  margin-left: 0;
  margin-top: -13px;
  margin-bottom: -13px;
  opacity: 0.33;
  background-size: cover;
  background-position: left center;
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 66%, rgba(0,0,0,0.86) 82%, rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(to right, rgba(0,0,0,1) 66%, rgba(0,0,0,0.86) 82%, rgba(0,0,0,0) 100%);
  filter: saturate(0.65) contrast(0.9);
}
.story-banner-copy {
  position: relative;
  max-width: none;
  margin-left: 0;
  padding: 1.4rem clamp(1.6rem, 7vw, 10rem) 1.2rem 0;
  z-index: 2;
}
.story-banner-copy .lead {
  max-width: none;
}
.story-banner-copy .lead:last-child {
  margin-bottom: 0;
}
.story-band-heading {
  margin-bottom: 0.7rem;
}
.story-banner-illu .illu-story-house {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  opacity: 0.78;
  filter: none;
}
.section--story-band {
  background: #ebe0c5;
  padding: 0;
  position: relative;
  z-index: 6;
}
.story-heading-rule {
  width: 42px;
  height: 1px;
  background: rgba(176, 138, 62, 0.8);
  margin: -0.05rem auto 1.05rem;
}
.torn.torn-story-top {
  display: block;
  height: 16px;
  margin: 0;
  margin-top: -1px;
  line-height: 0;
  position: relative;
  z-index: 5;
  pointer-events: none;
}
.torn.torn-story-bottom {
  display: block;
  height: 16px;
  margin: 0;
  margin-bottom: -1px;
  line-height: 0;
  position: relative;
  z-index: 5;
  pointer-events: none;
}
.torn.torn-story-top svg {
  display: block;
  width: 100%;
  height: 100%;
  transform: rotate(180deg);
  transform-origin: center;
}
.torn.torn-story-bottom svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ============================================================
   FEATURE GRID (3 / 4 columns with vertical gold dividers)
   ============================================================ */
.feature-grid {
  display: grid;
  gap: 0;
  align-items: start;
}
.feature-grid--3 { grid-template-columns: repeat(3, 1fr); }
.feature-grid--4 { grid-template-columns: repeat(4, 1fr); }

.feature-grid > .feature {
  padding: 0 2rem;
  text-align: center;
  border-right: 1px solid rgba(176, 138, 62, 0.35);
}
.feature-grid > .feature:last-child { border-right: none; }
.section--dark .feature-grid > .feature { border-right-color: rgba(216, 190, 122, 0.25); }

.feature-icon {
  width: 56px; height: 56px;
  margin: 0 auto 1.4rem;
  color: var(--gold);
}
.section--dark .feature-icon { color: var(--gold-light); }
.feature-icon svg { width: 100%; height: 100%; display: block; }

/* Icon inside a soft gold circle (used on Küche / Biergarten pages) */
.feature-icon-circle {
  width: 78px; height: 78px;
  margin: 0 auto 1.4rem;
  border-radius: 50%;
  background: rgba(176, 138, 62, 0.14);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.feature-icon-circle svg { width: 38px; height: 38px; }

.feature h3 {
  font-family: 'EB Garamond', serif;
  font-size: 0.82rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1rem;
}
.section--dark .feature h3 { color: #ece2c5; }
.feature p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--ink-mid);
}
.section--dark .feature p { color: #c8bf9f; }

/* Edelweiss bullet list */
.edelweiss-list { padding: 0; margin: 0.8rem 0; text-align: left; display: inline-block; }
.edelweiss-list li {
  position: relative;
  padding: 0.3rem 0 0.3rem 1.6rem;
  font-size: 0.95rem;
  color: var(--ink-mid);
  line-height: 1.5;
}
.edelweiss-list li::before {
  content: '❋';
  position: absolute; left: 0; top: 0.35rem;
  color: var(--gold);
  font-size: 0.7rem;
}

/* ============================================================
   PLACEHOLDER BOXES (for images user will replace later)
   ============================================================ */
.placeholder {
  background: repeating-linear-gradient(
    45deg,
    #d8cdb0,
    #d8cdb0 10px,
    #ccc09a 10px,
    #ccc09a 20px
  );
  border: 2px dashed var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-family: 'EB Garamond', serif;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  padding: 1rem;
  min-height: 240px;
}
.placeholder--tall   { min-height: 380px; }
.placeholder--xtall  { min-height: 480px; }
.placeholder--short  { min-height: 160px; }
.placeholder--flower { aspect-ratio: 1 / 1; min-height: 0; }

/* ============================================================
   STARTSEITE — Wirtshauskultur 2-col
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Frame variant for Neueröffnung box */
.frame-neueroffnung { text-align: center; padding: 3rem 2.5rem 2.5rem; }
.frame-neueroffnung .flower-top {
  width: 68px; height: 68px;
  margin: 0 auto 1.2rem;
  color: transparent;
  background: url('Uploads/edelweiss-logo.png') center/contain no-repeat;
}
.frame-neueroffnung .flower-top > * { display: none; }
.frame-neueroffnung .label-top {
  font-family: 'EB Garamond', serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.frame-neueroffnung h2 {
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 0.4rem;
}
.frame-neueroffnung .closing-italic {
  font-family: 'EB Garamond', serif;
  font-size: 0.96rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-top: 0.6rem;
  line-height: 1.8;
}

/* ============================================================
   NEWSLETTER STRIP
   ============================================================ */
.newsletter {
  background: var(--parchment2);
  padding: 2.2rem 2rem;
}
.newsletter-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
}
.newsletter-icon {
  width: 56px; height: 56px;
  color: var(--gold);
}
.newsletter-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 600;
  margin-bottom: 0.2rem;
  color: var(--ink);
}
.newsletter-text p { font-size: 0.92rem; color: var(--ink-mid); margin: 0; }
.newsletter-form { display: flex; }
.newsletter-form input {
  border: 1px solid var(--border-soft);
  background: #fff;
  font-family: 'EB Garamond', serif;
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  width: 280px;
  color: var(--ink);
  outline: none;
}
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form button {
  background: var(--dark-green);
  color: #f1ead8;
  border: none;
  font-family: 'EB Garamond', serif;
  font-size: 0.78rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding: 0 1.6rem;
}
.newsletter-form button:hover { background: var(--mid-green); }

/* ============================================================
   KITCHEN CARDS (Küche page – 3 large bordered cards)
   ============================================================ */
.kitchen-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.kitchen-card {
  background: var(--parchment);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  text-align: center;
}
.kitchen-card .feature-icon { width: 44px; height: 44px; }
.kitchen-card h3 {
  font-family: 'EB Garamond', serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 1rem;
}
.kitchen-card .intro { font-size: 0.92rem; color: var(--ink-mid); margin-bottom: 1rem; }
.kitchen-card .outro { font-size: 0.9rem; color: var(--ink-soft); font-style: italic; margin-top: 1rem; }
.wochenaktionen {
  background: #e2d6b7;
  border: 1px solid var(--border-soft);
  padding: 1rem 1.2rem;
  margin: 1.2rem auto 0;
  text-align: center;
  max-width: 240px;
}
.wochenaktionen .label {
  font-family: 'EB Garamond', serif;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
  font-weight: 600;
}
.wochenaktionen p { font-size: 0.88rem; color: var(--ink-mid); margin: 0; line-height: 1.4; }

/* ============================================================
   DARK CLOSING STRIP (Küche / Biergarten bottom banner)
   ============================================================ */
.closing-strip {
  background: var(--dark-green);
  color: #d8cfb6;
  padding: 1.5rem 2rem 1.2rem;
  text-align: center;
  position: relative;
}
.closing-strip .heart-top {
  width: 30px;
  height: 30px;
  margin: 0 auto 0.35rem;
  display: block;
  font-size: 0;
  color: transparent;
  background: url('Uploads/edelweiss-logo.png') center/contain no-repeat;
}
.closing-strip .closing-title {
  font-family: 'EB Garamond', serif;
  font-size: 0.95rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 0.35rem;
  font-weight: 500;
}
.closing-strip p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 0.92rem;
  line-height: 1.35;
  color: #ffffff;
}
.closing-strip .heart {
  width: auto;
  height: auto;
  margin: 0.45rem auto 0;
  font-size: 1.05rem;
  line-height: 1;
  color: #ffffff;
  background: none;
}
.closing-strip .heart::before {
  content: '♥';
}

/* Ragged painted edges for Biergarten dark strip */
.closing-strip--ragged {
  background: transparent;
  padding: 0;
}
.closing-strip--ragged .inner {
  background: var(--dark-green);
  padding: 2.8rem 2rem;
  position: relative;
  -webkit-mask-image:
    radial-gradient(ellipse 50% 100% at 50% 0%, black 99%, transparent 100%),
    linear-gradient(black, black);
  /* fallback: simple block */
}
/* simpler: use svg torn top and bottom for this strip */
.ragged-strip {
  background: transparent;
  position: relative;
  padding: 0;
}
.ragged-strip svg.edge-top,
.ragged-strip svg.edge-bottom {
  display: block; width: 100%; height: 14px;
}
.ragged-strip .ragged-inner {
  background: var(--dark-green);
  padding: 2rem 2rem 2.2rem;
  color: #d8cfb6;
  text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark-green);
  color: #c8bf9f;
  padding: 3.5rem 2rem 2.5rem;
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr 1fr;
  gap: 3rem;
}
.footer-inner > * {
  padding-right: 1.5rem;
}
.footer-inner > *:not(:last-child) {
  border-right: 1px solid rgba(216, 190, 122, 0.5);
}
.footer-brand { display: flex; flex-direction: column; align-items: center; gap: 0; }
.footer-brand .brand-flower {
  width: 108px;
  height: 108px;
  margin-bottom: 0.15rem;
  background: url('Uploads/edelweiss-logo.png') center/contain no-repeat;
}
.footer-brand .brand-name {
  font-family: 'UnifrakturMaguntia', 'UnifrakturCook', 'Old English Text MT', 'Goudy Text MT', serif;
  font-weight: 400;
  color: #efe1b6;
  font-size: 3.1rem;
  line-height: 0.9;
  letter-spacing: 0;
  margin-bottom: 0.16rem;
}
.footer-brand .brand-sub { color: var(--gold-light); }
.footer-brand .brand-sub::before, .footer-brand .brand-sub::after { background: var(--gold-light); }
.footer-brand .brand-sub2 { color: #c8bf9f; }
.footer-brand .brand-sub,
.footer-brand .brand-sub2 {
  letter-spacing: 0.12em;
  gap: 0.34rem;
}
.footer-brand .brand-sub {
  font-size: 0.66rem;
  margin-bottom: 0.08rem;
}
.footer-brand .brand-sub2 {
  font-size: 0.62rem;
}
.footer-brand .brand-sub2::before,
.footer-brand .brand-sub2::after {
  background: transparent;
  color: #c8bf9f;
  opacity: 0.72;
}

.footer-col h4 {
  font-family: 'Cinzel', 'EB Garamond', serif;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer-col p, .footer-col address {
  font-size: 0.92rem;
  line-height: 1.85;
  font-style: normal;
  color: #ffffff;
}
.footer-col a { color: #ffffff; }
.footer-col a:hover { color: #ffffff; }
.footer-divider {
  width: 30px; height: 1px;
  background: var(--gold);
  margin: 0.8rem 0;
}
.footer-heart {
  width: 24px;
  height: 24px;
  display: block;
  margin-top: 0.4rem;
  font-size: 0;
  color: transparent;
  background: url('edelweiss-gold.png') center/contain no-repeat;
}

.footer-contact-line {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #ffffff;
}
.footer-contact-line svg { width: 14px; height: 14px; color: var(--gold-light); flex-shrink: 0; }

.footer-meta {
  max-width: 1240px;
  margin: 1.8rem auto 0;
  margin-bottom: 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(216, 190, 122, 0.7);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-legal {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--gold-light);
  font-family: 'Cinzel', 'EB Garamond', serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.footer-legal a {
  color: var(--gold-light);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .2s, color .2s;
}
.footer-legal a:hover {
  color: #ffffff;
  border-bottom-color: rgba(255,255,255,0.7);
}
.footer-legal span[aria-hidden="true"] {
  color: #ffffff;
  opacity: 0.8;
}
.footer-copyright {
  margin: 0;
  color: #ffffff;
  font-family: 'EB Garamond', serif;
  font-size: 0.9rem;
  line-height: 1.35;
}

.cookie-notice {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 10001;
  background: rgba(32, 43, 30, 0.96);
  border: 1px solid rgba(216, 190, 122, 0.55);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.26);
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
}
.cookie-notice p {
  margin: 0;
  color: #ffffff;
  font-size: 0.92rem;
  line-height: 1.4;
}
.cookie-notice button {
  border: 1px solid rgba(216, 190, 122, 0.8);
  background: var(--gold-light);
  color: #1f1a13;
  font-family: 'Cinzel', 'EB Garamond', serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.52rem 0.8rem;
  white-space: nowrap;
}
.cookie-notice.is-hidden {
  display: none;
}

.cookie-visible .site-footer {
  padding-bottom: 6.2rem;
}

.social-icons { display: flex; gap: 0.6rem; margin-top: 0.4rem; margin-bottom: 0.9rem; }
.social-icon {
  width: 36px; height: 36px;
  border: 1px solid rgba(216, 190, 122, 0.5);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #c8bf9f;
  transition: border-color .2s, color .2s;
}
.social-icon:hover { border-color: var(--gold-light); color: var(--gold-light); }
.social-icon svg { width: 16px; height: 16px; }

/* ============================================================
   KONTAKT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-line {
  display: flex; align-items: center; gap: 0.9rem;
  margin-bottom: 1.2rem;
  font-size: 1rem;
}
.contact-info-line svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; }
.contact-form .field { margin-bottom: 1.1rem; }
.contact-form label {
  display: block;
  font-family: 'EB Garamond', serif;
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border-soft);
  background: #fff;
  font-family: 'EB Garamond', serif;
  font-size: 1rem;
  color: var(--ink);
  padding: 0.85rem 1rem;
  outline: none;
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form .hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.contact-form .form-feedback {
  margin: 0 0 1rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid rgba(176, 138, 62, 0.35);
  background: rgba(255, 255, 255, 0.55);
  font-size: 0.96rem;
  line-height: 1.35;
}
.contact-form .form-feedback.is-error {
  border-color: rgba(155, 40, 24, 0.45);
  color: #7b2417;
}
.contact-form .form-feedback.is-success {
  border-color: rgba(63, 105, 54, 0.45);
  color: #264b1f;
}

/* ============================================================
   SPEISEKARTE placeholder page
   ============================================================ */
.coming-soon {
  text-align: center;
  padding: 6rem 2rem;
}
.coming-soon .icon-flower {
  width: 110px; height: 110px;
  margin: 0 auto 2rem;
  color: var(--gold);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid, .two-col, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .story-banner {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 1rem;
    width: 100%;
    overflow: visible;
  }
  .section--story-band {
    padding: 0;
  }
  .story-banner-illu {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 180px;
  }
  .story-banner-illu .illu-scene {
    width: 100%;
    margin-left: 0;
    margin-bottom: 0;
    opacity: 0.3;
    background-position: left center;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .story-banner-copy {
    max-width: 100%;
    margin-left: 0;
    padding: 0;
  }
  .story-heading-rule {
    margin-bottom: 0.9rem;
  }
  .feature-grid--3, .feature-grid--4, .kitchen-cards { grid-template-columns: 1fr; }
  .feature-grid > .feature { border-right: none; border-bottom: 1px solid rgba(176,138,62,0.25); padding: 1.5rem 1rem; }
  .feature-grid > .feature:last-child { border-bottom: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner > * {
    padding-right: 0;
    border-right: none !important;
  }
  .newsletter-inner { grid-template-columns: 1fr; text-align: center; }
  .newsletter-form { justify-content: center; }
  .newsletter-form input { width: 100%; }
  .hero-bg-flower {
    width: 190px;
    height: auto;
    aspect-ratio: 1300 / 1210;
    max-height: 78%;
    opacity: 0.24;
    right: -16px;
  }
}
@media (max-width: 768px) {
  .nav-wrap { grid-template-columns: 1fr; gap: 1.4rem; justify-items: center; }
  .main-nav { flex-wrap: wrap; justify-content: center; gap: 1.2rem; }
  .brand-flower { width: 76px; height: 76px; }
  .brand-name { font-size: 2.55rem; }
  .footer-brand .brand-flower { width: 94px; height: 94px; }
  .footer-brand .brand-name { font-size: 2.6rem; }
  .footer-brand .brand-sub { font-size: 0.62rem; }
  .footer-brand .brand-sub2 { font-size: 0.58rem; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 1.4rem; }
  .frame { padding: 2rem 1.5rem; }
  .brand-flower { width: 66px; height: 66px; }
  .brand-name { font-size: 2.2rem; }
  .brand-sub { font-size: 0.64rem; }
  .brand-sub2 { font-size: 0.6rem; }
  .footer-brand .brand-flower { width: 84px; height: 84px; }
  .footer-brand .brand-name { font-size: 2.25rem; }
  .footer-brand .brand-sub { font-size: 0.58rem; }
  .footer-brand .brand-sub2 { font-size: 0.54rem; }
  .footer-meta {
    justify-content: center;
    text-align: center;
    margin-top: 1.35rem;
    row-gap: 0.45rem;
  }
  .footer-legal {
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
    column-gap: 0.45rem;
    row-gap: 0.2rem;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
  }
  .footer-copyright {
    width: 100%;
    font-size: 0.84rem;
    line-height: 1.45;
  }
  .cookie-notice {
    left: 0.65rem;
    right: 0.65rem;
    bottom: 0.65rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.82rem 0.85rem;
  }
  .cookie-notice p {
    font-size: 0.86rem;
  }
  .cookie-notice button {
    width: 100%;
    align-self: stretch;
    text-align: center;
  }
  .cookie-visible .site-footer {
    padding-bottom: 9.1rem;
  }
}
@media (max-width: 420px) {
  .footer-legal {
    font-size: 0.58rem;
    letter-spacing: 0.12em;
  }
  .cookie-visible .site-footer {
    padding-bottom: 9.8rem;
  }
}
