/* ============================================================
   Fülscher Fleischwaren — page-home.css
   Hero-Hub · Hero-Portal · Service Nav · Warum · Automaten ·
   Aktuelles · Location Accordion · CTA · Portal v9.0
   Geladen: NUR is_front_page()
   ============================================================ */

/* ── Hero Hub (v9.1 — Glassmorphism Location Picker) ─────────── */
.hero-hub {
  position: relative;
  height: 100vh;
  min-height: 600px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
}

.hero-hub__bg-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-hub__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  transform: scale(1.04);
  filter: saturate(0.85) brightness(0.8);
}

.hero-hub__bg.is-active {
  opacity: 1;
  transform: scale(1);
  filter: saturate(1) brightness(0.85);
}

.hero-hub__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.15) 0%,
      rgba(0, 0, 0, 0.1) 40%,
      rgba(0, 0, 0, 0.55) 100%);
}

.hero-hub__header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 48px 60px 0;
  pointer-events: none;
}

.hero-hub__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 12px;
}

.hero-hub__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  margin: 0;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-hub__picker {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 0 40px;
}

.hero-hub__glass-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  padding: 10px;
  display: flex;
  gap: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hero-hub__panel {
  flex: 1;
  position: relative;
  border-radius: 16px;
  padding: 20px 24px;
  cursor: pointer;
  overflow: hidden;
  transition: flex 0.7s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s ease;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
}

.hero-hub__panel::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0);
  transition: background 0.4s ease;
}

.hero-hub__panel:hover::before,
.hero-hub__panel.is-active::before {
  background: rgba(255, 255, 255, 0.1);
}

.hero-hub__panel.is-active {
  flex: 2.4;
  background: rgba(0, 140, 194, 0.25);
  border: 1px solid rgba(0, 140, 194, 0.4);
}

.hero-hub__title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  font-weight: 700;
  color: #fff;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
  line-height: 1.2;
}

.hero-hub__focus {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: opacity 0.3s;
}

.hero-hub__details {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.55s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, margin-top 0.4s ease;
  margin-top: 0;
}

.hero-hub__panel.is-active .hero-hub__details,
.hero-hub__panel:hover .hero-hub__details {
  max-height: 200px;
  opacity: 1;
  margin-top: 12px;
}

.hero-hub__hours {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-hub__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all 0.35s ease;
  width: fit-content;
}

.hero-hub__btn:hover {
  background: #fff;
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.hero-hub__btn--shop {
  background: rgba(0, 140, 194, 0.22);
  border-color: rgba(0, 140, 194, 0.45);
}

.hero-hub__btn--shop:hover {
  background: var(--primary);
  color: #fff;
}

.hero-hub__btn-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-hub__address {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 3px 0 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
  transition: color 0.3s;
}

.hero-hub__panel.is-active .hero-hub__address {
  color: rgba(255, 255, 255, 0.72);
}

.hero-hub__phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 12px;
}

.hero-hub__panel-eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0, 195, 255, 0.9);
  margin: 0;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero-hub__panel.is-active .hero-hub__panel-eyebrow {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .hero-hub {
    padding-bottom: 24px;
    align-items: flex-end;
  }

  .hero-hub__header {
    padding: 90px 20px 0;
  }

  .hero-hub__headline {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .hero-hub__picker {
    padding: 0;
  }

  .hero-hub__glass-card {
    flex-direction: row;
    gap: 12px;
    padding: 0 20px 20px;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .hero-hub__glass-card::-webkit-scrollbar {
    display: none;
  }

  .hero-hub__panel {
    flex: 0 0 85% !important;
    scroll-snap-align: center;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  .hero-hub__panel.is-active {
    background: rgba(0, 140, 194, 0.35);
    border-color: rgba(0, 140, 194, 0.5);
  }

  /* Always show panel content on mobile so users don't have to tap just to see hours/address */
  .hero-hub__panel .hero-hub__details {
    max-height: none;
    opacity: 1;
    margin-top: 12px;
  }

  .hero-hub__panel .hero-hub__panel-eyebrow {
    opacity: 1;
    transform: none;
  }

  .hero-hub__panel .hero-hub__address {
    color: rgba(255, 255, 255, 0.72);
  }

  .hero-hub__title {
    font-size: 1.3rem;
  }
}

/* ── Sticky Service Nav ───────────────────────────────────── */
.service-nav-tabs {
  position: relative;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 20px 0;
  margin-bottom: 40px;
}

.service-nav-pill {
  display: inline-flex;
  gap: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 140, 194, 0.08);
  border-radius: 100px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  pointer-events: auto;
}

.service-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-dark);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-nav-icon {
  opacity: 0.7;
  transition: opacity 0.3s;
}

.service-nav-link:hover {
  background: rgba(0, 140, 194, 0.08);
  color: var(--primary);
}

.service-nav-link:hover .service-nav-icon {
  opacity: 1;
}

.service-nav-link.is-active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 140, 194, 0.3);
}

