/* ═══════════════════════════════════════════════════════════
   ISERIG HOF — Bauernhof Design (Original-Grün & Warme Töne)
   ═══════════════════════════════════════════════════════════ */

/* ── FONTS ── */
@font-face {
  font-family: 'Playfair Display';
  src: url('./../fonts/PlayfairDisplay-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Playfair Display';
  src: url('./../fonts/PlayfairDisplay-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Lora';
  src: url('./../fonts/Lora-VariableFont_wght.ttf') format('truetype');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lora';
  src: url('./../fonts/Lora-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 400 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Caveat';
  src: url('./../fonts/Caveat-VariableFont_wght.ttf') format('truetype');
  font-weight: 400 700;
  font-display: swap;
}

/* ── ORIGINAL DESIGN TOKENS ── */
:root {
  /* Original green palette */
  --c-bg: #FAFAF6;
  --c-surface: #FFFFFF;
  --c-surface2: #F3F1EC;
  --c-dark: #1A1A18;
  --c-dark2: #2C2B28;
  --c-mid: #5C5852;
  --c-dim: #8A857C;
  --c-border: #E0DDD5;
  --c-green: #2D6A3F;
  --c-green-d: #1E4F2D;
  --c-green-l: #E8F5ED;
  --c-accent: #3AAF65;
  --c-gold: #C8A96E;
  --c-white: #FFFFFF;

  /* Typography & Layout tokens */
  --font-body: 'Lora', 'Georgia', serif;
  --font-head: 'Playfair Display', 'Georgia', serif;
  --font-hand: 'Caveat', cursive;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, .06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, .08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, .12);
  --transition: .3s ease;
}

/* ── RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--c-bg);
  color: var(--c-dark);
  overflow-x: hidden;
  line-height: 1.7;
  /* Subtle linen texture */
  background-image:
    repeating-linear-gradient(0deg,
      transparent,
      transparent 60px,
      rgba(0, 0, 0, .015) 60px,
      rgba(0, 0, 0, .015) 61px),
    repeating-linear-gradient(90deg,
      transparent,
      transparent 60px,
      rgba(0, 0, 0, .01) 60px,
      rgba(0, 0, 0, .01) 61px);
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

/* ── LAYOUT ── */
.wrap {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 5rem 0;
  position: relative;
}

/* ═══════════════════════════ NAVIGATION ═══════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 600;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(250, 250, 246, .95);
  border-bottom: 3px solid var(--c-green);
  box-shadow: var(--shadow-sm);
  transition: background var(--transition), box-shadow var(--transition);
}

nav.scrolled {
  box-shadow: var(--shadow-md);
}

nav.dark-nav {
  background: rgba(26, 26, 24, .95);
  border-bottom-color: var(--c-accent);
}

.nav-inner {
  max-width: 1050px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  font-family: var(--font-hand);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--c-green);
  letter-spacing: .02em;
  transition: color var(--transition);
}

nav.dark-nav .nav-logo {
  color: var(--c-accent);
}

.nav-logo img {
  height: 54px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 0;
  align-items: center;
}

.nav-links a {
  display: block;
  padding: .4rem 1rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--c-mid);
  letter-spacing: .02em;
  transition: color var(--transition);
  position: relative;
}

.nav-links > li > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav-links > li > a > span {
  position: relative;
  display: inline-block;
}

.nav-links > li > a > span::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-accent);
  transition: width var(--transition);
}

.nav-links > li > a:hover > span::after,
.nav-dropdown:hover > a > span::after,
.nav-dropdown:focus-within > a > span::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--c-green);
}

nav.dark-nav .nav-links a {
  color: rgba(255, 255, 255, .65);
}

nav.dark-nav .nav-links a:hover {
  color: var(--c-white);
}

.nav-dropdown {
  position: relative;
}

.dropdown-arrow {
  display: inline-block;
  width: 9px;
  height: 6px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
  transform-origin: center;
}

.nav-dropdown:hover > a,
.nav-dropdown:focus-within > a {
  color: var(--c-green);
}

nav.dark-nav .nav-dropdown:hover > a,
nav.dark-nav .nav-dropdown:focus-within > a {
  color: var(--c-white);
}

.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown:focus-within .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--c-surface);
  border: 2px solid var(--c-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  min-width: 210px;
  padding: .4rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(4px);
}

.dropdown-menu .dropdown-header {
  display: block;
  padding: .55rem 1.2rem .45rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--c-green);
  font-family: var(--font-hand);
  background: var(--c-green-l);
  border-bottom: 1px solid var(--c-border);
  transition: background .15s, color .15s;
}

.dropdown-menu .dropdown-header:hover {
  background: var(--c-green);
  color: var(--c-white);
}

.dropdown-menu a {
  display: block;
  padding: .55rem 1.2rem;
  font-size: .84rem;
  color: var(--c-mid);
  transition: color .15s;
  position: relative;
}

.dropdown-menu a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 1.2rem;
  width: 0;
  height: 1.5px;
  background: var(--c-accent);
  transition: width .25s ease;
}

.dropdown-menu a:hover::after {
  width: calc(100% - 2.4rem);
}

.dropdown-menu a:hover {
  background: var(--c-surface2);
  color: var(--c-green);
}

.dropdown-menu .dropdown-header::after {
  display: none;
}

nav.dark-nav .dropdown-menu {
  background: var(--c-surface);
  border-color: var(--c-border);
}

nav.dark-nav .dropdown-menu a {
  color: var(--c-mid);
}

nav.dark-nav .dropdown-menu a:hover {
  color: var(--c-green);
  background: var(--c-surface2);
}

.nav-cta {
  font-size: .85rem;
  font-weight: 600;
  color: var(--c-white);
  background: var(--c-green);
  padding: .45rem 1.2rem;
  border-radius: var(--radius-sm);
  letter-spacing: .02em;
  transition: all var(--transition);
  border: 2px solid var(--c-green);
  display: inline-flex;
  align-items: center;
}

.nav-cta:hover {
  background: var(--c-green-d);
  border-color: var(--c-green-d);
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-green);
  border-radius: 2px;
  transition: all var(--transition);
}

nav.dark-nav .hamburger span {
  background: var(--c-white);
}

/* ═══════════════════════════ HERO SECTION ═══════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-dark);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 8rem 2rem 6rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 26, 24, .55) 0%, rgba(26, 26, 24, .4) 40%, rgba(26, 26, 24, .65) 100%),
    url('./../images/Hof/Hof.webp') center/cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-eyebrow {
  font-family: var(--font-hand);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--c-accent);
  margin-bottom: 1.6rem;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}

.hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--c-white);
}

.hero-h1 em {
  font-style: italic;
  color: var(--c-accent);
}

.hero-sub {
  margin-top: 1.6rem;
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255, 255, 255, .7);
  max-width: 500px;
  line-height: 1.7;
  margin-inline: auto;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2.8rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  letter-spacing: .02em;
}

.btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.btn-primary {
  background: var(--c-accent);
  color: var(--c-white);
  border-color: var(--c-accent);
  box-shadow: 0 4px 16px rgba(58, 175, 101, .3);
}

.btn-primary:hover {
  background: #32A05A;
  border-color: #32A05A;
  color: var(--c-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(58, 175, 101, .4);
}

.btn-outline {
  background: transparent;
  color: var(--c-white);
  border: 2px solid rgba(255, 255, 255, .25);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .06);
}

.btn-secondary {
  background: var(--c-surface);
  color: var(--c-green);
  border: 2px solid var(--c-border);
}

.btn-secondary:hover {
  border-color: var(--c-green);
  background: var(--c-surface2);
}

/* ═══════════════════════════ SECTION HEADINGS ═══════════════════════════ */
.s-eyebrow {
  font-family: var(--font-hand);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--c-accent);
  margin-bottom: .5rem;
  display: block;
}

.s-h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--c-dark);
}

