/* ===== 't Geertje — Demo Site CSS ===== */
/* Brand: #2D5A27 forest green, #4A7C3F mid green, #F5F0E8 warm cream, #8B6914 ochre/gold */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { width: 100%; padding: 0; margin: 0; }
main { display: block; padding: 0; margin: 0; }

:root {
  --green-dark: #2D5A27;
  --green-mid:  #4A7C3F;
  --green-light: #6B8F3E;
  --cream:      #F5F0E8;
  --cream-dark: #EDE5D4;
  --gold:       #8B6914;
  --gold-light: #C8A96E;
  --text:       #1E2A1A;
  --text-mid:   #3A4A35;
  --text-muted: #6B7C65;
  --white:      #FFFFFF;
  --header-h:   72px;
  --radius:     12px;
  --radius-sm:  8px;
  --shadow-sm:  0 2px 8px rgba(30,42,26,0.08);
  --shadow-md:  0 4px 20px rgba(30,42,26,0.12);
  --shadow-lg:  0 8px 40px rgba(30,42,26,0.18);
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; font-size: 18px; background: var(--green-dark); }
body {
  font-family: 'Source Sans 3', system-ui, sans-serif;
  background: var(--green-dark);  /* dark behind header */
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* Image fill utility */
.media, .img-fill, figure.photo { position: relative; overflow: hidden; }
.media > img, .img-fill > img, figure.photo > img,
.gallery img, .card__media img, .hero__img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var(--text);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }
p { color: var(--text-mid); line-height: 1.7; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform 0.15s;
  white-space: nowrap;
  text-decoration: none;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: none; }

.btn--primary { background: var(--green-dark); color: var(--white); border-color: var(--green-dark); }
.btn--primary:hover { background: var(--green-mid); border-color: var(--green-mid); }

.btn--outline { background: transparent; color: var(--green-dark); border-color: var(--green-dark); }
.btn--outline:hover { background: var(--green-dark); color: var(--white); }

.btn--hero-primary {
  background: var(--green-mid);
  color: var(--white);
  border-color: var(--green-mid);
  font-size: 1.05rem;
  padding: 0.9rem 1.8rem;
  box-shadow: 0 4px 16px rgba(45,90,39,0.4);
}
.btn--hero-primary:hover { background: var(--green-dark); border-color: var(--green-dark); }

.btn--hero-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  padding: 0.9rem 1.8rem;
}
.btn--hero-outline:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }

.btn--light-outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245,240,232,0.4);
}
.btn--light-outline:hover { background: rgba(245,240,232,0.1); border-color: var(--cream); }

.btn--cta-primary { background: var(--cream); color: var(--green-dark); border-color: var(--cream); font-size: 1.1rem; font-weight: 700; padding: 1rem 2rem; }
.btn--cta-primary:hover { background: var(--cream-dark); border-color: var(--cream-dark); }
.btn--cta-outline { background: transparent; color: var(--cream); border-color: rgba(245,240,232,0.6); font-size: 1.1rem; font-weight: 600; padding: 1rem 2rem; }
.btn--cta-outline:hover { background: rgba(245,240,232,0.1); border-color: var(--cream); }

.btn--full { width: 100%; justify-content: center; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.site-header.scrolled {
  background: rgba(30,42,26,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(0,0,0,0.2);
  border-bottom-color: rgba(74,124,63,0.3);
}

/* Nav contrast handled via default (white) and .scrolled (dark) states */

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-cow { width: 40px; height: 40px; }
.logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
  transition: color var(--transition);
}
.site-header.scrolled .logo-text {
  color: var(--cream);
  text-shadow: none;
}

.site-nav { margin-left: auto; }
.nav-list {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}
.nav-link {
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  border-radius: 6px;
  transition: color var(--transition), background var(--transition), text-shadow var(--transition);
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.12); }
/* When scrolled: stays white (dark bg remains legible) */
.site-header.scrolled .nav-link {
  color: rgba(245,240,232,0.95);
  text-shadow: none;
}
.site-header.scrolled .nav-link:hover { color: var(--white); background: rgba(255,255,255,0.1); }

