@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Cormorant+Garamond:wght@600;700&display=swap');

:root {
  --fz-white: #FFFFFF;
  --fz-cream: #FFFEF7;
  --fz-bg: #F8FBF3;
  --fz-bg-warm: #FFF8F0;
  --fz-lime: #7CB518;
  --fz-lime-dark: #5A8A0E;
  --fz-lime-light: #E6F4CC;
  --fz-lime-pale: #F0F9E0;
  --fz-citrus: #FF9F1C;
  --fz-citrus-dark: #E88A0C;
  --fz-citrus-light: #FFF0D9;
  --fz-berry: #E63946;
  --fz-berry-light: #FDE8EA;
  --fz-teal: #2EC4B6;
  --fz-teal-light: #D7F5F2;
  --fz-violet: #6C63FF;
  --fz-text: #1D2B1F;
  --fz-text-mid: #3A5240;
  --fz-text-soft: #6B8870;
  --fz-text-muted: #96AD9A;
  --fz-border: #D4E5D0;
  --fz-shadow-sm: 0 2px 12px rgba(30, 80, 40, 0.06);
  --fz-shadow: 0 8px 30px rgba(30, 80, 40, 0.08);
  --fz-shadow-lg: 0 16px 56px rgba(30, 80, 40, 0.12);
  --fz-shadow-glow: 0 0 40px rgba(124, 181, 24, 0.15);
  --fz-radius: 24px;
  --fz-radius-md: 16px;
  --fz-radius-sm: 10px;
  --fz-radius-xs: 6px;
  --fz-ease: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Nunito', ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--fz-text);
  background: var(--fz-bg);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: color var(--fz-ease); }
a:hover { color: var(--fz-lime); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ========== WRAPPER ========== */
.fz-wrap {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ========== TOP BAR (HEADER) ========== */
.fz-topbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(248, 251, 243, 0.88);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--fz-border);
  transition: box-shadow var(--fz-ease);
}
.fz-topbar.pinned {
  box-shadow: var(--fz-shadow);
}
.fz-topbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}
.fz-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--fz-text);
  letter-spacing: -0.02em;
}
.fz-brand:hover { color: var(--fz-text); text-decoration: none; }
.fz-brand-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fz-lime), var(--fz-citrus));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 16px;
  color: #fff;
}
.fz-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}
.fz-menu-item {
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  color: var(--fz-text-mid);
  transition: all var(--fz-ease);
}
.fz-menu-item:hover {
  background: var(--fz-lime-pale);
  color: var(--fz-lime-dark);
  text-decoration: none;
}
.fz-topbar-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--fz-lime), var(--fz-lime-dark));
  color: #fff !important;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  transition: all var(--fz-ease);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(124, 181, 24, 0.25);
}
.fz-topbar-action:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(124, 181, 24, 0.35);
  text-decoration: none;
  color: #fff !important;
}
.fz-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.fz-hamburger i {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fz-text);
  border-radius: 2px;
  transition: all var(--fz-ease);
}

/* ========== MOBILE DRAWER ========== */
.fz-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 199;
  background: rgba(248, 251, 243, 0.97);
  backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.fz-drawer.open { display: flex; }
.fz-drawer a {
  font-size: 20px;
  font-weight: 700;
  color: var(--fz-text);
  padding: 10px 28px;
}
.fz-drawer-x {
  position: absolute;
  top: 18px;
  right: 24px;
  font-size: 30px;
  color: var(--fz-text);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}

