/* ═══════════════════════════════════════════════════════
   We Love Picnic — Premium Design System v2
   Direction: Organic Luxury · Earthy Elegance · Gen Y/Z
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

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

:root {
  /* Palette */
  --forest:      #1C3A1E;
  --forest-mid:  #2D5A30;
  --forest-light:#4A8050;
  --cream:       #FAF7F0;
  --cream-warm:  #F2EBD9;
  --cream-deep:  #E8DEC8;
  --gold:        #C9A96E;
  --gold-light:  #E8D5A8;
  --terra:       #B85C38;
  --terra-light: #D4785A;
  --sage:        #8BAF6A;
  --sage-light:  #C5DBA8;
  --ink:         #1A2820;
  --ink-mid:     #354D3A;
  --ink-soft:    #6B8A72;
  --white:       #FFFFFF;
  --border:      rgba(26,50,32,0.12);
  --border-warm: rgba(201,169,110,0.25);

  /* ── Backward-compatible aliases ─── */
  --green-deep:  var(--forest);
  --green-mid:   var(--forest-mid);
  --green-light: var(--forest-light);
  --text-dark:   var(--ink);
  --text-mid:    var(--ink-mid);
  --text-muted:  var(--ink-soft);
  --cream-dark:  var(--cream-warm);
  --terra-light: #D4785A;
  --sage:        #8BAF6A;
  --brown:       #7A5C3A;
  --white:       #FFFFFF;

  /* Spacing */
  --section-pad: clamp(60px, 8vw, 100px);

  /* Radius */
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;

  /* Shadow */
  --shadow-sm: 0 2px 12px rgba(26,50,32,0.08);
  --shadow-md: 0 8px 32px rgba(26,50,32,0.12);
  --shadow-lg: 0 20px 60px rgba(26,50,32,0.18);
  --shadow-gold: 0 8px 32px rgba(201,169,110,0.2);
}

/* ── Base ─────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── Scroll Animations ────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1),
              transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── Navigation ───────────────────────────────────────── */
nav {
  background: var(--forest);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid rgba(201,169,110,0.15);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.85; }
.nav-logo span { color: var(--gold-light); }

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  color: rgba(250,247,240,0.7);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 100%;
  height: 1px;
  background: var(--gold-light);
  transition: right 0.3s ease;
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { right: 0; }

.nav-cta {
  background: var(--terra) !important;
  color: var(--white) !important;
  padding: 9px 22px !important;
  border-radius: 100px !important;
  font-weight: 400 !important;
  font-size: 0.88rem !important;
  letter-spacing: 0.03em !important;
  transition: background 0.25s, transform 0.2s !important;
}
.nav-cta:hover {
  background: var(--terra-light) !important;
  transform: translateY(-1px) !important;
}
.nav-cta::after { display: none !important; }

/* Lang Switch */
.lang-switch { position: relative; }
.lang-trigger {
  display: flex; align-items: center; gap: 6px;
  color: rgba(250,247,240,0.7);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 8px;
  padding: 6px 12px;
  cursor: pointer;
  font-size: 0.84rem;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s, border-color 0.2s;
}
.lang-trigger:hover { background: rgba(255,255,255,0.1); border-color: rgba(201,169,110,0.4); }
.lang-trigger .chevron { font-size: 0.6rem; opacity: 0.6; transition: transform 0.2s; }
.lang-trigger.open .chevron { transform: rotate(180deg); }
.lang-dropdown {
  position: absolute; top: calc(100% + 10px); right: 0;
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  overflow: hidden; min-width: 190px;
  display: none; z-index: 300;
  animation: dropIn 0.2s ease;
}
@keyframes dropIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.lang-dropdown.open { display: block; }
.lang-option {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  font-size: 0.88rem; color: var(--ink);
  text-decoration: none;
  transition: background 0.15s;
  font-family: 'DM Sans', sans-serif;
}
.lang-option:hover { background: var(--cream); }
.lang-option.active { background: var(--cream-warm); font-weight: 500; }
.lang-option .flag { font-size: 1.1rem; }
.lang-option .lang-name { flex: 1; }
.lang-option .lang-check { color: var(--forest-mid); font-size: 0.8rem; }

