/* =============================================
   HOEF.CSS – Höf Microsite Design System
   B+F Bakery & Food GmbH – Marke Höf
   CI abgeleitet aus hofbakery.com:
     Primär:   #91262C (Dunkelrot)
     Sekundär: #E87722 (Amber/Orange)
     Akzent:   #0D377C (Dunkelblau)
   Stil: Clean, modern, europäisch, artisanal
   Fonts: Cormorant Garamond (Headlines) + Inter (Body)
   ============================================= */


/* =============================================
   CSS CUSTOM PROPERTIES
   ============================================= */
:root {
  /* Höf Brand Colors – hofbakery.com CI */
  --hoef-red:           #91262C;
  --hoef-red-light:     #B22E35;
  --hoef-red-dark:      #6E1C21;
  --hoef-red-deep:      #4A1216;

  --hoef-orange:        #E87722;
  --hoef-orange-light:  #F59340;
  --hoef-orange-dark:   #C4621B;

  --hoef-blue:          #0D377C;
  --hoef-blue-light:    #1A4E9E;

  /* Backgrounds */
  --hoef-white:         #FFFFFF;
  --hoef-cream:         #FAF7F4;
  --hoef-light:         #F4F0EC;
  --hoef-medium:        #E2DDD8;
  --hoef-dark:          #1A1A1A;
  --hoef-charcoal:      #2C2725;

  /* Text */
  --hoef-text:          #1A1A1A;
  --hoef-text-muted:    #6B6360;
  --hoef-text-warm:     #4A3D35;
  --hoef-text-light:    #FFFFFF;

  /* System */
  --hoef-radius:        0.375rem;
  --hoef-radius-lg:     0.875rem;
  --hoef-radius-xl:     1.5rem;
  --hoef-shadow-sm:     0 2px 8px rgba(26, 26, 26, 0.07);
  --hoef-shadow:        0 6px 24px rgba(26, 26, 26, 0.11);
  --hoef-shadow-lg:     0 16px 48px rgba(26, 26, 26, 0.16);
  --hoef-shadow-red:    0 8px 24px rgba(145, 38, 44, 0.28);

  /* Transitions */
  --ease-out:           cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth:        cubic-bezier(0.4, 0, 0.2, 1);
}


/* =============================================
   BASE
   ============================================= */
body {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background-color: var(--hoef-white);
  color: var(--hoef-text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', 'Baskerville', 'Georgia', serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--hoef-dark);
}


/* =============================================
   SCROLL REVEAL
   ============================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }


/* =============================================
   BUTTONS
   ============================================= */
.btn-hoef-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--hoef-red);
  color: var(--hoef-text-light);
  border: 2px solid var(--hoef-red);
  padding: 0.85rem 2.25rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.3s var(--ease-smooth);
  box-shadow: var(--hoef-shadow-red);
  text-decoration: none;
  cursor: pointer;
}
.btn-hoef-primary:hover {
  background: var(--hoef-red-dark);
  border-color: var(--hoef-red-dark);
  color: var(--hoef-text-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(145, 38, 44, 0.38);
}

.btn-hoef-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--hoef-dark);
  border: 2px solid var(--hoef-dark);
  padding: 0.83rem 2.25rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.3s var(--ease-smooth);
  text-decoration: none;
  cursor: pointer;
}
.btn-hoef-outline:hover {
  background: var(--hoef-dark);
  color: var(--hoef-text-light);
  transform: translateY(-2px);
  box-shadow: var(--hoef-shadow);
}

.btn-hoef-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--hoef-text-light);
  color: var(--hoef-red);
  border: 2px solid var(--hoef-text-light);
  padding: 0.85rem 2.25rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.3s var(--ease-smooth);
  text-decoration: none;
  cursor: pointer;
}
.btn-hoef-white:hover {
  background: transparent;
  color: var(--hoef-text-light);
  transform: translateY(-2px);
}


/* =============================================
   NAVBAR
   ============================================= */
.navbar-hoef {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--hoef-medium);
  border-top: 4px solid var(--hoef-red);
  padding: 0.65rem 0;
  box-shadow: var(--hoef-shadow-sm);
  z-index: 1030;
}

.navbar-hoef .navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.navbar-hoef .brand-logo {
  height: 36px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.navbar-hoef .brand-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.9rem;
  color: var(--hoef-red);
  letter-spacing: -0.04em;
  line-height: 1;
  flex-shrink: 0;
}

.navbar-hoef .brand-divider {
  width: 1px;
  height: 22px;
  background: var(--hoef-medium);
  display: block;
  flex-shrink: 0;
}