/* ========== HERO BANNER ========== */
.fz-hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.fz-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.fz-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fz-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(248,251,243,0.96) 0%, rgba(248,251,243,0.8) 45%, rgba(248,251,243,0.15) 100%);
}
.fz-hero-inner {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  max-width: 580px;
}
.fz-hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 50px;
  background: var(--fz-lime-light);
  color: var(--fz-lime-dark);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: 0.01em;
}
.fz-hero-chip::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--fz-lime);
  box-shadow: 0 0 0 4px rgba(124,181,24,0.18);
}
.fz-hero-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(38px, 5.2vw, 60px);
  line-height: 1.08;
  color: var(--fz-text);
  margin-bottom: 18px;
}
.fz-hero-heading em {
  font-style: normal;
  background: linear-gradient(135deg, var(--fz-lime), var(--fz-citrus));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.fz-hero-sub {
  font-size: 17px;
  color: var(--fz-text-mid);
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 480px;
}
.fz-hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ========== BUTTONS ========== */
.fz-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  transition: all var(--fz-ease);
  border: 2px solid transparent;
  letter-spacing: 0.01em;
}
.fz-btn:hover { text-decoration: none; transform: translateY(-2px); }
.fz-btn-lime {
  background: linear-gradient(135deg, var(--fz-lime), var(--fz-lime-dark));
  color: #fff;
  border-color: var(--fz-lime);
  box-shadow: 0 4px 20px rgba(124,181,24,0.25);
}
.fz-btn-lime:hover {
  box-shadow: 0 8px 32px rgba(124,181,24,0.35);
  color: #fff;
}
.fz-btn-ghost {
  background: transparent;
  color: var(--fz-text-mid);
  border-color: var(--fz-border);
}
.fz-btn-ghost:hover {
  background: var(--fz-lime-pale);
  border-color: var(--fz-lime);
  color: var(--fz-lime-dark);
}
.fz-btn-white {
  background: #fff;
  color: var(--fz-lime-dark);
  border-color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.fz-btn-white:hover {
  background: var(--fz-lime-pale);
  border-color: var(--fz-lime-pale);
  color: var(--fz-lime-dark);
}

/* ========== SECTION COMMON ========== */
.fz-block {
  padding: 90px 0;
}
.fz-block-warm {
  background: var(--fz-bg-warm);
}
.fz-block-green {
  background: linear-gradient(135deg, #2D6A1E 0%, var(--fz-lime-dark) 100%);
  color: #fff;
}
.fz-block-dark {
  background: var(--fz-text);
  color: #fff;
}
.fz-title-area {
  text-align: center;
  margin-bottom: 52px;
}
.fz-title-area h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 44px);
  color: var(--fz-text);
  margin-bottom: 10px;
  line-height: 1.15;
}
.fz-block-green .fz-title-area h2,
.fz-block-dark .fz-title-area h2 {
  color: #fff;
}
.fz-title-area p {
  font-size: 16px;
  color: var(--fz-text-soft);
  max-width: 540px;
  margin: 0 auto;
}
.fz-block-green .fz-title-area p {
  color: rgba(255,255,255,0.75);
}

/* ========== ABOUT / INTRO SPLIT ========== */
.fz-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.fz-split-pic {
  border-radius: var(--fz-radius);
  overflow: hidden;
  box-shadow: var(--fz-shadow-lg);
}
.fz-split-pic img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.fz-split-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(26px, 3vw, 40px);
  margin-bottom: 16px;
  line-height: 1.15;
}
.fz-split-body p {
  font-size: 16px;
  color: var(--fz-text-mid);
  line-height: 1.75;
  margin-bottom: 14px;
}
.fz-split-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.fz-split-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  color: var(--fz-text-mid);
}
.fz-split-list li::before {
  content: '';
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--fz-lime-light);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%237CB518'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ========== BENEFIT CARDS ========== */
.fz-perks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.fz-perk {
  background: var(--fz-white);
  border-radius: var(--fz-radius);
  padding: 36px 24px;
  text-align: center;
  border: 1px solid var(--fz-border);
  box-shadow: var(--fz-shadow-sm);
  transition: all var(--fz-ease);
  position: relative;
  overflow: hidden;
}
.fz-perk::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 4px 4px 0 0;
  opacity: 0;
  transition: opacity var(--fz-ease);
}
.fz-perk:hover {
  transform: translateY(-8px);
  box-shadow: var(--fz-shadow-lg);
}
.fz-perk:hover::before { opacity: 1; }
.fz-perk:nth-child(1)::before { background: var(--fz-citrus); }
.fz-perk:nth-child(2)::before { background: var(--fz-lime); }
.fz-perk:nth-child(3)::before { background: var(--fz-berry); }
.fz-perk:nth-child(4)::before { background: var(--fz-teal); }
.fz-perk-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 18px;
}
.fz-perk:nth-child(1) .fz-perk-icon { background: var(--fz-citrus-light); }
.fz-perk:nth-child(2) .fz-perk-icon { background: var(--fz-lime-light); }
.fz-perk:nth-child(3) .fz-perk-icon { background: var(--fz-berry-light); }
.fz-perk:nth-child(4) .fz-perk-icon { background: var(--fz-teal-light); }
.fz-perk h3 {
  font-weight: 800;
  font-size: 17px;
  margin-bottom: 8px;
  color: var(--fz-text);
}
.fz-perk p {
  font-size: 14px;
  color: var(--fz-text-soft);
  line-height: 1.6;
}

/* ========== GALLERY MOSAIC ========== */
.fz-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 14px;
}
.fz-mosaic-item {
  border-radius: var(--fz-radius-md);
  overflow: hidden;
  position: relative;
}
.fz-mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.fz-mosaic-item:hover img {
  transform: scale(1.05);
}
.fz-mosaic-item:nth-child(1) {
  grid-row: 1 / 3;
}
.fz-mosaic-item:nth-child(1) img {
  height: 100%;
}