/* ── Hero ─────────────────────────────────────────────── */
.hero {
  background: var(--forest);
  padding: 100px 5% 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 70px;
  background: var(--cream);
  clip-path: ellipse(60% 100% at 50% 100%);
}
/* Subtle texture overlay */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(201,169,110,0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(139,175,106,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  background: rgba(201,169,110,0.12);
  color: var(--gold-light);
  border: 1px solid rgba(201,169,110,0.25);
  font-size: 0.75rem;
  padding: 5px 18px;
  border-radius: 100px;
  letter-spacing: 1.5px;
  margin-bottom: 1.8rem;
  text-transform: uppercase;
  font-weight: 400;
  position: relative; z-index: 1;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--cream);
  line-height: 1.1;
  max-width: 780px;
  margin: 0 auto 1.2rem;
  font-weight: 300;
  position: relative; z-index: 1;
  letter-spacing: -0.01em;
}
.hero h1 em {
  color: var(--gold-light);
  font-style: italic;
  font-weight: 300;
}

.hero-sub {
  color: rgba(250,247,240,0.55);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 2.8rem;
  font-weight: 300;
  line-height: 1.7;
  position: relative; z-index: 1;
}

/* Search */
.search-box {
  background: var(--white);
  border-radius: var(--r-lg);
  display: flex; align-items: center;
  max-width: 660px; margin: 0 auto;
  padding: 8px 8px 8px 22px; gap: 12px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(201,169,110,0.1);
  position: relative; z-index: 1;
  transition: box-shadow 0.3s;
}
.search-box:focus-within {
  box-shadow: var(--shadow-lg), 0 0 0 2px rgba(201,169,110,0.3);
}
.search-box input {
  flex: 1; border: none; outline: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.98rem; color: var(--ink);
  background: transparent;
}
.search-box input::placeholder { color: var(--ink-soft); }
.search-divider { width: 1px; height: 26px; background: var(--border); flex-shrink: 0; }
.search-box select {
  border: none; outline: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem; color: var(--ink);
  background: transparent; cursor: pointer; padding: 0 8px;
}
.search-btn {
  background: var(--terra); color: white; border: none;
  border-radius: var(--r-md);
  padding: 14px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem; font-weight: 500;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.search-btn:hover { background: var(--terra-light); transform: translateY(-1px); }

.hero-tags {
  display: flex; gap: 12px; justify-content: center;
  flex-wrap: wrap; margin-top: 1.8rem;
  position: relative; z-index: 1;
}
.hero-tag {
  color: rgba(250,247,240,0.45);
  font-size: 0.82rem; cursor: pointer;
  transition: color 0.2s; text-decoration: none;
  letter-spacing: 0.02em;
}
.hero-tag:hover { color: var(--gold-light); }
.hero-tag::before { content: '↗ '; }

/* ── Stats ────────────────────────────────────────────── */
.stats {
  display: flex; justify-content: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: 3.5rem 5%; border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; color: var(--forest);
  font-weight: 400; display: block; letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.78rem; color: var(--ink-soft);
  text-transform: uppercase; letter-spacing: 1px;
  font-weight: 400;
}

/* ── Section Basics ───────────────────────────────────── */
.section { padding: var(--section-pad) 5%; }

.section-label {
  font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 2px; color: var(--terra);
  font-weight: 500; margin-bottom: 0.6rem;
  display: block;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--forest); font-weight: 400;
  margin-bottom: 0.6rem; line-height: 1.15;
  letter-spacing: -0.01em;
}

.section-sub {
  color: var(--ink-soft); font-size: 1rem;
  max-width: 480px; margin-bottom: 3rem;
  font-weight: 300; line-height: 1.7;
}

