/* ═══════════════════════════════════════════════
   BUSSJANS HOF – Gemeinsames Stylesheet
   ═══════════════════════════════════════════════ */

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

:root {
  --cream: #FAF7F2;
  --warm-white: #FFFEF9;
  --green: #3A5A40;
  --green-dark: #2C4430;
  --green-light: #6A8E72;
  --gold: #B5873A;
  --gold-light: #D4A855;
  --charcoal: #2D2D2D;
  --mid-gray: #666;
  --light-gray: #E8E4DC;
  --shadow: 0 4px 30px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 50px rgba(0,0,0,0.15);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--warm-white); color: var(--charcoal); line-height: 1.7; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
  background: rgba(255,254,249,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(181,135,58,0.15);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav-logo { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--green-dark); text-decoration: none; font-weight: 700; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 1.6rem; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; font-size: 0.85rem; font-weight: 500; color: var(--charcoal); letter-spacing: 0.04em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); }
.nav-cta { background: var(--green); color: #fff !important; padding: 0.55rem 1.2rem; border-radius: 4px; transition: background 0.2s !important; }
.nav-cta:hover { background: var(--green-dark) !important; }

/* ─── DROPDOWN NAV ─── */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.7rem; }
/* Invisible bridge: prevents gap between nav link and dropdown */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%; left: 0; right: 0;
  height: 12px;
  display: none;
}
.nav-dropdown:hover::after { display: block; }
.dropdown-menu {
  display: none;
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%);
  background: #fff; border-radius: 8px; min-width: 180px;
  box-shadow: var(--shadow-lg); padding: 0.5rem 0;
  z-index: 200;
  border: 1px solid var(--light-gray);
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block; padding: 0.55rem 1.2rem;
  font-size: 0.82rem; color: var(--charcoal);
  text-decoration: none; text-transform: none; letter-spacing: 0;
  transition: background 0.15s, color 0.15s;
}
.dropdown-menu a:hover { background: var(--cream); color: var(--gold); }

