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

:root {
  --green-deep: #2d4a2d;
  --green-mid: #4a7c4a;
  --green-light: #7ab87a;
  --green-pale: #e8f3e8;
  --cream: #faf7f2;
  --earth: #8b6914;
  --earth-light: #c9a84c;
  --text-dark: #1a2b1a;
  --text-mid: #4a5a4a;
  --white: #ffffff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 5vw;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
  background: rgba(250,247,242,0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(74,124,74,0.12);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 32px rgba(45,74,45,0.10); }

.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-leaf {
  width: 36px; height: 36px;
  background: var(--green-mid);
  border-radius: 50% 4px 50% 4px;
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-leaf svg { width: 20px; height: 20px; fill: white; }
.nav-logo-text { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--green-deep); line-height: 1.1; }
.nav-logo-text span { display: block; font-size: 0.7rem; font-family: 'DM Sans', sans-serif; color: var(--green-light); letter-spacing: 0.12em; text-transform: uppercase; }

#primary-menu { display: flex; gap: 2rem; list-style: none; }
#primary-menu .menu-item > a {
  text-decoration: none; color: var(--text-mid); font-size: 0.9rem; font-weight: 500;
  position: relative; padding-bottom: 3px; letter-spacing: 0.02em;
  transition: color 0.2s;
}
#primary-menu .menu-item > a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1.5px;
  background: var(--green-mid); transition: width 0.3s;
}
#primary-menu .menu-item > a:hover { color: var(--green-deep); }
#primary-menu .menu-item > a:hover::after,
#primary-menu .current-menu-item > a::after { width: 100%; }
#primary-menu .menu-item.menu-cta > a {
  background: var(--green-mid); color: white !important;
  padding: 8px 20px; border-radius: 24px;
  transition: background 0.2s !important;
}
#primary-menu .menu-item.menu-cta > a::after { display: none !important; }
#primary-menu .menu-item.menu-cta > a:hover { background: var(--green-deep) !important; }

.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--green-deep); border-radius: 2px; transition: all 0.3s; }
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

#mobile-menu {
  display: none; position: fixed; top: 70px; left: 0; right: 0; bottom: 0;
  background: var(--cream); z-index: 90; padding: 2rem 5vw; overflow-y: auto;
}
#mobile-menu.open { display: block; }
#mobile-menu .menu-item { border-bottom: 1px solid rgba(74,124,74,0.12); }
#mobile-menu .menu-item > a { display: block; padding: 1rem 0; font-size: 1.1rem; color: var(--green-deep); font-weight: 500; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  padding-top: 70px; overflow: hidden;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 8vw 5vw 8vw 8vw;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-pale); color: var(--green-mid);
  padding: 6px 16px; border-radius: 20px; font-size: 0.78rem;
  font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 2rem; width: fit-content;
  animation: fadeUp 0.7s 0.2s both;
}
.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.1; color: var(--green-deep);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.7s 0.35s both;
}
.hero-h1 em { font-style: italic; color: var(--green-mid); }
.hero-p {
  font-size: 1.05rem; color: var(--text-mid); line-height: 1.7;
  max-width: 460px; margin-bottom: 2.5rem; font-weight: 300;
  animation: fadeUp 0.7s 0.5s both;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp 0.7s 0.65s both; }
.btn-primary {
  background: var(--green-mid); color: white;
  padding: 14px 32px; border-radius: 32px; text-decoration: none;
  font-weight: 500; font-size: 0.95rem;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(74,124,74,0.3);
}
.btn-primary:hover { background: var(--green-deep); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(74,124,74,0.35); }
.btn-ghost {
  border: 1.5px solid var(--green-mid); color: var(--green-mid);
  padding: 13px 30px; border-radius: 32px; text-decoration: none;
  font-weight: 500; font-size: 0.95rem; transition: all 0.2s;
}
.btn-ghost:hover { background: var(--green-pale); transform: translateY(-2px); }
.hero-hours {
  margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid rgba(74,124,74,0.15);
  display: flex; gap: 2rem; flex-wrap: wrap;
  animation: fadeUp 0.7s 0.8s both;
}
.hour-item .label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--green-light); font-weight: 500; }
.hour-item .time  { font-weight: 500; color: var(--green-deep); font-size: 0.9rem; margin-top: 2px; }