.service-nav-link.is-active .service-nav-icon {
  opacity: 1;
}

@media (max-width: 768px) {
  .service-nav-tabs {
    padding: 10px 16px;
    margin-bottom: 24px;
  }

  .service-nav-pill {
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px;
    border-radius: 16px;
    width: 100%;
  }

  .service-nav-link {
    width: 100%;
    justify-content: center;
    padding: 10px 16px;
    font-size: 0.85rem;
  }
}

/* ── Warum Fülscher Section ───────────────────────────────── */
.warum-section {
  padding: 120px 0;
  background: transparent;
  position: relative;
}

.warum-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 140, 194, 0.12) 50%, transparent 100%);
}

.warum-section__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 64px;
}

.warum-section__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.warum-section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 12px;
  line-height: 1.1;
}

.warum-section__intro {
  font-size: 1.0625rem;
  color: rgba(17, 24, 39, 0.55);
  margin: 0;
}

.warum-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.warum-card {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.warum-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 140, 194, 0.1);
}

.warum-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(0, 140, 194, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.warum-card__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 4px 0 0;
  line-height: 1.3;
}

.warum-card__text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(17, 24, 39, 0.62);
  margin: 0;
  flex: 1;
}

.warum-card__stat {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.warum-card__stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.warum-card__stat-label {
  font-size: 0.775rem;
  color: rgba(17, 24, 39, 0.5);
  line-height: 1.3;
}

.warum-section__quote {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.warum-section__quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-style: italic;
  font-weight: 600;
  color: rgba(17, 24, 39, 0.55);
  line-height: 1.65;
  margin: 0;
  padding: 32px 40px;
  background: rgba(0, 140, 194, 0.04);
  border-radius: 16px;
  border-left: 3px solid var(--primary);
  text-align: left;
}

@media (max-width: 1024px) {
  .warum-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .warum-section {
    padding: 80px 0;
  }

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

  .warum-section__quote blockquote {
    padding: 24px;
  }
}

/* ── Portal Sections ─────────────────────────────────────── */
.portal-sections {
  background: transparent;
}

.portal-section {
  padding: 100px 0;
  display: none;
  opacity: 0;
  transform: translateY(15px);
}

.portal-section.is-active {
  display: block;
}

.portal-section--alt {
  background: transparent;
}

@media (max-width: 768px) {
  .portal-section {
    padding: 60px 0;
  }
}

/* ── Automaten Showcase ─────────────────────────────────── */
.automaten-showcase {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: start;
}

.automaten-showcase__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.automaten-showcase__img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.automaten-showcase__feature-list {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.automat-feature {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.automat-feature__icon {
  color: var(--primary);
}

.automaten-locations {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.automat-location-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.automat-location-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(0, 140, 194, 0.1);
}

.automat-location-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(0, 140, 194, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 20px;
}

.automat-location-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.automat-location-card__address {
  font-style: normal;
  font-size: 0.9375rem;
  color: rgba(17, 24, 39, 0.6);
  line-height: 1.6;
  margin-bottom: 16px;
}

.automat-location-card__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
}

.automat-location-card__status--active {
  color: #059669;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #059669;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

@media (max-width: 1024px) {
  .automaten-showcase {
    grid-template-columns: 1fr;
  }

  .automaten-showcase__img {
    height: 350px;
  }
}

/* ── Angebot Cards ─────────────────────────────────────── */
.angebot-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.angebot-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.angebot-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.angebot-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.angebot-card:hover .angebot-card__image img {
  transform: scale(1.08);
}

.angebot-card__content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.angebot-card__name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.angebot-card__desc {
  font-size: 0.9375rem;
  color: rgba(17, 24, 39, 0.6);
  margin-bottom: 16px;
  flex: 1;
}

.angebot-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.angebot-card__price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.angebot-card__btn {
  padding: 10px 20px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.angebot-card__btn:hover {
  background: #006fa0;
  transform: scale(1.05);
}

/* ── Aktuelles Grid & Cards ─────────────────────────────── */
.aktuelles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.aktuelles-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.aktuelles-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.aktuelles-card--has-image .aktuelles-card__image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.aktuelles-card--has-image .aktuelles-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.aktuelles-card:hover .aktuelles-card__image img {
  transform: scale(1.05);
}

.aktuelles-card--text-only .aktuelles-card__content {
  padding-top: 32px;
}

.aktuelles-card--text-only::before {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent-1));
}

.aktuelles-card__content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.aktuelles-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.aktuelles-card__date {
  font-size: 0.8125rem;
  color: rgba(17, 24, 39, 0.5);
}

.aktuelles-card__category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  background: rgba(0, 140, 194, 0.1);
  padding: 4px 10px;
  border-radius: 100px;
}

.aktuelles-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.aktuelles-card__excerpt {
  font-size: 0.9375rem;
  color: rgba(17, 24, 39, 0.6);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.aktuelles-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  transition: gap 0.3s ease;
}

.aktuelles-card__link:hover {
  gap: 12px;
}

@media (max-width: 1024px) {
  .aktuelles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .aktuelles-grid {
    grid-template-columns: 1fr;
  }
}

/* ── CTA Section ─────────────────────────────────────────── */
.cta-section {
  padding: 100px 0 140px;
  background: linear-gradient(180deg, var(--bg-offwhite) 0%, #fff 50%, var(--bg-offwhite) 100%);
}

.cta-block {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 60px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-block__content {
  position: relative;
  z-index: 1;
}

.cta-block__title {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.cta-block__text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 400px;
}

.cta-block__actions {
  display: flex;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.btn-pill--primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: #fff;
  color: var(--text-dark);
  border-radius: 100px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-pill--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-pill--ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-pill--ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 900px) {
  .cta-block {
    flex-direction: column;
    text-align: center;
    padding: 48px 40px;
  }

  .cta-block__text {
    max-width: none;
  }
}

/* ── Hero Cinematic Split ───────────────────────────────── */
.hero-cinematic {
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 160px 80px 100px;
  gap: 80px;
  position: relative;
  overflow: hidden;
}

.hero-cinematic__copy {
  flex: 1;
  padding-right: 20px;
  z-index: 2;
  position: relative;
}

.hero-cinematic__eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  opacity: 0;
  margin: 0 0 28px;
  will-change: transform, opacity;
}

.hero-cinematic__title {
  font-size: clamp(3.6rem, 7vw, 6.5rem);
  line-height: 1.0;
  margin: 0 0 36px;
  font-weight: 800;
  overflow: hidden;
}

.hero-cinematic__title .word {
  display: inline-block;
  overflow: hidden;
  line-height: 1.15;
  will-change: transform;
  vertical-align: bottom;
}

.hero-cinematic__title .word:nth-child(odd) {
  color: var(--text-dark);
}

.hero-cinematic__title .word:nth-child(even) {
  color: transparent;
  -webkit-text-stroke: 2px var(--primary);
}

.hero-cinematic__slogan {
  font-size: 1.25rem;
  line-height: 1.65;
  opacity: 0;
  color: var(--text-dark);
  margin: 0 0 48px;
  will-change: transform, opacity;
}

.hero-cinematic__cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-cinematic__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  border-radius: var(--radius-xl);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  transition: var(--transition-smooth);
  opacity: 0;
  will-change: transform, opacity;
}

.hero-cinematic__btn--primary {
  background: var(--primary);
  color: var(--bg-white);
  box-shadow: 0 8px 32px rgba(0, 140, 194, 0.35);
}

.hero-cinematic__btn--primary:hover {
  background: #006fa0;
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 140, 194, 0.45);
}