.s-h2 em {
  font-style: italic;
  color: var(--c-accent);
}

.s-body {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--c-dim);
  max-width: 500px;
}

.s-center {
  text-align: center;
}

.s-center .s-body {
  margin-inline: auto;
}

/* ═══════════════════════════ NEUANKÜNDIGUNG: EDELSCHWEIN ═══════════════════════════ */
.announcement-sec {
  padding: 5rem 0;
  background: var(--c-bg);
  position: relative;
}

.announcement-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
  position: relative;
  overflow: hidden;
}

.announcement-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--c-green), var(--c-accent), var(--c-gold), var(--c-accent));
}

.announcement-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.announcement-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem .95rem;
  border-radius: 999px;
  background: var(--c-green-l);
  color: var(--c-green-d);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(58, 175, 101, .25);
  animation: pulse-dot 2s infinite ease-in-out;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: .7; }
}

.announcement-title {
  font-family: var(--font-head);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--c-dark);
  line-height: 1.22;
  margin-bottom: .9rem;
}

.announcement-lead {
  font-size: 1.05rem;
  color: var(--c-mid);
  line-height: 1.7;
  margin-bottom: 1.6rem;
}

.announcement-features {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  margin-bottom: 2rem;
}

.a-feat {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .94rem;
  color: var(--c-dark);
  line-height: 1.5;
}