.hero-right { position: relative; overflow: hidden; animation: fadeIn 1s 0.3s both; }
.hero-right::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, var(--cream) 0%, transparent 35%);
  z-index: 2; pointer-events: none;
}
.hero-photo-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; height: 100%; gap: 4px; }
.hero-photo { overflow: hidden; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 8s ease; }
.hero-photo:hover img { transform: scale(1.05); }
.hero-photo:nth-child(1) { grid-row: span 2; }

.hero-badge {
  position: absolute; bottom: 10%; left: -40px; z-index: 10;
  background: white; border-radius: 16px; padding: 16px 20px;
  box-shadow: 0 8px 40px rgba(45,74,45,0.18);
  animation: fadeUp 0.7s 1s both, float 4s 1.7s ease-in-out infinite;
}
.hero-badge-inner { display: flex; align-items: center; gap: 12px; }
.hero-badge-icon { width: 40px; height: 40px; background: var(--green-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.hero-badge-text strong { display: block; font-size: 0.9rem; color: var(--green-deep); }
.hero-badge-text span { font-size: 0.75rem; color: var(--text-mid); }

/* ── MARQUEE ── */
.marquee-wrap { background: var(--green-deep); padding: 14px 0; overflow: hidden; }
.marquee-track { display: flex; gap: 4rem; width: max-content; animation: marquee 28s linear infinite; }
.marquee-item { font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; white-space: nowrap; color: rgba(255,255,255,0.85); }
.marquee-dot { color: var(--earth-light); }

/* ── SECTION COMMONS ── */
.section { padding: 6rem 8vw; }
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--green-mid); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1rem;
}
.section-tag::before { content: ''; width: 24px; height: 1.5px; background: var(--green-mid); }
.section-h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.5vw, 3rem); color: var(--green-deep); line-height: 1.2; margin-bottom: 1rem; }
.section-p { font-size: 1rem; color: var(--text-mid); line-height: 1.7; max-width: 580px; font-weight: 300; }
.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; gap: 1rem; flex-wrap: wrap; }

/* ── CATEGORIES ── */
.section-categories { background: white; }
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.cat-card {
  border-radius: 20px; overflow: hidden; position: relative;
  aspect-ratio: 3/4; cursor: pointer; display: block;
  transition: transform 0.35s cubic-bezier(.25,.8,.25,1), box-shadow 0.35s;
}
.cat-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(45,74,45,0.15); }
.cat-card.big { grid-column: span 2; aspect-ratio: 2/1; }
.cat-card-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform 0.6s;
}
.cat-card:hover .cat-card-bg { transform: scale(1.07); }
.cat-card-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(20,45,20,0.75) 0%, transparent 55%); }
.cat-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; }
.cat-card-icon { font-size: 2rem; margin-bottom: 0.5rem; display: block; }
.cat-card-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: white; font-weight: 700; }
.cat-card-sub { font-size: 0.8rem; color: rgba(255,255,255,0.75); margin-top: 0.3rem; }
.cat-card-arrow {
  position: absolute; top: 1.2rem; right: 1.2rem;
  width: 36px; height: 36px; background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.1rem;
  opacity: 0; transform: scale(0.8);
  transition: opacity 0.3s, transform 0.3s;
}
.cat-card:hover .cat-card-arrow { opacity: 1; transform: scale(1); }