.hero-cinematic__btn--ghost {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid rgba(17, 24, 39, 0.2);
}

.hero-cinematic__btn--ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
}

.hero-cinematic__visual {
  flex: 1;
  height: 580px;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero-cinematic__image-mask {
  width: 100%;
  height: 100%;
  clip-path: inset(100% 0 0 0);
  overflow: hidden;
  border-radius: var(--radius-lg);
  will-change: clip-path;
}

.hero-cinematic__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  will-change: transform;
  display: block;
}

.hero-cinematic__noise {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  pointer-events: none;
  z-index: 3;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  opacity: 0.06;
  mix-blend-mode: overlay;
}

/* ── Hero Portal v5.0 ───────────────────────────────────── */
.hero-portal {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: stretch;
  padding: clamp(100px, 14vh, 160px) 0 80px;
  overflow: hidden;
}

.hero-portal__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-portal__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transform: scale(1.06);
  will-change: transform, opacity;
  filter: saturate(1.05);
}

.hero-portal__bg-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(250, 250, 250, 0.94) 0%,
      rgba(250, 250, 250, 0.78) 38%,
      rgba(250, 250, 250, 0.35) 58%,
      rgba(0, 0, 0, 0.12) 100%);
  z-index: 2;
}

.hero-portal__bg-hover {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  will-change: opacity, transform;
  transition: opacity 0.5s ease;
}