.navbar-hoef .brand-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.73rem;
  font-weight: 500;
  color: var(--hoef-text-muted);
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.hoef-nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--hoef-text);
  text-decoration: none;
  padding: 0.35rem 0;
  position: relative;
  transition: color 0.3s ease;
  letter-spacing: 0.01em;
}
.hoef-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--hoef-red);
  transition: width 0.3s var(--ease-smooth);
}
.hoef-nav-link:hover {
  color: var(--hoef-red);
}
.hoef-nav-link:hover::after {
  width: 100%;
}

.navbar-hoef .back-link {
  color: var(--hoef-text-muted);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--hoef-medium);
  padding: 0.4rem 0.9rem;
  border-radius: var(--hoef-radius);
  letter-spacing: 0.01em;
}
.navbar-hoef .back-link:hover {
  color: var(--hoef-red);
  border-color: var(--hoef-red);
}

.navbar-hoef .navbar-toggler {
  border: 1px solid var(--hoef-medium);
  padding: 0.35rem 0.6rem;
  border-radius: var(--hoef-radius);
}
.navbar-hoef .navbar-toggler:focus {
  box-shadow: none;
  border-color: var(--hoef-red);
}


/* =============================================
   HERO
   ============================================= */
.hoef-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--hoef-white);
}

/* Dekorative Kreise */
.hoef-hero::before {
  content: '';
  position: absolute;
  top: -240px;
  right: -240px;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(145, 38, 44, 0.055) 0%,
    rgba(232, 119, 34, 0.035) 45%,
    transparent 70%);
  pointer-events: none;
}
.hoef-hero::after {
  content: '';
  position: absolute;
  bottom: -180px;
  left: -180px;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(13, 55, 124, 0.045) 0%,
    transparent 65%);
  pointer-events: none;
}

/* Rote Akzentlinie oben */
.hoef-hero__accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg,
    var(--hoef-red) 0%,
    var(--hoef-red-dark) 25%,
    var(--hoef-orange) 55%,
    var(--hoef-orange-dark) 78%,
    var(--hoef-red) 100%);
  z-index: 2;
}

.hoef-hero .container {
  position: relative;
  z-index: 1;
}

.hoef-hero__inner {
  padding: 4rem 0 6rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Logo */
.hoef-hero__logo-wrap {
  margin: 0 auto 2rem;
  max-width: 140px;
}
.hoef-hero__logo {
  width: 100%;
  height: auto;
  max-height: 72px;
  object-fit: contain;
  display: block;
  filter: brightness(0.15);
}
.hoef-wordmark-hero {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 4.5rem;
  color: var(--hoef-red);
  letter-spacing: -0.06em;
  line-height: 1;
}

/* Kicker */
.hoef-hero__kicker {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hoef-red);
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}
.hoef-hero__kicker::before,
.hoef-hero__kicker::after {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--hoef-red);
  opacity: 0.45;
}

/* Headline */
.hoef-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(3.4rem, 8.5vw, 6.5rem);
  line-height: 0.95;
  margin-bottom: 1.25rem;
  color: var(--hoef-dark);
  letter-spacing: -0.04em;
}
.hoef-hero__title em {
  font-style: italic;
  color: var(--hoef-red);
  font-weight: 600;
}

/* Lead-Zeile */
.hoef-hero__lead {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.2rem, 2.6vw, 1.75rem);
  color: var(--hoef-text-muted);
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
}

/* Fließtext */
.hoef-hero__text {
  font-size: 0.97rem;
  line-height: 1.82;
  color: var(--hoef-text-muted);
  max-width: 580px;
  margin: 0 auto 2.75rem;
  font-weight: 400;
}

/* CTA */
.hoef-hero__cta {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Scroll-Indikator */
.hoef-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--hoef-text-muted);
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 2;
  font-family: 'Inter', sans-serif;
}
.hoef-scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, var(--hoef-red) 0%, transparent 100%);
  animation: hoefScrollPulse 2s ease-in-out infinite;
}
@keyframes hoefScrollPulse {
  0%, 100% { opacity: 0.25; transform: scaleY(0.55); }
  50%      { opacity: 1;    transform: scaleY(1); }
}


/* =============================================
   SECTIONS – General
   ============================================= */
.hoef-section {
  padding: 6rem 0;
  position: relative;
}

.hoef-kicker {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--hoef-red);
  margin-bottom: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.hoef-kicker::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--hoef-red);
  flex-shrink: 0;
}

.hoef-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  line-height: 1.05;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}