/* ── PROMO BANNER ── */
.section-promo { padding: 0 8vw 6rem; }
.promo-banner {
  background: linear-gradient(135deg, var(--green-deep) 0%, #1a3520 50%, var(--earth) 100%);
  border-radius: 28px; padding: 4rem 5rem;
  display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center;
  position: relative; overflow: hidden;
}
.promo-banner::before {
  content: ''; position: absolute; top: -60px; right: 200px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.promo-tag { color: var(--earth-light); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; margin-bottom: 1rem; }
.promo-h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); color: white; line-height: 1.2; margin-bottom: 1rem; }
.promo-prices { display: flex; gap: 3rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.promo-price .amount { font-family: 'Playfair Display', serif; font-size: 3rem; color: var(--earth-light); font-weight: 700; line-height: 1; }
.promo-price .unit { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-top: 0.25rem; }
.promo-deco { font-size: 8rem; opacity: 0.15; line-height: 1; position: relative; z-index: 1; }
.btn-gold { background: var(--earth-light); color: var(--green-deep); padding: 14px 32px; border-radius: 32px; text-decoration: none; font-weight: 600; font-size: 0.95rem; transition: all 0.2s; }
.btn-gold:hover { background: var(--earth); color: white; transform: translateY(-2px); }

/* ── GALLERY ── */
.section-gallery { background: var(--green-pale); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2.5rem; }
.gallery-item { border-radius: 14px; overflow: hidden; position: relative; cursor: zoom-in; }
.gallery-item:nth-child(4n+1) { aspect-ratio: 3/4; }
.gallery-item:nth-child(4n+2) { aspect-ratio: 1/1; align-self: center; }
.gallery-item:nth-child(4n+3) { aspect-ratio: 4/5; }
.gallery-item:nth-child(4n+4) { aspect-ratio: 3/4; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(45,74,45,0); transition: background 0.3s; display: flex; align-items: center; justify-content: center; }
.gallery-item:hover .gallery-overlay { background: rgba(45,74,45,0.3); }
.gallery-zoom { color: white; font-size: 1.8rem; opacity: 0; transform: scale(0.5); transition: all 0.3s; }
.gallery-item:hover .gallery-zoom { opacity: 1; transform: scale(1); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,0.93); z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img { max-width: 90vw; max-height: 88vh; border-radius: 12px; object-fit: contain; }
.lb-close {
  position: fixed; top: 20px; right: 24px; color: white; font-size: 1.5rem;
  cursor: pointer; background: rgba(255,255,255,0.12); border: none;
  width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s, background 0.2s;
}
.lb-close:hover { transform: rotate(90deg); background: rgba(255,255,255,0.22); }
.lb-prev, .lb-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.12); border: none; color: white;
  width: 52px; height: 52px; border-radius: 50%; font-size: 1.4rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: background 0.2s;
}
.lb-prev { left: 20px; } .lb-next { right: 20px; }
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.25); }

/* ── BLOG ── */
.section-blog { background: white; }
.blog-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 1.5rem; }
.post-card { border-radius: 20px; overflow: hidden; background: var(--cream); transition: transform 0.35s, box-shadow 0.35s; }
.post-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(45,74,45,0.12); }
.post-thumb { overflow: hidden; }
.post-thumb img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.5s; }
.post-card.featured .post-thumb img { height: 300px; }
.post-card:hover .post-thumb img { transform: scale(1.06); }
.post-no-thumb { height: 120px; background: var(--green-pale); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }
.post-body { padding: 1.4rem 1.5rem; }
.post-meta { display: flex; gap: 0.75rem; margin-bottom: 0.75rem; flex-wrap: wrap; align-items: center; }
.post-cat { font-size: 0.7rem; background: var(--green-pale); color: var(--green-mid); padding: 3px 10px; border-radius: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.post-date { font-size: 0.74rem; color: var(--text-mid); }
.post-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--green-deep); line-height: 1.35; margin-bottom: 0.6rem; }
.post-card.featured .post-title { font-size: 1.4rem; }
.post-title a:hover { color: var(--green-mid); }
.post-excerpt { font-size: 0.85rem; color: var(--text-mid); line-height: 1.7; }
.post-read-more { display: inline-flex; align-items: center; gap: 6px; font-size: 0.82rem; color: var(--green-mid); font-weight: 600; margin-top: 1rem; transition: gap 0.2s; }
.post-read-more:hover { gap: 12px; }
.blog-footer { text-align: center; margin-top: 3rem; }