/* ── Occasion Cards ───────────────────────────────────── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
}
.cat-card {
  border-radius: var(--r-lg); padding: 2.2rem 1.6rem;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.35s;
  position: relative; overflow: hidden;
  text-decoration: none; display: block;
}
.cat-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, transparent 60%);
  border-radius: inherit;
}
.cat-card:hover { transform: translateY(-6px) scale(1.01); box-shadow: var(--shadow-lg); }

.cat-card.romantic  { background: linear-gradient(145deg, #2D1B36, #1e1225); }
.cat-card.jga       { background: linear-gradient(145deg, #1E2D3A, #131d26); }
.cat-card.friends   { background: linear-gradient(145deg, #1A3A20, #0f2213); }
.cat-card.proposal  { background: linear-gradient(145deg, #3A1A1A, #251010); }
.cat-card.family    { background: linear-gradient(145deg, #2A2010, #1a150a); }

.cat-emoji { font-size: 2rem; display: block; margin-bottom: 1.2rem; }
.cat-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; color: var(--cream);
  font-weight: 400; margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}
.cat-desc { font-size: 0.82rem; color: rgba(250,247,240,0.45); font-weight: 300; line-height: 1.55; }

/* ── How It Works ─────────────────────────────────────── */
.how-bg { background: var(--forest); position: relative; overflow: hidden; }
.how-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(201,169,110,0.05) 0%, transparent 60%);
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem; margin-top: 3rem;
  position: relative;
}
.how-step { text-align: center; padding: 1rem; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.4rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; color: var(--gold-light);
  background: rgba(201,169,110,0.06);
  transition: background 0.3s, border-color 0.3s;
}
.how-step:hover .step-num {
  background: rgba(201,169,110,0.12);
  border-color: rgba(201,169,110,0.5);
}
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; color: var(--cream);
  margin-bottom: 0.6rem; font-weight: 400;
}
.step-desc { font-size: 0.86rem; color: rgba(250,247,240,0.5); font-weight: 300; line-height: 1.65; }