.a-feat-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--c-green-l);
  color: var(--c-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .85rem;
  font-weight: 800;
  margin-top: 1px;
}

.announcement-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.announcement-hint {
  font-size: .85rem;
  color: var(--c-dim);
  line-height: 1.6;
  margin: 0;
  padding-top: 1.2rem;
  border-top: 1px dashed var(--c-border);
}

.announcement-hint a {
  color: var(--c-accent);
  text-decoration: underline;
  font-weight: 600;
}

.announcement-poster-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.announcement-poster {
  position: relative;
  max-width: 380px;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .12);
  border: 1px solid var(--c-border);
  transition: transform .35s ease, box-shadow .35s ease;
  background: var(--c-surface2);
}

.announcement-poster:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .16);
}

.announcement-poster img {
  width: 100%;
  height: auto;
  display: block;
}

.poster-zoom-btn {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(26, 26, 24, .85);
  color: #ffffff;
  padding: .4rem .85rem;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  backdrop-filter: blur(4px);
  transition: all var(--transition);
  border: 1px solid rgba(255, 255, 255, .2);
}

.poster-zoom-btn:hover {
  background: var(--c-accent);
  color: var(--c-white);
  border-color: transparent;
}

.product-card {
  background: var(--c-surface);
  border: 2px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--c-green), var(--c-accent), var(--c-green));
  z-index: 1;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--c-accent);
}

.product-card-img {
  aspect-ratio: 4/3;
  background: var(--c-surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.product-card:hover .product-card-img img {
  transform: scale(1.03);
}

.product-card-body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-body h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--c-dark);
  margin-bottom: .3rem;
}

.product-card-body p {
  font-size: .86rem;
  font-weight: 400;
  color: var(--c-dim);
  line-height: 1.65;
}

.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: auto;
  padding-top: .8rem;
  font-size: .84rem;
  font-weight: 600;
  color: var(--c-accent);
  transition: gap var(--transition);
}

.product-card:hover .product-card-link {
  gap: .65rem;
}

/* ═══════════════════════════ SPLIT SECTIONS ═══════════════════════════ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-visual {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 3px solid var(--c-border);
  box-shadow: var(--shadow-md);
}

.split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ═══════════════════════════ INFO SECTION (DARK) ═══════════════════════════ */
.info-dark {
  background: var(--c-dark);
  padding: 5rem 0;
  color: var(--c-white);
  position: relative;
  background-image:
    repeating-linear-gradient(88deg,
      transparent,
      transparent 40px,
      rgba(255, 255, 255, .015) 40px,
      rgba(255, 255, 255, .015) 41px),
    linear-gradient(180deg, var(--c-dark), var(--c-dark2));
}

.info-dark::before,
.info-dark::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--c-accent), var(--c-green), var(--c-accent), transparent);
}

.info-dark::before {
  top: 0;
}

.info-dark::after {
  bottom: 0;
}

.info-dark .s-h2 {
  color: var(--c-white);
}

.info-dark .s-h2 em {
  color: var(--c-accent);
}

.info-dark .s-body {
  color: rgba(255, 255, 255, .45);
}

.info-dark .s-eyebrow {
  color: var(--c-accent);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.feature-tile {
  background: rgba(255, 255, 255, .04);
  border: 2px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-md);
  padding: 2rem 1.6rem;
  transition: all var(--transition);
}

.feature-tile:hover {
  background: rgba(255, 255, 255, .07);
  border-color: var(--c-accent);
  transform: translateY(-3px);
}

.feature-tile .ft-icon {
  margin-bottom: 1rem;
}

.feature-tile .ft-icon img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-accent);
}

.feature-tile .ft-svg-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(58, 175, 101, .15);
  border-radius: var(--radius-sm);
  color: var(--c-accent);
  margin-bottom: 1rem;
}

.feature-tile .ft-svg-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
}

.feature-tile h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--c-white);
  font-weight: 600;
  margin-bottom: .5rem;
}

.feature-tile p {
  font-size: .84rem;
  font-weight: 400;
  color: rgba(255, 255, 255, .42);
  line-height: 1.7;
}