.header-cta {
  margin-left: 1rem;
  background: rgba(255,255,255,0.15) !important;
  color: var(--white) !important;
  border-color: rgba(255,255,255,0.6) !important;
}
.site-header.scrolled .header-cta {
  background: var(--green-mid) !important;
  color: var(--white) !important;
  border-color: var(--green-mid) !important;
}
.header-cta-mobile {
  display: none;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  background: var(--green-dark);
  color: var(--white);
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  margin-left: auto;
  margin-right: 0.5rem;
  transition: background var(--transition);
}
.header-cta-mobile svg { width: 15px; height: 15px; }
.header-cta-mobile:hover { background: var(--green-mid); }
.site-header:not(.scrolled) .header-cta-mobile {
  background: rgba(255,255,255,0.18);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.site-header:not(.scrolled) .header-cta-mobile:hover {
  background: rgba(255,255,255,0.28);
}

.mobile-menu__trigger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background var(--transition);
  margin-left: auto;
}
.mobile-menu__trigger:hover { background: rgba(45,90,39,0.08); }
.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.menu-open .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-open .hamburger-line:nth-child(2) { opacity: 0; }
.menu-open .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.site-header.scrolled .hamburger-line { background: var(--cream); }

/* ===== FULLSCREEN MOBILE MENU ===== */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  width: 100vw;
  height: 100svh;
  min-height: 100dvh;
  background: var(--green-dark);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  visibility: hidden;
}
.mobile-menu__overlay.is-open {
  transform: translateX(0);
  visibility: visible;
}
@media (prefers-reduced-motion: reduce) {
  .mobile-menu__overlay { transition: none; }
}

.mobile-menu__panel { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }

.mobile-menu__close {
  align-self: flex-end;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  margin-bottom: 1.5rem;
  transition: background var(--transition);
}
.mobile-menu__close:hover { background: rgba(255,255,255,0.2); }
.mobile-menu__close svg { width: 22px; height: 22px; }

.mobile-menu__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.logo-cow--mobile { width: 48px; height: 48px; }
.logo-text--white { color: var(--cream); font-family: 'Playfair Display', Georgia, serif; font-size: 1.4rem; font-weight: 700; }

.mobile-menu__list { display: flex; flex-direction: column; gap: 0.25rem; margin-bottom: auto; }
.mobile-menu__item {
  display: block;
  padding: 1rem 0.75rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--cream);
  border-bottom: 1px solid rgba(245,240,232,0.12);
  transition: color var(--transition), padding-left var(--transition);
}
.mobile-menu__item:hover { color: var(--gold-light); padding-left: 1.25rem; }

.mobile-menu__cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}
.mobile-cta-link {
  justify-content: center;
  font-size: 1rem;
}

.mobile-menu__info {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245,240,232,0.12);
}
.mobile-menu__info p {
  color: rgba(245,240,232,0.5);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 8rem;
  overflow: hidden;
  background: var(--green-dark); /* fallback while image loads */
  /* no margin-top: hero sits behind the fixed header */
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,40,15,0.6) 0%,
    rgba(20,40,15,0.1) 30%,
    rgba(20,40,15,0.2) 55%,
    rgba(20,40,15,0.75) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(139,105,20,0.8);
  color: var(--cream);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 4px;
  margin-bottom: 1.25rem;
}
.trust-badge svg { width: 14px; height: 14px; }