.hoef-section__text {
  color: var(--hoef-text-muted);
  font-size: 0.97rem;
  line-height: 1.82;
  max-width: 580px;
}


/* =============================================
   HERITAGE-STREIFEN
   ============================================= */
.hoef-heritage {
  background: var(--hoef-dark);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}
.hoef-heritage::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(145, 38, 44, 0.22), transparent 50%),
    radial-gradient(ellipse at 90% 50%, rgba(232, 119, 34, 0.16), transparent 50%);
  pointer-events: none;
}
.hoef-heritage .container {
  position: relative;
  z-index: 1;
}

.hoef-heritage__item {
  text-align: center;
  padding: 0.75rem 0;
}
.hoef-heritage__number {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 4.5vw, 3.4rem);
  color: var(--hoef-orange);
  line-height: 1;
  margin-bottom: 0.4rem;
  letter-spacing: -0.03em;
}
.hoef-heritage__label {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}


/* =============================================
   ÜBER HÖHF
   ============================================= */
.hoef-about {
  background: var(--hoef-white);
}

.hoef-about__image {
  border-radius: var(--hoef-radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--hoef-shadow-lg);
  background: var(--hoef-light);
}
.hoef-about__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease-out);
}
.hoef-about__image:hover img {
  transform: scale(1.04);
}

.hoef-about__badge {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--hoef-red);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hoef-about__highlight {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  margin-top: 2.25rem;
  padding: 1.4rem 1.5rem;
  background: var(--hoef-cream);
  border-radius: var(--hoef-radius);
  border-left: 3px solid var(--hoef-orange);
}
.hoef-about__highlight i {
  font-size: 1.5rem;
  color: var(--hoef-red);
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.hoef-about__highlight strong {
  display: block;
  color: var(--hoef-dark);
  margin-bottom: 0.3rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}
.hoef-about__highlight p {
  color: var(--hoef-text-muted);
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.7;
}


/* =============================================
   PRODUKTE
   ============================================= */
.hoef-products {
  background: var(--hoef-cream);
}

.hoef-product-card {
  background: var(--hoef-white);
  border-radius: var(--hoef-radius-lg);
  overflow: hidden;
  transition: all 0.4s var(--ease-smooth);
  box-shadow: var(--hoef-shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--hoef-medium);
  position: relative;
}
.hoef-product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--hoef-red);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 2;
}
.hoef-product-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--hoef-shadow-lg);
  border-color: rgba(145, 38, 44, 0.18);
}
.hoef-product-card:hover::before {
  opacity: 1;
}

.hoef-product-card__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--hoef-light);
  flex-shrink: 0;
}
.hoef-product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.65s var(--ease-out);
}
.hoef-product-card:hover .hoef-product-card__img img {
  transform: scale(1.07);
}

.hoef-product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--hoef-red);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 0;
  z-index: 3;
}
.hoef-product-badge.bestseller {
  background: var(--hoef-orange);
  color: var(--hoef-dark);
}

.hoef-product-card__body {
  padding: 1.5rem 1.4rem 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.hoef-product-card__body h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.55rem;
  color: var(--hoef-dark);
  margin-bottom: 0.5rem;
  letter-spacing: -0.025em;
}
.hoef-product-desc {
  color: var(--hoef-text-muted);
  font-size: 0.88rem;
  line-height: 1.75;
  flex: 1;
}

.hoef-product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--hoef-medium);
}
.hoef-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--hoef-light);
  color: var(--hoef-text-warm);
  font-family: 'Inter', sans-serif;
  font-size: 0.69rem;
  font-weight: 600;
  padding: 0.28rem 0.62rem;
  border-radius: 0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hoef-tag i {
  font-size: 0.82rem;
  color: var(--hoef-red);
}


/* =============================================
   STANDORT
   ============================================= */
.hoef-location {
  background: var(--hoef-dark);
  color: var(--hoef-text-light);
  position: relative;
  overflow: hidden;
}
.hoef-location::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(145, 38, 44, 0.22), transparent 70%);
  pointer-events: none;
}
.hoef-location::after {
  content: '';
  position: absolute;
  bottom: -90px;
  left: -90px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 119, 34, 0.16), transparent 70%);
  pointer-events: none;
}
.hoef-location .container {
  position: relative;
  z-index: 1;
}
.hoef-location .hoef-kicker {
  color: var(--hoef-orange);
}
.hoef-location .hoef-kicker::before {
  background: var(--hoef-orange);
}
.hoef-location h2 {
  color: var(--hoef-text-light);
}
.hoef-location .hoef-section__text {
  color: rgba(255, 255, 255, 0.6);
}