.hero-portal__noise {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  mix-blend-mode: overlay;
}

.hero-portal__inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: end;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.hero-portal__copy--asym {
  padding-bottom: clamp(24px, 4vh, 48px);
  max-width: 42rem;
}

.hero-portal__eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  opacity: 0;
  margin: 0 0 24px;
  will-change: transform, opacity;
}

.hero-portal__title {
  font-size: clamp(3.2rem, 6.5vw, 6rem);
  line-height: 0.98;
  margin: 0 0 28px;
  font-weight: 800;
  overflow: hidden;
}

.hero-portal__title .word {
  display: inline-block;
  overflow: hidden;
  line-height: 1.12;
  will-change: transform;
  vertical-align: bottom;
}

.hero-portal__title .word:nth-child(odd) {
  color: var(--text-dark);
}

.hero-portal__title .word:nth-child(even) {
  color: transparent;
  -webkit-text-stroke: 2px var(--primary);
}

.hero-portal__slogan {
  font-size: 1.15rem;
  line-height: 1.65;
  opacity: 0;
  color: var(--text-dark);
  margin: 0 0 36px;
  max-width: 36rem;
  will-change: transform, opacity;
}

.hero-portal__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-portal__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  transition: var(--transition-smooth);
  opacity: 0;
  will-change: transform, opacity;
}

.hero-portal__btn--primary {
  background: var(--primary);
  color: var(--bg-white);
  box-shadow: 0 8px 32px rgba(0, 140, 194, 0.32);
}

.hero-portal__btn--primary:hover {
  background: #006fa0;
  transform: translateY(-2px);
}

.hero-portal__btn--ghost {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  color: var(--text-dark);
  border: 1px solid rgba(0, 140, 194, 0.25);
}

.hero-portal__btn--ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.hero-portal__picker {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 14px;
  min-height: 420px;
  padding-bottom: 8px;
  perspective: 1200px;
}

.hero-portal__card {
  position: relative;
  flex: 1 1 0;
  max-width: 200px;
  min-height: 340px;
  padding: 28px 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  color: var(--text-dark);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform-origin: 50% 100%;
  will-change: transform, opacity;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}

.hero-portal__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 140, 194, 0.06) 0%, transparent 45%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.hero-portal__card:hover {
  border-color: rgba(0, 140, 194, 0.45);
  box-shadow: 0 24px 56px rgba(0, 140, 194, 0.18);
}

.hero-portal__card:hover::before {
  opacity: 1;
}

.hero-portal__card-index {
  position: absolute;
  top: 20px;
  right: 18px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: rgba(0, 140, 194, 0.45);
}

.hero-portal__card-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 0 10px;
  line-height: 1.15;
}

.hero-portal__card-text {
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(17, 24, 39, 0.72);
  margin: 0 0 18px;
  flex: 1;
}