/* ═══════════════════════════ GALLERY ═══════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid rgba(0, 0, 0, .05);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}

.gallery-item:hover {
  transform: translateY(-4px);
  border-color: var(--c-accent);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#galerie {
  background: var(--c-surface2);
}

/* ═══════════════════════════ KONTAKT SECTION ═══════════════════════════ */
.kontakt-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}

.k-info {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.k-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem;
  background: var(--c-surface);
  border: 2px solid var(--c-border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.k-row:hover {
  border-color: var(--c-accent);
  box-shadow: var(--shadow-sm);
}

.k-ico {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  background: var(--c-green-l);
  color: var(--c-green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.k-ico svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.k-row h4 {
  font-family: var(--font-hand);
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-accent);
  margin-bottom: .2rem;
}

.k-row p {
  font-size: .88rem;
  color: var(--c-mid);
  line-height: 1.55;
  font-weight: 400;
}

/* Form */
.k-form {
  display: flex;
  flex-direction: column;
  gap: .9rem;
}

.row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
}

.k-field {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.k-field label {
  font-family: var(--font-hand);
  font-size: 1rem;
  font-weight: 500;
  color: var(--c-dim);
}

.k-field input,
.k-field textarea,
.k-field select {
  background: var(--c-surface);
  border: 2px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: .85rem 1rem;
  color: var(--c-dark);
  font-family: var(--font-body);
  font-size: .92rem;
  font-weight: 400;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.k-field input:focus,
.k-field textarea:focus,
.k-field select:focus {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(58, 175, 101, .1);
}

.k-field input::placeholder,
.k-field textarea::placeholder {
  color: var(--c-dim);
  opacity: .5;
}

.k-field textarea {
  min-height: 120px;
  resize: vertical;
}

.btn-submit {
  background: var(--c-accent);
  color: var(--c-white);
  border: 2px solid var(--c-accent);
  border-radius: var(--radius-sm);
  padding: .9rem 2.4rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  align-self: flex-start;
  transition: all var(--transition);
  box-shadow: 0 4px 14px rgba(58, 175, 101, .25);
}

.btn-submit:hover {
  background: #32A05A;
  border-color: #32A05A;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(58, 175, 101, .35);
}

#sent-msg {
  display: none;
  font-size: .88rem;
  color: var(--c-accent);
  font-weight: 500;
  margin-top: .3rem;
}

/* ═══════════════════════════ PAGE HERO (Subpages) ═══════════════════════════ */
.page-hero {
  background: var(--c-dark);
  padding: 8rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(45, 106, 63, .25) 0%, transparent 70%),
    var(--c-dark);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.page-hero-eyebrow {
  font-family: var(--font-hand);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--c-accent);
  margin-bottom: .5rem;
  display: block;
}

.page-hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--c-white);
}

.page-hero-h1 em {
  font-style: italic;
  color: var(--c-accent);
}

.page-hero-sub {
  margin-top: 1rem;
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255, 255, 255, .7);
  max-width: 500px;
  margin-inline: auto;
  line-height: 1.7;
}

/* ═══════════════════════════ PRODUKTE OVERVIEW GRID ═══════════════════════════ */
.produkte-overview-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.overview-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--c-surface);
  border: 2px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.overview-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--c-accent);
}

.overview-card:nth-child(even) {
  direction: rtl;
}

.overview-card:nth-child(even) .overview-card-body,
.overview-card:nth-child(even) .overview-card-img {
  direction: ltr;
}

.overview-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--c-surface2);
}

.overview-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.overview-card:hover .overview-card-img img {
  transform: scale(1.03);
}

.overview-card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, .6);
  backdrop-filter: blur(8px);
  color: var(--c-white);
  border: 1.5px solid var(--c-accent);
  border-radius: var(--radius-sm);
  padding: .35rem .8rem;
  font-size: .8rem;
  font-weight: 500;
}

.overview-card-body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .8rem;
}

.overview-card-eyebrow {
  font-family: var(--font-hand);
  font-size: 1.1rem;
  color: var(--c-accent);
  font-weight: 600;
}

.overview-card-body h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--c-dark);
}

.overview-card-body h2 em {
  font-style: italic;
  color: var(--c-accent);
}

.overview-card-body p {
  font-size: .95rem;
  color: var(--c-dim);
  line-height: 1.7;
}

/* Original Pill Tag Styling */
.overview-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .4rem;
}