.hero__headline {
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  max-width: 640px;
}
.hero__sub {
  color: rgba(245,240,232,0.88);
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 2rem;
  line-height: 1.65;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  animation: bounce 2s infinite;
  z-index: 1;
}
.hero__scroll-hint svg { width: 28px; height: 28px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== TRUST BAND ===== */
.trust-band {
  background: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
}
.trust-band__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.trust-item svg { width: 18px; height: 18px; color: var(--green-mid); flex-shrink: 0; }
.trust-item strong { color: var(--green-dark); }
.trust-divider {
  width: 1px;
  height: 24px;
  background: var(--cream-dark);
  display: block;
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { color: var(--text-muted); font-size: 1rem; }

/* ===== SERVICES / CARD GRID ===== */
.services {
  padding: 5rem 1.5rem;
  background: var(--white);
}
.services > .section-header {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.card-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }

.card--image-forward {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card--image-forward:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.card--image-forward:hover .card__media img { transform: scale(1.04); }

.card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,40,15,0.9) 0%, rgba(20,40,15,0.55) 50%, rgba(20,40,15,0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.card--image-forward:hover .card__overlay { opacity: 1; }
.card__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}
.card__desc { color: rgba(245,240,232,0.9); font-size: 0.9rem; line-height: 1.5; margin-bottom: 1rem; }
.card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(245,240,232,0.4);
  padding-bottom: 2px;
  transition: gap var(--transition), border-color var(--transition);
}
.card__cta:hover { gap: 0.7rem; border-color: var(--cream); }
.card__cta svg { width: 16px; height: 16px; }

.card__info {
  padding: 1.25rem 1.5rem 1.5rem;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.card__info h3 { font-size: 1.1rem; margin-bottom: 0; color: var(--green-dark); }
.card__info p { font-size: 0.9rem; color: var(--text-muted); }
.card__info-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-mid);
  margin-top: 0.25rem;
  transition: gap var(--transition), color var(--transition);
}
.card__info-link svg { width: 14px; height: 14px; }
.card__info-link:hover { gap: 0.6rem; color: var(--green-dark); }

/* ===== STORY SECTION ===== */
.story {
  background: var(--cream);
  padding: 5rem 1.5rem;
}
.story__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.story__media { position: relative; padding-bottom: 1.5rem; padding-right: 1.5rem; }
.story__img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(30,42,26,0.15);
  z-index: 1;
}
.story__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.story__badge {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  border: 3px solid var(--cream);
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  text-align: center;
  line-height: 1.1;
}
.story__badge-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
}
.story__badge-text { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.05em; color: var(--cream); }

.story__text h2 { margin-bottom: 0.75rem; }
.story__lead { font-size: 1.15rem; font-weight: 500; color: var(--text); margin-bottom: 1.25rem; line-height: 1.6; }
.story__text p { margin-bottom: 1rem; }

.story__values {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.story__value {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-mid);
}
.story__value svg { width: 20px; height: 20px; color: var(--green-mid); flex-shrink: 0; }

/* ===== BOERDERIJWINKEL ===== */
.winkel {
  padding: 5rem 1.5rem;
  background: var(--white);
}
.winkel__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.winkel__text h2 { margin-bottom: 0.75rem; }
.winkel__text > p { margin-bottom: 2rem; }

.winkel__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.winkel__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-mid);
}
.winkel__list li svg { width: 18px; height: 18px; color: var(--green-mid); flex-shrink: 0; }

.winkel__media {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.winkel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--green-dark);
  padding: 4rem 1.5rem;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(74,124,63,0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(139,105,20,0.2) 0%, transparent 60%);
}
.cta-band__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-band__text h2 { color: var(--cream); margin-bottom: 0.5rem; }
.cta-band__text p { color: rgba(245,240,232,0.7); font-size: 1rem; }
.cta-band__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 5rem 1.5rem;
  background: var(--cream);
}
.contact-section__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form-wrap h2 { margin-bottom: 0.75rem; }
.contact-form-wrap > p { color: var(--text-muted); margin-bottom: 2rem; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.35rem; }
.form-field label { font-size: 0.85rem; font-weight: 600; color: var(--text-mid); }
.form-field input,
.form-field textarea {
  padding: 0.75rem 1rem;
  background: var(--white);
  border: 1.5px solid rgba(45,90,39,0.15);
  border-radius: var(--radius-sm);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(74,124,63,0.12);
}
.form-field textarea { resize: vertical; }