/* ─── BURGER MENU ─── */
.burger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer; padding: 4px;
  z-index: 110;
}
.burger span {
  display: block; width: 24px; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
@media (max-width: 900px) {
  .burger { display: flex; }
  .nav-links {
    display: flex !important;
    flex-direction: column;
    /* top:0 + padding-top:70px so translateY(-100%) hides it fully above viewport */
    position: fixed; top: 0; left: 0; right: 0;
    background: rgba(255,254,249,0.99);
    backdrop-filter: blur(12px);
    padding: 70px 1.5rem 2rem;
    max-height: 100vh; overflow-y: auto;
    gap: 0;
    border-bottom: 1px solid var(--light-gray);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transform: translateY(-100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    pointer-events: none;
    z-index: 99; /* below nav z-index:100 so nav bar stays on top */
  }
  .nav-links.open {
    transform: translateY(0);
    pointer-events: all;
  }
  .nav-links li { border-bottom: 1px solid var(--light-gray); }
  .nav-links li:last-child { border-bottom: none; margin-top: 0.8rem; }
  .nav-links > li > a {
    display: block; padding: 0.85rem 0;
    font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.06em;
  }
  .nav-dropdown > a::after { content: ' ▾'; }
  .dropdown-menu {
    position: static; transform: none;
    box-shadow: none; border: none;
    background: transparent;
    padding: 0 0 0.5rem 1rem;
    display: none !important;
  }
  .dropdown-menu.open { display: block !important; }
  .dropdown-menu a {
    padding: 0.5rem 0;
    font-size: 0.85rem;
    color: var(--mid-gray);
    border-bottom: none;
  }
  .nav-cta {
    display: inline-block; margin-top: 0.3rem;
    padding: 0.7rem 1.5rem !important;
  }
}

/* ─── WHATSAPP FLOATING BUTTON ─── */
.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  width: 56px; height: 56px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }

/* ─── BUTTONS ─── */
.btn-primary { display: inline-block; background: var(--gold); color: #fff; padding: 0.85rem 2rem; border-radius: 4px; text-decoration: none; font-weight: 600; font-size: 0.9rem; letter-spacing: 0.04em; transition: background 0.2s, transform 0.2s; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline-dark { display: inline-block; border: 2px solid var(--green); color: var(--green); padding: 0.85rem 2rem; border-radius: 4px; text-decoration: none; font-weight: 500; font-size: 0.9rem; letter-spacing: 0.04em; transition: border-color 0.2s, background 0.2s, color 0.2s; }
.btn-outline-dark:hover { background: var(--green); color: #fff; }
.btn-outline { display: inline-block; border: 2px solid rgba(255,255,255,0.7); color: #fff; padding: 0.85rem 2rem; border-radius: 4px; text-decoration: none; font-weight: 500; font-size: 0.9rem; letter-spacing: 0.04em; transition: border-color 0.2s, background 0.2s; }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* ─── SECTION BASICS ─── */
section { padding: 6rem 5vw; }
.section-eyebrow { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 0.8rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); line-height: 1.25; color: var(--green-dark); margin-bottom: 1.2rem; }
.section-lead { font-size: 1.05rem; color: var(--mid-gray); max-width: 580px; font-weight: 300; }
.divider { width: 50px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 2px; margin: 1.2rem 0 1.8rem; }

/* ─── HERO (Startseite) ─── */
.hero { position: relative; height: 100vh; min-height: 650px; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center 40%; transform: scale(1.05); animation: heroZoom 12s ease-out forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(44,68,48,0.72) 0%, rgba(0,0,0,0.25) 60%, transparent 100%); }
.hero-content { position: relative; z-index: 2; max-width: 720px; padding: 0 6vw; animation: fadeUp 1s 0.3s both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 0.6rem; font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-light); font-weight: 600; margin-bottom: 1.2rem; }
.hero-eyebrow::before { content: ''; display: block; width: 30px; height: 1px; background: var(--gold-light); }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 5.5vw, 4rem); line-height: 1.18; color: #fff; margin-bottom: 1.4rem; font-weight: 700; }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero p { font-size: 1.05rem; color: rgba(255,255,255,0.88); max-width: 520px; margin-bottom: 2.2rem; font-weight: 300; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-rating {
  position: absolute; bottom: 2.5rem; right: 5vw;
  background: rgba(255,254,249,0.97); border-radius: 12px;
  padding: 1rem 1.5rem; display: flex; align-items: center; gap: 1.2rem;
  box-shadow: var(--shadow-lg); animation: fadeUp 1s 0.7s both;
}
.hero-rating .big-score { font-family: 'Playfair Display', serif; font-size: 2.6rem; font-weight: 700; color: var(--green-dark); line-height: 1; }
.hero-rating .rating-right { display: flex; flex-direction: column; gap: 0.25rem; }
.hero-rating .stars { color: #F4C55A; font-size: 1.15rem; letter-spacing: 0.05em; }
.hero-rating .rating-count { font-size: 0.78rem; color: var(--mid-gray); }
.hero-rating .google-badge { display: flex; align-items: center; gap: 0.35rem; font-size: 0.78rem; color: var(--mid-gray); }

/* ─── PAGE HERO (Unterseiten) ─── */
.page-hero {
  position: relative;
  height: 380px;
  display: flex; align-items: flex-end;
  overflow: hidden;
  margin-top: 70px;
}
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(44,68,48,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%); }
.page-hero-content {
  position: relative; z-index: 2;
  padding: 2.5rem 6vw;
  color: #fff;
}
.page-hero-content .breadcrumb { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-bottom: 0.6rem; }
.page-hero-content .breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; }
.page-hero-content .breadcrumb a:hover { color: var(--gold-light); }
.page-hero-content .breadcrumb span { margin: 0 0.4rem; }
.page-hero-content h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.2; }
.page-hero-content .page-eyebrow { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); font-weight: 600; margin-bottom: 0.6rem; }