/* ── Provider Cards ───────────────────────────────────── */
.providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px; margin-top: 2.5rem;
}
.provider-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.35s;
  text-decoration: none; display: block; color: inherit;
}
.provider-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,169,110,0.2);
}
.card-image {
  height: 200px; display: flex; align-items: center;
  justify-content: center; position: relative;
  overflow: hidden;
}
.card-image img { transition: transform 0.5s ease; }
.provider-card:hover .card-image img { transform: scale(1.04); }
.card-img-1 { background: linear-gradient(135deg, #2D5A30, #4A8050); }
.card-img-2 { background: linear-gradient(135deg, #3A1A2A, #6B2D4A); }
.card-img-3 { background: linear-gradient(135deg, #1A2A3A, #2D4A6B); }
.card-img-4 { background: linear-gradient(135deg, #2A1A10, #6B4020); }
.card-img-icon { font-size: 4rem; opacity: 0.35; }
.card-badge {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  color: var(--ink); font-size: 0.72rem;
  padding: 4px 12px; border-radius: 100px; font-weight: 500;
  letter-spacing: 0.02em;
}
.card-body { padding: 1.4rem 1.6rem 1.6rem; }
.card-location {
  font-size: 0.72rem; color: var(--ink-soft);
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 0.4rem; font-weight: 400;
}
.card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; color: var(--ink);
  font-weight: 400; margin-bottom: 0.5rem;
  line-height: 1.3;
}
.card-desc {
  font-size: 0.84rem; color: var(--ink-soft);
  font-weight: 300; line-height: 1.6;
  margin-bottom: 1.1rem;
}
.card-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 1.1rem; }
.card-tag {
  background: var(--cream-warm); color: var(--forest-mid);
  font-size: 0.7rem; padding: 3px 10px;
  border-radius: 100px; border: 1px solid var(--border);
  letter-spacing: 0.02em;
}
.card-footer {
  display: flex; justify-content: space-between;
  align-items: center; border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.card-rating { font-size: 0.84rem; color: var(--ink); font-weight: 500; }
.card-price { font-size: 0.88rem; color: var(--ink-soft); font-weight: 300; }
.card-price strong { color: var(--forest); font-weight: 500; font-size: 1.05rem; }
.card-btn {
  background: var(--forest); color: white; border: none;
  border-radius: var(--r-sm); padding: 9px 18px;
  font-family: 'DM Sans', sans-serif; font-size: 0.84rem;
  font-weight: 400; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.card-btn:hover { background: var(--forest-mid); transform: translateY(-1px); }

/* ── Testimonials ─────────────────────────────────────── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px; margin-top: 2.5rem;
}
.testi-card {
  background: var(--cream-warm);
  border-radius: var(--r-lg); padding: 2rem;
  border: 1px solid var(--border-warm);
  transition: transform 0.3s, box-shadow 0.3s;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.testi-stars { color: var(--gold); font-size: 0.88rem; margin-bottom: 0.8rem; letter-spacing: 3px; }
.testi-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; color: var(--ink-mid);
  font-weight: 300; line-height: 1.75;
  margin-bottom: 1.2rem; font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; font-weight: 500; color: white; flex-shrink: 0;
}
.av-1 { background: var(--forest-mid); }
.av-2 { background: var(--terra); }
.av-3 { background: #7A5C3A; }
.av-4 { background: #4A6B8A; }
.testi-name { font-size: 0.88rem; font-weight: 500; color: var(--ink); }
.testi-loc { font-size: 0.78rem; color: var(--ink-soft); }

/* ── Provider CTA Banner ──────────────────────────────── */
.provider-cta {
  background: linear-gradient(135deg, var(--cream-warm), var(--cream-deep));
  border-radius: var(--r-xl); padding: 3.5rem;
  display: flex; align-items: center;
  justify-content: space-between; gap: 2rem;
  margin: 0 5% 80px;
  border: 1px solid var(--border-warm);
  flex-wrap: wrap;
  box-shadow: var(--shadow-gold);
}
.cta-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; color: var(--forest);
  font-weight: 400; margin-bottom: 0.5rem;
}
.cta-text p { color: var(--ink-soft); font-size: 0.95rem; font-weight: 300; max-width: 440px; }
.cta-benefits { display: flex; gap: 1rem; margin-top: 1.2rem; flex-wrap: wrap; }
.cta-benefit { font-size: 0.84rem; color: var(--forest-mid); }

/* ── Buttons ──────────────────────────────────────────── */
.btn-primary {
  background: var(--terra); color: white; border: none;
  border-radius: 100px; padding: 15px 36px;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem;
  font-weight: 400; cursor: pointer;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  text-decoration: none; display: inline-block;
  letter-spacing: 0.03em;
}
.btn-primary:hover {
  background: var(--terra-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,92,56,0.3);
}

.btn-outline {
  background: transparent; color: var(--forest);
  border: 1.5px solid var(--forest); border-radius: 100px;
  padding: 14px 32px;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem;
  font-weight: 400; cursor: pointer;
  transition: background 0.25s, color 0.25s, transform 0.2s;
  text-decoration: none; display: inline-block;
  letter-spacing: 0.03em;
}
.btn-outline:hover { background: var(--forest); color: var(--cream); transform: translateY(-2px); }

/* ── Vollservice Box ──────────────────────────────────── */
.vollservice-box {
  background: var(--forest);
  border-radius: var(--r-lg);
  padding: 2.5rem 2.5rem 2rem;
  margin: 2rem 5%;
}
.vollservice-box .section-label {
  color: var(--gold-light) !important;
  margin-bottom: 1.5rem;
}
.vollservice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.vollservice-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.86rem; color: rgba(250,247,240,0.75);
  font-weight: 300; line-height: 1.5;
  padding: 0.9rem 1rem;
  background: rgba(255,255,255,0.06);
  border-radius: var(--r-sm);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s, border-color 0.2s;
}
.vollservice-item:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(201,169,110,0.25);
  color: rgba(250,247,240,0.95);
}
.vs-icon {
  font-size: 1.2rem; flex-shrink: 0;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
}
@media (max-width: 640px) {
  .vollservice-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 400px) {
  .vollservice-grid { grid-template-columns: 1fr; }
}

/* ── Form Inputs (global) ─────────────────────────────── */
input[type="text"], input[type="email"], input[type="tel"],
input[type="search"], textarea, select {
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--forest-mid) !important;
  box-shadow: 0 0 0 3px rgba(42,80,53,0.1);
  background: var(--white) !important;
}

/* ── Breadcrumb ───────────────────────────────────────── */
.breadcrumb {
  padding: 12px 5%; font-size: 0.78rem;
  color: var(--ink-soft); display: flex; align-items: center;
  gap: 6px; background: var(--white);
  border-bottom: 1px solid var(--border);
}
.breadcrumb a { color: var(--ink-soft); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--forest); }

/* ── Nearby City Cards ────────────────────────────────── */
.nearby-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.2rem 1.5rem;
  text-decoration: none; color: inherit; display: block;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.nearby-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,169,110,0.3);
}
.nearby-city { font-weight: 500; font-size: 0.95rem; color: var(--forest); margin-bottom: 2px; }
.nearby-label { font-size: 0.78rem; color: var(--ink-soft); font-weight: 300; }

/* ── Content Grid ─────────────────────────────────────── */
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px; margin-top: 1.5rem;
}
.spot-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 1.5rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.spot-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.spot-icon { font-size: 1.8rem; margin-bottom: 0.8rem; display: block; }
.spot-name { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--forest); font-weight: 400; margin-bottom: 0.4rem; }
.spot-desc { font-size: 0.84rem; color: var(--ink-soft); font-weight: 300; line-height: 1.55; }