/* ========== RECIPES CARDS ========== */
.fz-recipe-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.fz-recipe {
  display: flex;
  background: var(--fz-white);
  border-radius: var(--fz-radius);
  overflow: hidden;
  border: 1px solid var(--fz-border);
  box-shadow: var(--fz-shadow-sm);
  transition: all var(--fz-ease);
}
.fz-recipe:hover {
  transform: translateY(-5px);
  box-shadow: var(--fz-shadow-lg);
}
.fz-recipe-photo {
  width: 200px;
  flex-shrink: 0;
}
.fz-recipe-photo img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}
.fz-recipe-info {
  padding: 26px;
  display: flex;
  flex-direction: column;
}
.fz-recipe-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  align-self: flex-start;
}
.fz-badge-citrus { background: var(--fz-citrus-light); color: var(--fz-citrus-dark); }
.fz-badge-green { background: var(--fz-lime-light); color: var(--fz-lime-dark); }
.fz-badge-berry { background: var(--fz-berry-light); color: var(--fz-berry); }
.fz-badge-fresh { background: var(--fz-teal-light); color: #0D7D71; }
.fz-recipe-name {
  font-weight: 800;
  font-size: 19px;
  margin-bottom: 6px;
  color: var(--fz-text);
}
.fz-recipe-desc {
  font-size: 14px;
  color: var(--fz-text-soft);
  margin-bottom: 14px;
  line-height: 1.6;
}
.fz-recipe-steps {
  margin: 0;
  padding-left: 20px;
  list-style: decimal;
  font-size: 13px;
  color: var(--fz-text-muted);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.fz-recipe-steps li { list-style: decimal; }

/* ========== TESTIMONIALS ========== */
.fz-voices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.fz-voice {
  background: var(--fz-white);
  border-radius: var(--fz-radius);
  padding: 30px;
  border: 1px solid var(--fz-border);
  box-shadow: var(--fz-shadow-sm);
  transition: all var(--fz-ease);
  position: relative;
}
.fz-voice::before {
  content: '\201C';
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 48px;
  font-family: 'Cormorant Garamond', serif;
  color: var(--fz-lime-light);
  line-height: 1;
}
.fz-voice:hover {
  transform: translateY(-4px);
  box-shadow: var(--fz-shadow);
}
.fz-voice-rating {
  color: var(--fz-citrus);
  font-size: 16px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.fz-voice-quote {
  font-size: 15px;
  color: var(--fz-text-mid);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}
.fz-voice-who {
  display: flex;
  align-items: center;
  gap: 12px;
}
.fz-voice-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
}
.fz-voice-avatar-a { background: var(--fz-lime); }
.fz-voice-avatar-b { background: var(--fz-citrus); }
.fz-voice-avatar-c { background: var(--fz-violet); }
.fz-voice-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--fz-text);
}
.fz-voice-role {
  font-size: 12px;
  color: var(--fz-text-muted);
}

/* ========== FAQ ACCORDION ========== */
.fz-qa-list {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fz-qa {
  background: var(--fz-white);
  border-radius: var(--fz-radius-md);
  border: 1px solid var(--fz-border);
  overflow: hidden;
  transition: box-shadow var(--fz-ease);
}
.fz-qa:hover {
  box-shadow: var(--fz-shadow-sm);
}
.fz-qa-trigger {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 700;
  font-size: 15px;
  color: var(--fz-text);
  text-align: left;
  transition: color var(--fz-ease);
}
.fz-qa-trigger:hover {
  color: var(--fz-lime);
}
.fz-qa-toggle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--fz-lime-pale);
  color: var(--fz-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: all var(--fz-ease);
  font-weight: 700;
}
.fz-qa[data-open="yes"] .fz-qa-toggle {
  background: var(--fz-lime);
  color: #fff;
  transform: rotate(45deg);
}
.fz-qa-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.fz-qa-body-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--fz-text-mid);
  line-height: 1.7;
}
.fz-qa[data-open="yes"] .fz-qa-body {
  max-height: 400px;
}