/* ─── CONTENT SPLIT (Unterseiten) ─── */
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.content-split.img-right { }
.content-split img {
  width: 100%; border-radius: 14px;
  object-fit: cover; display: block;
  box-shadow: var(--shadow-lg);
}
.content-split .text-col h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--green-dark); margin-bottom: 0.4rem;
}
.content-split .text-col p { color: var(--mid-gray); font-size: 0.97rem; margin-bottom: 1rem; line-height: 1.75; }
.content-split .text-col ul { list-style: none; margin: 1rem 0; }
.content-split .text-col ul li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.92rem; color: var(--mid-gray); margin-bottom: 0.5rem; }
.content-split .text-col ul li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.content-split blockquote { border-left: 3px solid var(--gold); padding-left: 1.2rem; font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.05rem; color: var(--green-dark); margin: 1.5rem 0; }

/* ─── FULL-WIDTH IMAGE ─── */
.full-img { width: 100%; max-height: 500px; object-fit: cover; display: block; }
.rounded-img { border-radius: 14px; box-shadow: var(--shadow-lg); }

/* ─── INFO CARDS ─── */
.info-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.info-card { background: #fff; border-radius: 12px; padding: 1.8rem; box-shadow: var(--shadow); border-top: 3px solid var(--gold); }
.info-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--green-dark); margin-bottom: 0.6rem; }
.info-card p { font-size: 0.9rem; color: var(--mid-gray); line-height: 1.65; }
.info-card .price { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--gold); font-weight: 700; margin-bottom: 0.4rem; }

/* ─── DATES LIST ─── */
.dates-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; margin: 1.5rem 0; }
.date-item {
  background: var(--cream); border-radius: 10px; padding: 1rem 1.2rem;
  border-left: 3px solid var(--gold);
  font-size: 0.95rem; color: var(--charcoal); font-weight: 500;
}

/* ─── NOTICE BOX ─── */
.notice-box {
  background: var(--cream); border-radius: 10px; padding: 1.5rem 1.8rem;
  border-left: 4px solid var(--gold); margin-top: 1.5rem;
}
.notice-box p { font-size: 0.9rem; color: var(--mid-gray); margin-bottom: 0.4rem; }
.notice-box p:last-child { margin-bottom: 0; }

/* ─── CTA BANNER ─── */
.cta-banner {
  background: var(--green-dark); color: #fff;
  padding: 4rem 5vw; text-align: center;
}
.cta-banner h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 0.8rem; }
.cta-banner p { color: rgba(255,255,255,0.75); max-width: 520px; margin: 0 auto 2rem; font-size: 0.97rem; }
.cta-banner .btn-primary { background: var(--gold); }
.cta-banner .btn-primary:hover { background: var(--gold-light); }