/* ── Price Table ──────────────────────────────────────── */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px; margin-top: 1.5rem;
}
.price-card {
  border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 1.5rem; text-align: center;
  background: var(--white);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,169,110,0.4);
  box-shadow: var(--shadow-gold);
}
.price-card.featured {
  background: var(--forest); border-color: var(--forest);
  color: var(--cream);
}
.price-name { font-weight: 500; font-size: 0.9rem; margin-bottom: 0.5rem; letter-spacing: 0.05em; text-transform: uppercase; font-size: 0.75rem; color: var(--ink-soft); }
.price-card.featured .price-name { color: var(--sage-light); }
.price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 300;
  color: var(--forest); margin: 0.5rem 0;
}
.price-card.featured .price-amount { color: var(--cream); }
.price-persons { font-size: 0.8rem; color: var(--ink-soft); font-weight: 300; }
.price-card.featured .price-persons { color: rgba(250,247,240,0.6); }

/* ── Anlass Tags (City pages) ─────────────────────────── */
.city-tag {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  color: rgba(250,247,240,0.7);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 6px 16px; font-size: 0.82rem;
  text-decoration: none; font-weight: 300;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.city-tag:hover {
  background: rgba(255,255,255,0.18);
  color: var(--cream); border-color: rgba(255,255,255,0.25);
}

/* ── FAQ ──────────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; background: none; border: none; text-align: left;
  padding: 1.3rem 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.96rem; font-weight: 400; color: var(--ink);
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 1rem;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--forest); }
.faq-icon { color: var(--terra); font-size: 1.2rem; flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none; padding: 0 0 1.3rem;
  font-size: 0.9rem; color: var(--ink-soft);
  font-weight: 300; line-height: 1.8;
}
.faq-item.open .faq-answer { display: block; }

/* ── Quickinfo Bar ────────────────────────────────────── */
.quickinfo-bar {
  display: flex; flex-wrap: wrap;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md); overflow: hidden;
  margin: 2rem 5% 0;
  box-shadow: var(--shadow-sm);
}
.qi-item {
  flex: 1; min-width: 160px;
  padding: 1.1rem 1.3rem;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.qi-item:last-child { border-right: none; }
.qi-item:hover { background: var(--cream); }
.qi-label {
  font-size: 0.65rem; text-transform: uppercase;
  letter-spacing: 1.2px; color: var(--ink-soft);
  font-weight: 500; margin-bottom: 4px; display: block;
}
.qi-value { font-size: 0.86rem; color: var(--ink); font-weight: 400; line-height: 1.4; }

/* ── CTA Section (dark) ───────────────────────────────── */
.cta-section {
  background: var(--forest); padding: 80px 5%; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,169,110,0.06) 0%, transparent 70%);
}
.cta-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--cream); font-weight: 300;
  margin-bottom: 0.8rem; position: relative;
}
.cta-section p {
  color: rgba(250,247,240,0.55); font-size: 1rem;
  font-weight: 300; max-width: 480px;
  margin: 0 auto 2.5rem; line-height: 1.7;
  position: relative;
}