.contact-info-wrap { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.contact-info-card h3 { font-size: 1rem; color: var(--green-dark); margin-bottom: 1rem; }

.contact-info-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-item svg { width: 18px; height: 18px; color: var(--green-mid); flex-shrink: 0; margin-top: 2px; }
.contact-info-item a { color: var(--green-dark); text-decoration: underline; text-decoration-color: transparent; transition: text-decoration-color var(--transition); }
.contact-info-item a:hover { text-decoration-color: var(--green-dark); }

.hours-grid { display: grid; grid-template-columns: auto auto; gap: 0.4rem 1.5rem; font-size: 0.9rem; color: var(--text-mid); }
.hours-note { grid-column: 1 / -1; font-size: 0.8rem; color: var(--text-muted); margin-top: 0.5rem; }

.badge-open {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(45,90,39,0.08);
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  margin-top: 1rem;
}
.badge-open svg { width: 14px; height: 14px; }

.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.map-embed iframe { display: block; }

/* ===== FOOTER ===== */
.footer-kit {
  background: var(--text);
  color: var(--cream);
  padding: 4rem 1.5rem 0;
}
.footer-kit__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245,240,232,0.12);
}
.footer-col--brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.logo-cow--footer { width: 36px; height: 36px; }
.footer-logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
}
.footer-tagline { font-size: 0.9rem; color: rgba(245,240,232,0.65); line-height: 1.6; margin-bottom: 1rem; }
.footer-badge-open {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(74,124,63,0.2);
  color: rgba(245,240,232,0.8);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
}
.footer-badge-open svg { width: 14px; height: 14px; }

.footer-heading {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(245,240,232,0.65);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--cream); }

.footer-hours { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 0.75rem; }
.footer-hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.88rem;
  color: rgba(245,240,232,0.65);
}
.footer-hours-note { font-size: 0.8rem; color: rgba(245,240,232,0.4); margin-top: 0.5rem; }

.footer-address { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: rgba(245,240,232,0.65);
  line-height: 1.5;
}
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--gold-light); }
.footer-contact-item a { color: rgba(245,240,232,0.65); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--cream); }

.footer-kit__bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(245,240,232,0.35);
}
.footer-kit__bottom a { color: rgba(245,240,232,0.5); transition: color var(--transition); }
.footer-kit__bottom a:hover { color: var(--cream); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .card-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .footer-kit__inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .story__inner, .winkel__inner { gap: 2.5rem; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  html { font-size: 16px; }

  /* Hide desktop nav on mobile, keep compact CTA */
  .site-nav { display: none; }
  .header-cta { display: none; }
  .mobile-menu__trigger { display: flex; }
  /* Show compact tel CTA on mobile */
  .header-cta-mobile { display: inline-flex !important; }

  .hero { height: 100svh; min-height: 500px; padding-bottom: 5rem; }

  .trust-band__inner { gap: 0; }
  .trust-item { padding: 0.5rem 0.75rem; font-size: 0.82rem; }
  .trust-divider { display: none; }

  .card-grid--3 { grid-template-columns: 1fr; }
  /* Always show overlay info on mobile */
  .card__overlay { opacity: 1; }

  .story__inner { grid-template-columns: 1fr; gap: 2rem; }
  .story__badge { width: 90px; height: 90px; bottom: -1rem; right: -0.75rem; }
  .story__badge-number { font-size: 1.6rem; }

  .winkel__inner { grid-template-columns: 1fr; gap: 2rem; }
  .winkel__media { order: -1; }

  .cta-band__inner { flex-direction: column; text-align: center; }
  .cta-band__actions { justify-content: center; }

  .contact-section__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }

  .footer-kit__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-kit__bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .trust-item { padding: 0.4rem 0.5rem; }
}

/* Fallback: .reveal elements always visible */
.reveal, [class*="reveal"] { opacity: 1 !important; transform: none !important; }
