/* Shared layout for secondary marketing pages */
:root {
  --cream: #fdf4e3;
  --ink: #1e3a2f;
  --ink-deep: #132923;
  --flag: #ffd23f;
  --flag-shadow: #d4a000;
  --turf: #2f9e5c;
  --glass: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.14);
  --sat: env(safe-area-inset-top, 0px);
  --sab: env(safe-area-inset-bottom, 0px);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', system-ui, sans-serif;
  color: var(--cream);
  background: linear-gradient(180deg, #2c5c47 0%, #1e3a2f 50%, #132923 100%);
  line-height: 1.55;
  min-height: 100dvh;
  padding-bottom: calc(72px + var(--sab));
}
a { color: inherit; }
.site-header {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 10px 16px;
  background: rgba(30, 58, 47, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--flag);
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; min-width: 0; }
.logo-mark { width: 44px; height: 44px; object-fit: contain; flex: none; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35)); }
.logo-text {
  font-family: 'Lilita One', cursive;
  font-size: clamp(15px, 3.8vw, 22px);
  color: var(--flag);
  text-shadow: 0 2px 0 rgba(0,0,0,0.35);
  line-height: 1.1;
}
.logo-text span {
  display: block; font-family: 'Nunito', sans-serif; font-size: 10px; font-weight: 800;
  letter-spacing: 0.12em; color: var(--cream); opacity: 0.85; text-shadow: none; margin-top: 2px;
}
.nav-links { display: flex; flex-wrap: wrap; gap: 6px; justify-content: flex-end; }
.nav-links a {
  font-size: 12px; font-weight: 800; text-decoration: none;
  padding: 8px 12px; border-radius: 999px;
  background: rgba(255,255,255,0.08); border: 1px solid var(--glass-border);
}
.nav-links a.primary { background: var(--flag); color: var(--ink); border-color: transparent; }
.hero {
  max-width: 900px; margin: 0 auto; padding: 36px 20px 12px; text-align: center;
}
.hero .badge {
  display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink); background: var(--flag);
  padding: 6px 12px; border-radius: 999px; margin-bottom: 14px;
}
.hero h1 {
  font-family: 'Lilita One', cursive;
  font-size: clamp(32px, 8vw, 48px);
  color: var(--flag); line-height: 1.05; text-shadow: 0 3px 0 rgba(0,0,0,0.3);
}
.hero p { margin-top: 12px; font-weight: 700; opacity: 0.95; max-width: 36em; margin-left: auto; margin-right: auto; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 18px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 15px;
  text-decoration: none; padding: 12px 18px; border-radius: 999px;
  background: var(--flag); color: var(--ink);
  box-shadow: 0 4px 0 var(--flag-shadow);
}
.btn-ghost {
  background: rgba(255,255,255,0.1); color: var(--cream);
  border: 1px solid var(--glass-border); box-shadow: none;
}
.wrap { max-width: 820px; margin: 0 auto; padding: 12px 16px 40px; }
.card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 18px; padding: 20px 18px; margin: 14px 0;
}
.card h2 {
  font-family: 'Lilita One', cursive; font-size: 24px; color: var(--flag); margin-bottom: 10px;
}
.card h3 {
  font-family: 'Lilita One', cursive; font-size: 20px; color: var(--flag); margin: 14px 0 8px;
}
.card p, .card li { font-weight: 700; font-size: 15px; opacity: 0.95; }
.card ul { margin: 8px 0 0 1.15em; }
.card li { margin: 6px 0; }
.card a { color: var(--flag); font-weight: 800; }
.price-pill {
  display: inline-block; margin: 8px 0 4px; padding: 8px 14px; border-radius: 999px;
  background: rgba(255,210,63,0.18); border: 1px solid rgba(255,210,63,0.4);
  font-weight: 900; color: var(--flag); font-size: 16px;
}
.lead { font-size: 16px; font-weight: 700; opacity: 0.95; margin-bottom: 8px; }
.photo {
  width: 100%; border-radius: 14px; margin: 12px 0; display: block;
  border: 1px solid var(--glass-border); max-height: 320px; object-fit: cover;
}
.map-wrap {
  border-radius: 16px; overflow: hidden; border: 1px solid var(--glass-border);
  margin-top: 12px; background: #0f1f18; aspect-ratio: 16/10; max-height: 340px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; min-height: 240px; display: block; }
footer.page-foot {
  text-align: center; padding: 24px 16px 32px; font-size: 13px; font-weight: 600; opacity: 0.8;
}
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px;
  padding: 10px 10px calc(10px + var(--sab));
  background: rgba(19, 41, 35, 0.96); border-top: 2px solid var(--flag);
}
.mobile-bar a {
  text-align: center; text-decoration: none; font-size: 11px; font-weight: 800;
  padding: 10px 4px; border-radius: 12px; background: rgba(255,255,255,0.08); line-height: 1.2;
}
.mobile-bar a strong { display: block; font-size: 15px; }
.mobile-bar a.hot { background: var(--flag); color: var(--ink); }
.mobile-bar a.call { background: linear-gradient(180deg, #3ecf72, #2f9e5c); color: #fff; }
@media (min-width: 900px) { .mobile-bar { display: none; } body { padding-bottom: 0; } }
@media (max-width: 480px) {
  .nav-links a:not(.primary) { display: none; }
}