/* ── Footer ───────────────────────────────────────────── */
footer {
  background: var(--forest);
  padding: 4rem 5% 2rem;
  color: rgba(250,247,240,0.55);
  border-top: 1px solid rgba(201,169,110,0.1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}
.footer-desc {
  font-size: 0.84rem; line-height: 1.75;
  font-weight: 300; max-width: 260px; margin-top: 0.8rem;
}
.footer-col h4 {
  color: var(--cream); font-size: 0.78rem; font-weight: 500;
  margin-bottom: 1.2rem; text-transform: uppercase;
  letter-spacing: 1.2px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a {
  color: rgba(250,247,240,0.45); text-decoration: none;
  font-size: 0.84rem; font-weight: 300;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex; justify-content: space-between;
  font-size: 0.76rem; flex-wrap: wrap; gap: 1rem;
  color: rgba(250,247,240,0.3);
}

/* ── Divider ──────────────────────────────────────────── */
.divider { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }

/* Content section */
.content-section { padding: 60px 5%; }


/* ── Photo Hero (Startseite) ──────────────────────────── */
.hero-photo {
  background: #1A2015;
  min-height: 92vh;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-photo::before { display: none; } /* remove wave */

.hero-photo {
  background-image: url('img/hero-picknick-golden-hour.jpg');
  background-size: cover;
  background-position: center 40%;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15,10,5,0.25) 0%,
    rgba(10,8,4,0.45) 40%,
    rgba(15,10,5,0.7) 100%
  );
}

.hero-content {
  position: relative; z-index: 1;
  text-align: center;
  padding: 60px 5% 80px;
  max-width: 780px;
  margin: 0 auto;
  width: 100%;
}

.hero-photo .hero-badge {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}

.hero-photo h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: #FFFFFF;
  font-weight: 300;
  line-height: 1.08;
  margin: 1.2rem auto 1rem;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}
.hero-photo h1 em {
  color: #F2C882;
  font-style: italic;
}

.hero-photo .hero-sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  text-shadow: 0 1px 10px rgba(0,0,0,0.3);
}

/* Glass search bar */
.search-glass {
  display: flex;
  align-items: center;
  max-width: 660px;
  margin: 0 auto 2rem;
  background: rgba(255,248,235,0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 100px;
  padding: 6px 6px 6px 22px;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  transition: background 0.3s, box-shadow 0.3s;
}
.search-glass:focus-within {
  background: rgba(255,248,235,0.92);
  box-shadow: 0 8px 40px rgba(0,0,0,0.25), 0 0 0 2px rgba(197,106,61,0.3);
}
.search-glass .search-wrapper {
  flex: 1; display: flex; align-items: center;
  gap: 10px; color: white; min-width: 0;
}
.search-glass input {
  flex: 1; border: none; outline: none;
  background: transparent !important;
  -webkit-appearance: none;
  box-shadow: none !important;
  color: #3A2810;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.96rem; font-weight: 400;
  letter-spacing: 0.01em;
  min-width: 0;
}
.search-glass input::placeholder { color: rgba(90,65,35,0.5); }
.search-glass input:-webkit-autofill,
.search-glass input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
  background-color: transparent !important;
}

.search-btn-warm {
  background: linear-gradient(135deg, #C56A3D, #D4785A);
  color: white; border: none;
  border-radius: 100px;
  padding: 13px 26px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem; font-weight: 500;
  cursor: pointer; white-space: nowrap;
  letter-spacing: 0.02em;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(197,106,61,0.4);
  flex-shrink: 0;
}
.search-btn-warm:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(197,106,61,0.5);
}

.hero-photo .hero-tag {
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.8rem;
  transition: color 0.2s, background 0.2s;
}
.hero-photo .hero-tag:hover {
  color: white;
  background: rgba(255,255,255,0.1);
}
.hero-photo .hero-tag::before { content: ''; }
.hero-photo .hero-tags {
  display: flex; gap: 8px;
  justify-content: center; flex-wrap: wrap;
}


/* Nav logo slogan */
.nav-slogan {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(250,247,240,0.4);
  letter-spacing: 0.04em;
  margin-left: 4px;
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .provider-cta { flex-direction: column; text-align: center; margin: 0 4% 60px; padding: 2.5rem; }
  .search-box { flex-wrap: wrap; padding: 12px; border-radius: var(--r-md); }
  .search-divider { display: none; }
  nav .hide-mobile { display: none; }
  .qi-item { border-right: none; border-bottom: 1px solid var(--border); }
  .qi-item:last-child { border-bottom: none; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stats { gap: 2rem; }
}

/* ── City editorial heading ─────────────────────────────── */
.city-editorial-header { margin-bottom: 2rem; }
.city-editorial-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--forest);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 0.3rem;
}
.city-editorial-sub {
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.02em;
}