/* ── SINGLE POST ── */
.single-wrap { padding-top: 70px; }
.single-header { padding: 5rem 8vw 3rem; text-align: center; background: linear-gradient(180deg, var(--green-pale) 0%, var(--cream) 100%); }
.single-header .breadcrumb { font-size: 0.8rem; color: var(--text-mid); margin-bottom: 1.5rem; }
.single-header .breadcrumb a { color: var(--green-mid); }
.single-header h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3.5rem); color: var(--green-deep); max-width: 820px; margin: 1rem auto 0; }
.single-feat-img { width: 100%; max-height: 520px; object-fit: cover; }
.single-content { max-width: 820px; margin: 0 auto; padding: 4rem 5vw; }
.single-content p { font-size: 1.05rem; line-height: 1.9; color: var(--text-dark); margin-bottom: 1.6rem; }
.single-content h2 { font-family: 'Playfair Display', serif; color: var(--green-deep); margin: 3rem 0 1.2rem; }
.single-content h3 { font-family: 'Playfair Display', serif; color: var(--green-deep); margin: 2rem 0 0.9rem; }
.single-content ul, .single-content ol { padding-left: 1.6rem; margin-bottom: 1.6rem; }
.single-content li { line-height: 1.8; color: var(--text-dark); margin-bottom: 0.4rem; }
.single-content img { border-radius: 14px; margin: 2rem auto; }
.single-content blockquote { border-left: 4px solid var(--green-mid); padding: 1rem 1.5rem; margin: 2rem 0; background: var(--green-pale); border-radius: 0 14px 14px 0; }
.single-content blockquote p { color: var(--green-deep); font-style: italic; margin: 0; }
.single-content a { color: var(--green-mid); text-decoration: underline; }
.post-nav { display: flex; justify-content: space-between; padding: 2rem 8vw; max-width: 980px; margin: 0 auto; gap: 1rem; }
.post-nav a { display: inline-flex; align-items: center; gap: 8px; font-size: 0.88rem; font-weight: 600; color: var(--green-mid); }
.post-nav .nav-prev:hover, .post-nav .nav-next:hover { gap: 14px; }
.post-nav .nav-next { flex-direction: row-reverse; }
.post-nav span.label { display: block; font-size: 0.75rem; font-weight: 400; color: var(--text-mid); }

/* ── CONTACT ── */
.section-contact { background: var(--green-pale); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.info-cards { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.info-card { background: white; border-radius: 16px; padding: 1.2rem 1.5rem; display: flex; align-items: center; gap: 1rem; box-shadow: 0 2px 12px rgba(45,74,45,0.06); }
.info-icon { font-size: 1.5rem; width: 48px; height: 48px; background: var(--green-pale); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-label { font-size: 0.75rem; color: var(--green-light); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 500; }
.info-value { font-weight: 500; color: var(--green-deep); font-size: 0.95rem; margin-top: 2px; }
.info-value a { color: inherit; }
.info-value a:hover { color: var(--green-mid); text-decoration: underline; }
.hours-card { background: var(--green-deep); border-radius: 20px; padding: 2rem; margin-top: 1rem; }
.hours-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: white; margin-bottom: 1.2rem; opacity: 0.9; }
.hours-row { display: flex; justify-content: space-between; padding: 0.6rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; }
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: rgba(255,255,255,0.72); }
.hours-row .time { color: white; font-weight: 500; }
.map-wrap { border-radius: 24px; overflow: hidden; box-shadow: 0 8px 32px rgba(45,74,45,0.12); }
.map-wrap iframe { width: 100%; height: 430px; border: none; display: block; }

/* ── PAGE ── */
.page-wrap { padding-top: 70px; }
.page-header { background: linear-gradient(180deg, var(--green-pale) 0%, var(--cream) 100%); padding: 5rem 8vw 3rem; }
.page-header h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); color: var(--green-deep); }
.page-content { max-width: 860px; margin: 0 auto; padding: 3rem 5vw 5rem; }
.page-content p { font-size: 1.02rem; line-height: 1.85; color: var(--text-dark); margin-bottom: 1.5rem; }
.page-content h2 { font-family: 'Playfair Display', serif; color: var(--green-deep); margin: 2.5rem 0 1rem; }
.page-content h3 { font-family: 'Playfair Display', serif; color: var(--green-deep); margin: 2rem 0 0.75rem; }
.page-content ul, .page-content ol { padding-left: 1.5rem; margin-bottom: 1.5rem; }
.page-content li { line-height: 1.8; color: var(--text-dark); margin-bottom: 0.35rem; }
.page-content img { border-radius: 14px; margin: 1.5rem auto; }
.page-content a { color: var(--green-mid); text-decoration: underline; }