.hero-portal__card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.hero-portal__card-btn-arrow {
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-portal__card:hover .hero-portal__card-btn-arrow {
  transform: translateX(4px);
}

@media (max-width: 1100px) {
  .hero-portal__inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero-portal__picker {
    justify-content: center;
    min-height: auto;
    padding-top: 12px;
  }

  .hero-portal__card {
    max-width: none;
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .hero-portal__picker {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-portal__card {
    min-height: auto;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    max-width: none;
  }

  .hero-portal__card-text {
    margin-bottom: 0;
    flex: unset;
  }

  .hero-portal__card-btn {
    margin-left: auto;
  }
}

/* ── Location Accordion 2.0 ─────────────────────────────── */
.locations {
  padding: 120px 0;
}

.locations__accordion {
  display: flex;
  gap: 12px;
  height: 560px;
  padding: 10px;
  border-radius: var(--radius-lg);
}

.loc-card {
  flex: 1;
  position: relative;
  border-radius: calc(var(--radius-lg) - 4px);
  background: var(--bg-white);
  overflow: hidden;
  transition: flex 0.65s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s ease, box-shadow 0.4s ease;
  box-shadow: var(--glass-shadow);
  display: flex;
  align-items: flex-end;
  padding: 36px 32px;
  text-decoration: none;
  border: 2px solid transparent;
}

.loc-card:hover {
  flex: 3;
  border-color: var(--accent-1);
  box-shadow: 0 0 60px rgba(0, 140, 194, 0.12);
}

.loc-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.05;
  filter: grayscale(100%);
  transition: opacity 0.65s ease, filter 0.65s ease, transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 1;
  transform: scale(1.0);
  will-change: transform;
}

.loc-card:hover .loc-card__bg {
  opacity: 0.5;
  filter: grayscale(20%);
  transform: scale(1.05);
}

.loc-card__ticker {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: 24px;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  z-index: 2;
  opacity: 0.35;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.loc-card__ticker span {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  white-space: nowrap;
  color: var(--text-dark);
  animation: ticker-scroll 8s linear infinite;
  will-change: transform;
}

@keyframes ticker-scroll {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-50%);
  }
}

.loc-card:hover .loc-card__ticker {
  opacity: 0;
  animation-play-state: paused;
}

.loc-card__content {
  position: relative;
  z-index: 3;
  width: 100%;
}

.loc-card__icon {
  width: 32px;
  height: 48px;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-smooth);
  color: var(--primary);
  will-change: transform, opacity;
}

.loc-card:hover .loc-card__icon {
  opacity: 1;
  transform: translateY(0);
}

.loc-card__icon-line {
  stroke-dashoffset: 16;
  transition: stroke-dashoffset 0s;
}

.loc-card__title {
  font-size: 2.2rem;
  margin: 0 0 10px;
  color: var(--text-dark);
  transition: color 0.4s ease;
  white-space: nowrap;
}

.loc-card:hover .loc-card__title {
  color: var(--primary);
}

.loc-card__badge {
  display: inline-block;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
}

.loc-card__cta {
  margin-top: 16px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  opacity: 0;
  transform: translateY(30px);
  will-change: transform, opacity;
}

@media (max-width: 768px) {
  .locations__accordion {
    flex-direction: column;
    height: auto;
  }

  .loc-card {
    min-height: 200px;
    flex: unset !important;
  }

  .loc-card__ticker {
    display: none;
  }

  .loc-card__cta {
    opacity: 1;
    transform: none;
  }

  .loc-card__icon {
    opacity: 1;
    transform: none;
  }
}

/* ── Fleisch Tabs ────────────────────────────────────────── */
.meat-tabs {
  padding: 100px 0 150px;
}

.meat-tabs__nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}

.meat-tabs__content {
  min-height: 400px;
  padding: 80px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.tab-panel {
  display: none;
  opacity: 0;
}

.tab-panel.is-active {
  display: block;
  opacity: 1;
  animation: fadeIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.tab-card h3 {
  color: var(--primary);
  font-size: 1.5rem;
}

.tab-card p {
  color: #555;
  font-size: 1.1rem;
}

/* ── Hero Loc Cards ─────────────────────────────────────── */
.hero-loc-picker {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
}

.hero-loc-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: var(--transition-smooth);
  min-width: 160px;
}

.hero-loc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 140, 194, 0.18);
  color: var(--text-dark);
}

.hero-loc-card__img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  align-self: center;
}

.hero-loc-card h3 {
  font-size: 1rem;
  font-family: var(--font-display);
  margin: 0;
  color: var(--text-dark);
}