.hoef-location-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(232, 119, 34, 0.2);
  border-radius: var(--hoef-radius-lg);
  padding: 2rem;
  height: 100%;
}
.hoef-location-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.1rem;
  color: var(--hoef-orange);
  margin-bottom: 0.3rem;
  letter-spacing: -0.03em;
}
.hoef-location-role {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1.5rem;
}

.hoef-location-facts {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hoef-location-facts li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  line-height: 1.55;
}
.hoef-location-facts li:last-child {
  border-bottom: none;
}
.hoef-location-facts i {
  color: var(--hoef-orange);
  font-size: 1.05rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.hoef-location-map {
  border-radius: var(--hoef-radius-lg);
  overflow: hidden;
  box-shadow: var(--hoef-shadow-lg);
  border: 1px solid rgba(232, 119, 34, 0.18);
  height: 100%;
  min-height: 420px;
}
.hoef-location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  filter: saturate(0.6) brightness(0.85) contrast(1.1);
}


/* =============================================
   CTA BANNER
   ============================================= */
.hoef-cta {
  background: var(--hoef-red);
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hoef-cta::before {
  content: '';
  position: absolute;
  top: -90px;
  right: -90px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.09), transparent 70%);
  pointer-events: none;
}
.hoef-cta::after {
  content: '';
  position: absolute;
  bottom: -70px;
  left: -70px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 119, 34, 0.28), transparent 70%);
  pointer-events: none;
}
.hoef-cta .container {
  position: relative;
  z-index: 1;
}
.hoef-cta h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.hoef-cta p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.97rem;
  max-width: 520px;
  margin: 0 auto 2.25rem;
  line-height: 1.8;
}


/* =============================================
   FOOTER
   ============================================= */
.hoef-footer {
  background: var(--hoef-dark);
  border-top: 3px solid var(--hoef-red);
  padding: 2.5rem 0;
}
.hoef-footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.hoef-footer__copy {
  color: rgba(255, 255, 255, 0.45);
  font-family: 'Inter', sans-serif;
  font-size: 0.83rem;
  margin: 0;
}
.hoef-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.hoef-footer__links a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.83rem;
  font-weight: 500;
  transition: color 0.3s ease;
}
.hoef-footer__links a:hover {
  color: var(--hoef-orange);
}


/* =============================================
   DIVIDERS
   ============================================= */
.hoef-divider {
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--hoef-medium) 15%,
    rgba(145, 38, 44, 0.45) 50%,
    var(--hoef-medium) 85%,
    transparent 100%);
  border: none;
  margin: 0;
}


/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 991.98px) {
  .hoef-hero         { min-height: 92vh; }
  .hoef-section      { padding: 4.5rem 0; }
  .hoef-about__image img   { height: 400px; }
  .hoef-location-map,
  .hoef-location-map iframe { min-height: 340px; }
  .navbar-hoef .brand-sub  { display: none; }
  .navbar-hoef .brand-divider { display: none; }
}

@media (max-width: 575.98px) {
  .hoef-hero          { min-height: 88vh; padding: 2.5rem 0; }
  .hoef-hero__inner   { padding: 3.5rem 0 5rem; }
  .hoef-hero__title   { font-size: 2.9rem; }
  .hoef-hero__lead    { font-size: 1.1rem; }
  .hoef-hero__text    { font-size: 0.9rem; }
  .hoef-hero__kicker::before,
  .hoef-hero__kicker::after { width: 20px; }
  .hoef-hero__cta     { flex-direction: column; align-items: center; }
  .hoef-scroll-indicator { display: none; }

  .hoef-section       { padding: 3.5rem 0; }
  .hoef-section h2    { font-size: 2rem; }

  .hoef-heritage      { padding: 2.5rem 0; }
  .hoef-heritage__number { font-size: 2.1rem; }

  .hoef-about__image img   { height: 280px; }
  .hoef-about__highlight   { padding: 1.1rem; }

  .hoef-location-card      { padding: 1.5rem; }
  .hoef-location-card h3   { font-size: 1.6rem; }
  .hoef-location-map,
  .hoef-location-map iframe { min-height: 280px; }

  .hoef-cta           { padding: 3.5rem 0; }
  .hoef-cta h3        { font-size: 1.9rem; }

  .hoef-footer__inner { flex-direction: column; text-align: center; }
  .hoef-footer__links { justify-content: center; gap: 1rem; }

  .btn-hoef-primary,
  .btn-hoef-outline,
  .btn-hoef-white     { width: 100%; justify-content: center; }
}