/* ========== ORDER FORM ========== */
.fz-form-box {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.fz-form-box h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(26px, 3.2vw, 40px);
  color: #fff;
  margin-bottom: 10px;
}
.fz-form-box > p {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  margin-bottom: 34px;
}
.fz-order-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}
.fz-form-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.fz-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.fz-field-label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.fz-field-input,
.fz-field-select,
.fz-field-textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--fz-radius-sm);
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 15px;
  font-family: 'Nunito', sans-serif;
  outline: none;
  transition: all var(--fz-ease);
}
.fz-field-input::placeholder,
.fz-field-textarea::placeholder {
  color: rgba(255,255,255,0.4);
}
.fz-field-input:focus,
.fz-field-select:focus,
.fz-field-textarea:focus {
  border-color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.13);
}
.fz-field-select option {
  background: #2D6A1E;
  color: #fff;
}
.fz-field-textarea {
  min-height: 90px;
  resize: vertical;
}
.fz-submit-btn {
  padding: 16px 36px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--fz-citrus), var(--fz-citrus-dark));
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: all var(--fz-ease);
  margin-top: 6px;
  box-shadow: 0 6px 24px rgba(255,159,28,0.3);
}
.fz-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(255,159,28,0.4);
}
.fz-impressum-ref {
  display: inline-block;
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.45) !important;
  text-decoration: underline !important;
  transition: color var(--fz-ease);
}
.fz-impressum-ref:hover {
  color: rgba(255,255,255,0.8) !important;
}
.fz-form-hint {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  text-align: center;
  margin-top: 6px;
}

/* ========== CONTACTS + MAP ========== */
.fz-touch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: stretch;
}
.fz-touch-data h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 22px;
}
.fz-touch-rows {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.fz-touch-line {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.fz-touch-ico {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--fz-lime-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.fz-touch-label {
  font-size: 12px;
  color: var(--fz-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.fz-touch-val {
  font-size: 15px;
  font-weight: 700;
  color: var(--fz-text);
}
.fz-touch-val a {
  color: var(--fz-lime-dark);
}
.fz-touch-val a:hover {
  text-decoration: underline;
}
.fz-mapbox {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: var(--fz-radius);
  border: 1px solid var(--fz-border);
  overflow: hidden;
  box-shadow: var(--fz-shadow);
}

/* ========== FOOTER ========== */
.fz-bottom {
  background: var(--fz-text);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 0;
}
.fz-bottom-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 40px;
}
.fz-bottom-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fz-bottom-brand {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 22px;
  color: #fff !important;
  margin-bottom: 4px;
}
.fz-bottom-brand:hover { text-decoration: none; }
.fz-bottom-about {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}
.fz-bottom-heading {
  font-weight: 800;
  font-size: 14px;
  color: #fff;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.fz-bottom-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  padding: 3px 0;
  transition: color var(--fz-ease);
}
.fz-bottom-col a:hover {
  color: var(--fz-citrus);
  text-decoration: none;
}
.fz-bottom-col p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}
.fz-bottom-line {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.fz-bottom-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.fz-bottom-links {
  display: flex;
  gap: 16px;
}
.fz-bottom-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.fz-bottom-links a:hover {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
}

/* ========== LEAFLET TWEAKS ========== */
.leaflet-container { background: #F0F9E0; }
.leaflet-control-attribution {
  background: rgba(255,255,255,0.85) !important;
  color: var(--fz-text-muted) !important;
  border-radius: 8px !important;
  font-size: 11px !important;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .fz-perks {
    grid-template-columns: repeat(2, 1fr);
  }
  .fz-recipe-row {
    grid-template-columns: 1fr;
  }
  .fz-voices {
    grid-template-columns: 1fr;
  }
  .fz-bottom-cols {
    grid-template-columns: 1fr 1fr;
  }
  .fz-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px 240px;
  }
  .fz-mosaic-item:nth-child(1) {
    grid-row: auto;
  }
}

@media (max-width: 768px) {
  .fz-menu, .fz-topbar-action { display: none; }
  .fz-hamburger { display: flex; }

  .fz-hero {
    min-height: 520px;
  }
  .fz-hero-bg::after {
    background: linear-gradient(180deg, rgba(248,251,243,0.95) 0%, rgba(248,251,243,0.7) 60%, rgba(248,251,243,0.3) 100%);
  }
  .fz-hero-inner {
    padding: 50px 0;
  }
  .fz-hero-heading {
    font-size: 34px;
  }
  .fz-hero-sub {
    font-size: 15px;
  }

  .fz-block {
    padding: 56px 0;
  }

  .fz-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .fz-split-pic img {
    height: 280px;
  }

  .fz-perks {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .fz-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 10px;
  }
  .fz-mosaic-item img {
    height: 220px;
  }

  .fz-recipe {
    flex-direction: column;
  }
  .fz-recipe-photo {
    width: 100%;
  }
  .fz-recipe-photo img {
    height: 200px;
    min-height: auto;
  }

  .fz-touch-grid {
    grid-template-columns: 1fr;
  }
  .fz-mapbox {
    min-height: 280px;
  }

  .fz-form-cols {
    grid-template-columns: 1fr;
  }

  .fz-bottom-cols {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .fz-bottom-line {
    flex-direction: column;
    align-items: flex-start;
  }
}