.hero-loc-card small {
  font-size: 0.75rem;
  color: var(--primary);
  opacity: 0.8;
}

.hero-loc-card__cta {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
  margin-top: 4px;
}

/* ── Social Proof ───────────────────────────────────────── */
.social-proof {
  padding: 100px 0;
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
}

.social-proof::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 150px 150px;
  opacity: 0.025;
  pointer-events: none;
  z-index: 0;
}

.social-proof .container {
  position: relative;
  z-index: 1;
}

.social-proof__testimonial {
  position: relative;
  max-width: 760px;
  margin: 0 auto 80px;
  text-align: center;
  padding: 40px;
}

.social-proof__quote-icon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: auto;
}

.social-proof__quote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-dark);
  margin: 0;
  font-style: italic;
}

.social-proof__badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 600px;
  margin: 0 auto;
}

.social-proof__badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.social-proof__badge-svg {
  width: 72px;
  height: 72px;
  transition: transform 0.3s;
}

.social-proof__badge-item:hover .social-proof__badge-svg {
  transform: scale(1.08);
}

.social-proof__badge-item span {
  font-size: 0.82rem;
  font-weight: 600;
  color: #555;
  letter-spacing: 0.02em;
}

/* ── Locations Detail Cards ─────────────────────────────── */
.locations-detail {
  padding: 120px 0;
}

.locations-detail__header {
  text-align: center;
  margin-bottom: 64px;
}

.locations-detail__eyebrow {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.locations-detail__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin: 0;
}

.locations-detail__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.location-detail-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
  will-change: transform;
}

.location-detail-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0, 140, 194, 0.14);
}

.location-detail-card__img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.location-detail-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.location-detail-card:hover .location-detail-card__img {
  transform: scale(1.05);
}

.location-detail-card__body {
  padding: 28px;
}

.location-detail-card__badge {
  display: inline-block;
  background: rgba(0, 140, 194, 0.08);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius-xl);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.location-detail-card__title {
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--text-dark);
}

.location-detail-card__desc {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin: 0 0 24px;
}

.location-detail-card__cta {
  display: inline-block;
  padding: 10px 24px;
  border: 2px solid var(--primary);
  border-radius: var(--radius-xl);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.88rem;
  font-family: var(--font-display);
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.location-detail-card__cta:hover {
  background: var(--primary);
  color: white;
}

/* ── Portal Hub v9.0 — Hero v2 ────────────────────────── */
.hero-portal-v2 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--bg-white);
  overflow: hidden;
}

.hero-portal-v2__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-portal-v2__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-portal-v2__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(255, 255, 255, 0.75) 50%,
      rgba(255, 255, 255, 0.55) 100%);
}

.hero-portal-v2__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
  padding: 8rem 0;
}

.hero-portal-v2__text {
  max-width: 480px;
}

.hero-portal-v2__eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.hero-portal-v2__title {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25em;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.1;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--text-dark);
  margin: 0;
}

.hero-portal-v2__title .word {
  display: inline-block;
  white-space: nowrap;
}

/* ── Location Picker ─────────────────────────────────────── */
.location-picker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.location-picker__panel {
  position: relative;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, transparent 40%, rgba(0, 140, 194, 0.03) 100%);
}

.location-picker__panel:hover {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 8px 40px rgba(0, 140, 194, 0.08), 0 2px 4px rgba(0, 0, 0, 0.03), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.location-picker__panel.is-expanded {
  grid-column: span 2;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 48px rgba(0, 140, 194, 0.12), 0 4px 8px rgba(0, 0, 0, 0.04);
}

.location-picker__panel-inner {
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.location-picker__index {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.6;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.location-picker__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 0.5rem;
}

.location-picker__badge {
  font-size: 0.8125rem;
  color: rgba(17, 24, 39, 0.6);
  margin: 0 0 1.5rem;
}

.location-picker__details {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.location-picker__panel.is-expanded .location-picker__details {
  opacity: 1;
  max-height: 400px;
  margin-top: 1rem;
}

.location-picker__focus {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.location-picker__focus-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  background: rgba(0, 140, 194, 0.06);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  color: var(--text-dark);
}

.location-picker__focus-icon {
  font-size: 1rem;
}

.location-picker__automat-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 140, 194, 0.1);
  border: 1px solid rgba(0, 140, 194, 0.2);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 1rem;
}

.location-picker__hours {
  font-size: 0.875rem;
  color: rgba(17, 24, 39, 0.7);
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.02);
  border-radius: var(--radius-md);
}