/* ── FOOTER ── */
#site-footer { background: var(--green-deep); color: white; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; padding: 4rem 8vw 3rem; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: 0.8rem; }
.footer-desc { font-size: 0.88rem; color: rgba(255,255,255,0.72); line-height: 1.75; max-width: 270px; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.7rem; }
.social-btn { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.10); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 700; color: white; transition: background 0.2s; }
.social-btn:hover { background: var(--green-mid); }
.footer-col h4 { font-family: 'DM Sans', sans-serif; font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.4; font-weight: 700; margin-bottom: 1.3rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 0.88rem; transition: color 0.2s, padding-left 0.2s; }
.footer-links a:hover { color: white; padding-left: 6px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.5rem 8vw; display: flex; justify-content: space-between; font-size: 0.78rem; opacity: 0.45; flex-wrap: wrap; gap: 0.5rem; }

/* ── BLOG ARCHIVE ── */
.blog-archive { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.blog-archive .post-card.featured { grid-column: span 2; }

/* ── ANIMACE ── */
@keyframes fadeUp  { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn  { from { opacity:0; } to { opacity:1; } }
@keyframes float   { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

.reveal { opacity:0; transform:translateY(30px); transition:opacity 0.7s, transform 0.7s; }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-d1 { transition-delay:0.1s; }
.reveal-d2 { transition-delay:0.2s; }
.reveal-d3 { transition-delay:0.3s; }

/* ── RESPONZIVITA ── */
@media (max-width: 1100px) {
  .cat-grid { grid-template-columns: repeat(2,1fr); }
  .cat-card.big { grid-column: span 2; aspect-ratio: 2.2/1; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid .post-card.featured { grid-column: span 2; }
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-bottom: 3rem; }
  .hero-right { display: none; }
  .hero-left { padding: 5vw; }
  .promo-banner { padding: 2.5rem 2rem; grid-template-columns: 1fr; }
  .promo-deco { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  #primary-menu { display: none; }
  .menu-toggle { display: flex; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-grid .post-card.featured { grid-column: span 1; }
  .blog-archive { grid-template-columns: 1fr; }
  .blog-archive .post-card.featured { grid-column: span 1; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 560px) {
  .cat-grid { grid-template-columns: 1fr; }
  .cat-card.big { grid-column: span 1; aspect-ratio: 16/9; }
  .gallery-grid { grid-template-columns: 1fr; }
  .promo-prices { gap: 1.5rem; }
}

/* ── MAPA jako obrázek ── */
.map-img-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(45,74,45,0.12);
    display: block;
}
.map-static-img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.map-img-wrap:hover .map-static-img { transform: scale(1.02); }
.map-img-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.5rem;
    background: linear-gradient(0deg, rgba(45,74,45,0.72) 0%, transparent 60%);
    display: flex; align-items: flex-end; justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.map-img-wrap:hover .map-img-overlay { opacity: 1; }
.map-img-overlay span {
    color: white; font-size: .85rem; font-weight: 600;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    padding: 6px 18px; border-radius: 20px;
}
.map-fallback {
    height: 430px; border-radius: 24px;
    background: linear-gradient(135deg, var(--green-mid), var(--green-deep));
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    color: white; gap: .75rem; font-size: 1rem; text-align: center; padding: 2rem;
}
.map-fallback div { font-size: 3rem; }