.overview-card-features span {
  font-size: .8rem;
  color: var(--c-mid);
  background: var(--c-surface2);
  padding: .3rem .7rem;
  border-radius: var(--radius-sm);
}

.overview-card-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: .8rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--c-accent);
  transition: gap var(--transition);
}

.overview-card:hover .overview-card-link {
  gap: .65rem;
}

/* ═══════════════════════════ MAP SECTION ═══════════════════════════ */
.kontakt-map-section {
  background: var(--c-surface2);
  padding: 5rem 0;
}

.kontakt-map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--c-border);
  box-shadow: var(--shadow-md);
}

/* ── INFO BANNER FOOTER ATTACHED ── */
.info-banner.footer-attached,
.info-banner:has(+ footer) {
  margin-bottom: 0 !important;
  border-top-left-radius: 24px !important;
  border-top-right-radius: 24px !important;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border-bottom: 2px solid var(--c-accent) !important;
  box-shadow: 0 2px 16px rgba(58, 175, 101, 0.25);
}

.info-banner.footer-attached::after,
.info-banner:has(+ footer)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--c-accent) 20%, #3AAF65 50%, var(--c-accent) 80%, transparent 100%);
  box-shadow: 0 0 12px rgba(58, 175, 101, 0.6), 0 0 24px rgba(58, 175, 101, 0.3);
  pointer-events: none;
}

/* ═══════════════════════════ FOOTER ═══════════════════════════ */
footer {
  background: var(--c-dark2);
  color: rgba(255, 255, 255, .5);
  padding-top: 4rem;
  position: relative;
}

.footer-top {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand img {
  height: 60px;
  width: auto;
  margin-bottom: 1rem;
  display: block;
}

.footer-brand .fb-slogan {
  font-family: var(--font-hand);
  font-size: 1.2rem;
  color: var(--c-accent);
  display: block;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: .88rem;
  line-height: 1.7;
}

.footer-brand a {
  color: var(--c-accent);
  transition: color var(--transition);
}

.footer-brand a:hover {
  color: var(--c-white);
}

.footer-nav h4,
.footer-links h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--c-white);
  margin-bottom: 1.2rem;
}

.footer-nav a,
.footer-links a {
  display: block;
  font-size: .86rem;
  color: rgba(255, 255, 255, .5);
  padding: .3rem 0;
  transition: color var(--transition);
}

.footer-nav a:hover,
.footer-links a:hover {
  color: var(--c-accent);
}

.footer-bottom {
  max-width: 1050px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: rgba(255, 255, 255, .35);
}

.footer-bottom a {
  color: rgba(255, 255, 255, .45);
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: var(--c-accent);
}

/* ═══════════════════════════ REVEAL ANIMATIONS (DEAKTIVIERT) ═══════════════════════════ */

/* ═══════════════════════════ MOBILE NAV OVERLAY ═══════════════════════════ */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 601;
  background: var(--c-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow-y: auto;
  padding: 5rem 1.5rem 3rem;
  gap: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav a {
  font-size: 1.2rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .85);
  transition: color var(--transition);
}

.mobile-nav a:hover {
  color: var(--c-accent);
}

.mobile-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  font-size: 1.8rem;
  color: var(--c-white);
  cursor: pointer;
  background: none;
  border: none;
  padding: .5rem;
}

.mobile-nav a[href*="eier.php"],
.mobile-nav a[href*="gefluegel.php"],
.mobile-nav a[href*="rind.php"],
.mobile-nav a[href*="huehner.php"],
.mobile-nav a[href*="kuehe.php"],
.mobile-nav a[href*="https://www.jemako-shop.com/iserig-hof/de/"]{
  font-size: .95rem;
  opacity: .7;
  margin-top: -.5rem;
}

/* ═══════════════════════════ RESPONSIVE ═══════════════════════════ */
@media (max-width: 960px) {
  .split,
  .kontakt-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .announcement-grid {
    grid-template-columns: 1fr;
    gap: 2.8rem;
  }

  .announcement-card {
    padding: 2.5rem 1.8rem;
  }

  .announcement-title {
    font-size: 1.85rem;
  }

  .announcement-poster {
    max-width: 340px;
    margin: 0 auto;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

@media (max-width: 760px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

  .overview-card,
  .overview-card:nth-child(even) {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .overview-card-img {
    aspect-ratio: 16/9;
  }

  .overview-card-body {
    padding: 1.8rem 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  section {
    padding: 4rem 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: .8rem;
    text-align: center;
  }
}