.location-picker__hours strong {
  display: block;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.location-picker__hours p {
  margin: 0;
  line-height: 1.6;
}

.location-picker__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: auto;
}

.location-picker__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.location-picker__cta--directions {
  background: var(--primary);
  color: white;
}

.location-picker__cta--directions:hover {
  background: #006fa0;
  transform: translateY(-1px);
}

.location-picker__cta--more {
  background: transparent;
  color: var(--primary);
  border: 1px solid rgba(0, 140, 194, 0.3);
}

.location-picker__cta--more:hover {
  background: rgba(0, 140, 194, 0.05);
  border-color: var(--primary);
}

.location-picker__toggle {
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.75rem 0;
  margin-top: 1rem;
  background: transparent;
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 0.875rem;
  color: var(--primary);
  cursor: pointer;
  transition: color 0.3s;
}

.location-picker__toggle:hover {
  color: #006fa0;
}

.location-picker__toggle-icon {
  font-size: 1.25rem;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.location-picker__panel.is-expanded .location-picker__toggle-icon {
  transform: rotate(45deg);
}

/* ── Trust Bar ─────────────────────────────────────────── */
.trust-bar {
  padding: 1.5rem 0;
  background: var(--bg-white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 10;
}

.trust-bar__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-bar__label {
  font-size: 0.8125rem;
  color: rgba(17, 24, 39, 0.5);
  font-weight: 500;
}

.trust-bar__badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 140, 194, 0.05);
  border: 1px solid rgba(0, 140, 194, 0.15);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  color: var(--primary);
  transition: all 0.3s ease;
}

.trust-badge:hover {
  background: rgba(0, 140, 194, 0.1);
  transform: translateY(-1px);
}

.trust-badge__icon {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
}

.trust-badge__text {
  font-weight: 500;
}

/* ── Portal Nav (Sticky Scroll-Spy) ─────────────────────── */
.portal-nav {
  position: sticky;
  top: 80px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.02);
}

.portal-nav .container {
  display: flex;
  justify-content: center;
  position: relative;
}

.portal-nav__links {
  display: flex;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.02);
  padding: 0.5rem;
  border-radius: var(--radius-xl);
}

.portal-nav__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(17, 24, 39, 0.7);
  border-radius: var(--radius-xl);
  transition: all 0.3s ease;
  text-decoration: none;
}

.portal-nav__link:hover {
  color: var(--primary);
  background: rgba(0, 140, 194, 0.05);
}

.portal-nav__link.is-active {
  background: var(--primary);
  color: white;
  font-weight: 600;
}

.portal-nav__link-icon {
  font-size: 1rem;
}

/* ── Portal Sections (v9.0) ──────────────────────────────── */
.portal-sections {
  position: relative;
}

.portal-section {
  padding: 6rem 0;
  min-height: 60vh;
}

.portal-section--alt {
  background: transparent;
}

.portal-section__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.portal-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 1rem;
}

.portal-section__intro {
  font-size: 1.125rem;
  color: rgba(17, 24, 39, 0.7);
  line-height: 1.6;
}

.portal-section__subtitle {
  font-size: 1rem;
  color: var(--primary);
  font-weight: 500;
  margin: 0;
}

.portal-section__empty {
  text-align: center;
  padding: 4rem 2rem;
  color: rgba(17, 24, 39, 0.5);
  font-style: italic;
}

/* ── Automaten Grid (v9.0) ──────────────────────────────── */
.automaten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.automat-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
}

.automat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(0, 140, 194, 0.1);
}

.automat-card__image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.automat-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.automat-card:hover .automat-card__image img {
  transform: scale(1.05);
}

.automat-card__content {
  padding: 1.5rem;
}

.automat-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--text-dark);
}

.automat-card__address {
  font-style: normal;
  font-size: 0.9375rem;
  color: rgba(17, 24, 39, 0.7);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.automat-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 140, 194, 0.1);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--primary);
}