/* ─── INTRO SPLIT (Startseite) ─── */
.intro-split {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 4rem; align-items: center;
  padding: 5rem 6vw; background: var(--warm-white);
}
.intro-text-wrap { display: flex; flex-direction: column; }
.intro-text-wrap h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.2; color: var(--green-dark); margin-bottom: 0.4rem; font-weight: 700; }
.intro-text-wrap p { font-size: 0.97rem; color: var(--mid-gray); font-weight: 300; line-height: 1.75; margin-bottom: 0.8rem; }
.intro-hours { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 0.4rem; font-size: 0.85rem; color: var(--green); font-weight: 500; }
.intro-hours::before { content: '☕'; }
.intro-stats { margin-top: 2.5rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.stat { display: flex; flex-direction: column; align-items: flex-start; padding: 1.1rem 1rem; background: var(--cream); border-radius: 10px; border-top: 3px solid var(--gold); }
.stat strong { font-family: 'Playfair Display', serif; font-size: 1.7rem; color: var(--green-dark); line-height: 1; margin-bottom: 0.3rem; }
.stat span { font-size: 0.78rem; color: var(--mid-gray); line-height: 1.4; }
.intro-img-wrap { position: relative; padding-bottom: 80px; padding-right: 20px; }
.intro-img-main { width: 100%; height: 480px; object-fit: cover; border-radius: 20px; display: block; box-shadow: var(--shadow-lg); }
.intro-img-secondary, .intro-img-tertiary, .intro-img-softeis {
  position: absolute; width: 190px; height: 145px;
  object-fit: cover; object-position: center;
  border-radius: 14px; border: 4px solid #fff;
  box-shadow: var(--shadow-lg); display: block;
}
.intro-img-secondary { bottom: 0; left: -16px; }
.intro-img-tertiary  { bottom: 0; right: -16px; }
.intro-img-softeis   { bottom: 0; left: 50%; transform: translateX(-50%); }

/* ─── ANGEBOTE GRID ─── */
.offers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3.5rem; }
.offer-card { border-radius: 12px; overflow: hidden; background: #fff; box-shadow: var(--shadow); transition: transform 0.3s, box-shadow 0.3s; display: flex; flex-direction: column; }
.offer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.offer-img { width: 100%; height: 240px; object-fit: cover; display: block; }
.offer-body { padding: 1.8rem; flex: 1; display: flex; flex-direction: column; }
.offer-tag { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 0.6rem; }
.offer-body h3 { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: var(--green-dark); margin-bottom: 0.7rem; }
.offer-body p { font-size: 0.92rem; color: var(--mid-gray); line-height: 1.65; flex: 1; }
.offer-link { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1.3rem; color: var(--green); font-weight: 600; font-size: 0.88rem; text-decoration: none; transition: color 0.2s; }
.offer-link::after { content: '→'; transition: transform 0.2s; }
.offer-link:hover { color: var(--gold); }
.offer-link:hover::after { transform: translateX(4px); }

/* ─── GOOGLE BEWERTUNGEN ─── */
.reviews-section { background: var(--warm-white); }
.reviews-header { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 3.5rem; }
.reviews-summary { display: flex; align-items: center; gap: 2rem; background: #fff; border-radius: 12px; padding: 1.5rem 2rem; box-shadow: var(--shadow); }
.reviews-summary .big-score { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 700; color: var(--green-dark); line-height: 1; }
.reviews-summary .stars-row { color: #F4C55A; font-size: 1.3rem; letter-spacing: 0.05em; }
.reviews-summary .count { font-size: 0.82rem; color: var(--mid-gray); margin-top: 0.2rem; }
.google-badge { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: var(--mid-gray); }
.google-badge .g-logo { width: 28px; height: 28px; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.review-card { background: #fff; border-radius: 12px; padding: 1.8rem; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 1rem; transition: transform 0.2s; }
.review-card:hover { transform: translateY(-3px); }
.review-top { display: flex; align-items: center; gap: 0.9rem; }
.reviewer-avatar { width: 44px; height: 44px; border-radius: 50%; color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.reviewer-name { font-weight: 600; font-size: 0.95rem; color: var(--charcoal); }
.reviewer-meta { font-size: 0.75rem; color: var(--mid-gray); }
.review-stars { color: #F4C55A; font-size: 0.9rem; }
.review-text { font-size: 0.9rem; color: #555; line-height: 1.65; font-style: italic; }
.review-text::before { content: '„'; }
.review-text::after { content: '"'; }
.review-source { display: flex; align-items: center; gap: 0.4rem; font-size: 0.73rem; color: #aaa; margin-top: auto; }
.reviews-cta { text-align: center; margin-top: 3rem; }
.btn-google { display: inline-flex; align-items: center; gap: 0.6rem; background: #fff; border: 2px solid var(--light-gray); color: var(--charcoal); padding: 0.85rem 2rem; border-radius: 6px; text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: border-color 0.2s, box-shadow 0.2s; }
.btn-google:hover { border-color: var(--gold); box-shadow: var(--shadow); }

/* ─── KONTAKT ─── */
.contact-section {
  background: var(--green-dark); padding: 5rem 5vw;
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 4rem; align-items: start;
}
.contact-left { display: flex; flex-direction: column; }
.contact-left .section-eyebrow { color: var(--gold-light); }
.contact-left .section-title { color: #fff; font-size: clamp(1.6rem, 2.5vw, 2.2rem); }
.contact-left .divider { background: linear-gradient(90deg, var(--gold-light), transparent); }
.contact-items { margin-top: 1.8rem; display: flex; flex-direction: column; gap: 1rem; }
.contact-item { display: flex; align-items: center; gap: 1rem; }
.contact-icon { width: 42px; height: 42px; flex-shrink: 0; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.contact-item-text strong { display: block; font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 0.1rem; font-weight: 600; }
.contact-item-text span, .contact-item-text a { font-size: 0.92rem; color: rgba(255,255,255,0.85); text-decoration: none; }
.contact-item-text a:hover { color: var(--gold-light); }
.contact-social { margin-top: 2rem; }
.contact-social strong { display: block; font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 0.8rem; font-weight: 600; }
.social-links { display: flex; gap: 0.6rem; }
.social-btn { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; color: rgba(255,255,255,0.8); font-size: 0.95rem; transition: background 0.2s, border-color 0.2s, color 0.2s; }
.social-btn:hover { background: rgba(181,135,58,0.3); border-color: var(--gold-light); color: var(--gold-light); }
.contact-map-wrap { border-radius: 14px; overflow: hidden; box-shadow: 0 8px 40px rgba(0,0,0,0.3); height: 420px; align-self: start; }
.contact-map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* ─── FOOTER ─── */
footer { background: var(--charcoal); color: rgba(255,255,255,0.6); padding: 2rem 5vw; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: 0.82rem; }
footer a { color: rgba(255,255,255,0.5); text-decoration: none; margin-left: 1.5rem; }
footer a:hover { color: var(--gold-light); }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: #fff; }
.footer-logo span { color: var(--gold-light); }

/* ─── SCROLL ANIMATIONS ─── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .offers-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  /* Layouts */
  .intro-split { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 5vw; }
  .intro-img-main { height: 300px; }
  .intro-img-secondary, .intro-img-tertiary, .intro-img-softeis { width: 110px; height: 84px; border-width: 3px; }
  .intro-img-secondary { left: 6px; }
  .intro-img-tertiary  { right: 6px; }
  .intro-img-softeis   { bottom: 0; left: 50%; transform: translateX(-50%); }
  .intro-img-wrap { padding-bottom: 60px; padding-right: 10px; }
  .intro-stats { grid-template-columns: repeat(2, 1fr); }

  /* Content split: collapse to 1 column, reset RTL trick */
  .content-split { grid-template-columns: 1fr; direction: ltr !important; gap: 2rem; }
  .content-split > * { direction: ltr !important; }
  /* Reduce fixed image heights when stacked */
  .content-split img[style*="height"] { height: 260px !important; }

  /* Contact */
  .contact-section { grid-template-columns: 1fr; gap: 2rem; }
  .contact-map-wrap { height: 300px; }

  /* Reviews */
  .reviews-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .reviews-summary { width: 100%; }

  /* Hero & page */
  .page-hero { height: 260px; }

  /* Mosaic gallery (eventlocation) */
  .photo-mosaic { grid-template-columns: 1fr 1fr !important; grid-template-rows: 200px 200px 200px !important; }
}

@media (max-width: 650px) {
  .offers-grid { grid-template-columns: 1fr; }
  .dates-list { grid-template-columns: repeat(2, 1fr) !important; }
  .photo-mosaic { grid-template-columns: 1fr !important; grid-template-rows: repeat(6, 200px) !important; }
  .checklist-grid { grid-template-columns: 1fr !important; }
  .price-cards-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 600px) {
  .hero-rating { display: none; }
  section { padding: 3.5rem 4vw; }
  .cta-banner { padding: 3rem 5vw; }

  /* Intro stats: single column */
  .intro-stats { grid-template-columns: 1fr; }

  /* Buttons stack */
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn-primary, .hero-actions .btn-outline { width: 100%; text-align: center; }

  /* Reviews summary: compact */
  .reviews-summary { flex-wrap: wrap; gap: 0.8rem; padding: 1.2rem; }
  .reviews-summary .big-score { font-size: 2.8rem; }

  /* Footer: stack vertically */
  footer { flex-direction: column; text-align: center; gap: 0.6rem; }
  footer > div:last-child { display: flex; justify-content: center; flex-wrap: wrap; gap: 0; }
  footer a { margin-left: 0.8rem; }

  /* Contact section tighter */
  .contact-section { padding: 3rem 4vw; }
  .contact-items { gap: 0.8rem; }
}