/* ── News Grid ──────────────────────────────────────────── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.news-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.news-card__image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.news-card:hover .news-card__image img {
  transform: scale(1.05);
}

.news-card__content {
  padding: 1.5rem;
}

.news-card__date {
  display: block;
  font-size: 0.8125rem;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.news-card__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: var(--text-dark);
  line-height: 1.3;
}

.news-card__excerpt {
  font-size: 0.9375rem;
  color: rgba(17, 24, 39, 0.7);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.news-card__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s;
}

.news-card__link:hover {
  color: #006fa0;
}

/* ── Angebote Grid (v9.0) ──────────────────────────────── */
.angebote-hero {
  margin-bottom: 3rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.angebote-hero img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}

.angebote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.angebot-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.375rem 0.75rem;
  background: var(--accent-1);
  color: var(--text-dark);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
}

.angebote-pdf {
  text-align: center;
  margin-top: 3rem;
}

.angebote-pdf__link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--primary);
  color: white;
  font-weight: 600;
  border-radius: var(--radius-xl);
  transition: all 0.3s ease;
  text-decoration: none;
}

.angebote-pdf__link:hover {
  background: #006fa0;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 140, 194, 0.3);
}

.angebote-pdf__icon {
  font-size: 1.25rem;
}

/* ── Angebote Valid Badge (Gültig bis …) ────────────────── */
.angebote-valid-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 12px;
  padding: 4px 12px;
  background: rgba(0, 140, 194, 0.08);
  border: 1px solid rgba(0, 140, 194, 0.22);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--primary);
  vertical-align: middle;
  letter-spacing: 0;
  font-family: var(--font-primary);
}

/* ── Angebot Card (v9.0 refined) ────────────────────────── */
.angebot-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04), 0 4px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}

.angebot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 140, 194, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06);
}

.angebot-card__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-light);
}

.angebot-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  display: block;
}

.angebot-card:hover .angebot-card__image img {
  transform: scale(1.05);
}

.angebot-card__content {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.angebot-card__name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 0.5rem;
  line-height: 1.25;
}

.angebot-card__desc {
  font-size: 0.9rem;
  color: rgba(17, 24, 39, 0.6);
  line-height: 1.55;
  margin: 0 0 1rem;
  flex: 1;
}

.angebot-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: auto;
}

.angebot-card__price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
}

.angebot-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(0, 140, 194, 0.08);
  color: var(--primary);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 600;
  transition: all 0.25s ease;
  text-decoration: none;
  border: 1px solid rgba(0, 140, 194, 0.18);
}

.angebot-card__btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-1px);
}

/* ── Generic Reveals ────────────────────────────────────── */
.reveal-block,
.reveal-card {
  will-change: opacity, transform;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — Home Page
   ══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .locations-detail__grid {
    grid-template-columns: 1fr 1fr;
  }

  .social-proof__badges {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-portal-v2__content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-portal-v2__text {
    max-width: 100%;
  }

  .hero-portal-v2__title {
    justify-content: center;
  }

  .location-picker {
    grid-template-columns: 1fr;
  }

  .location-picker__panel.is-expanded {
    grid-column: span 1;
  }

  .location-picker__actions {
    flex-direction: column;
  }

  .trust-bar__content {
    flex-direction: column;
    gap: 1rem;
  }

  .portal-section {
    padding: 4rem 0;
  }

  .portal-section__header {
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 768px) {
  .social-proof__badges {
    gap: 16px;
  }

  .portal-nav {
    top: 60px;
  }

  .portal-nav__link-text {
    display: none;
  }

  .portal-nav__link {
    padding: 0.75rem;
  }

  .hero-portal-v2__title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  .location-picker__panel-inner {
    padding: 1.5rem;
  }

  .automaten-grid,
  .news-grid,
  .angebote-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .location-picker__toggle {
    display: flex;
  }

  .location-picker__details {
    max-height: 0;
    opacity: 0;
  }

  .location-picker__panel.is-expanded .location-picker__details {
    max-height: 500px;
    opacity: 1;
  }

  .social-proof__badges {
    grid-template-columns: 1fr;
    max-width: 200px;
  }

  .hero-loc-picker {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-right: -20px;
  }

  .hero-loc-picker::-webkit-scrollbar {
    display: none;
  }

  .hero-loc-card {
    min-width: 140px;
    flex-shrink: 0;
  }
}