/* ══════════════════════════════════════════════
   BERNBLUEME.CH — Style v1.0
   Blumenversand Bern | Bordeaux Design
   ══════════════════════════════════════════════ */

:root {
  /* Brand Colors */
  --green-900: #5a1020;
  --green-800: #7b1530;
  --green-700: #9b1c3c;
  --green-600: #b82245;
  --green-100: #f5dde3;
  --green-50:  #fdf0f2;

  --gold:      #c8922a;
  --gold-light:#f5c96e;

  --text-dark:  #2a1018;
  --text-mid:   #5a2030;
  --text-light: #8a5060;

  --white: #ffffff;
  --off-white: #fdfbfb;
  --border: #ecc8cf;

  /* Spacing */
  --max-w: 1240px;
  --max-w-narrow: 800px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 24px;
  --r-pill: 999px;

  /* Motion */
  --fast: 0.18s ease;
  --smooth: 0.32s cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-xs: 0 1px 4px rgba(155,28,60,.07);
  --shadow-sm: 0 4px 16px rgba(155,28,60,.10);
  --shadow-md: 0 8px 30px rgba(155,28,60,.15);
  --shadow-lg: 0 16px 50px rgba(155,28,60,.20);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--text-dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  padding-top: 72px;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
ul { list-style: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── Utility ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ══════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════ */
.navbar {
  position: fixed; inset: 0 0 auto 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: box-shadow var(--smooth);
}
.navbar.scrolled { box-shadow: var(--shadow-sm); }

.navbar-content {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand-link {
  display: flex; align-items: center; gap: 0.5rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 600;
  color: var(--green-700);
  letter-spacing: -0.01em;
}
.brand-link i { color: var(--gold); font-size: 1.4rem; }

.navbar-nav {
  display: flex; align-items: center; gap: 0.25rem;
}
.nav-link {
  text-decoration: none;
  font-size: 0.9rem; font-weight: 500;
  color: var(--text-mid);
  padding: 0.5rem 0.85rem;
  border-radius: var(--r-sm);
  transition: all var(--fast);
}
.nav-link:hover { color: var(--green-700); background: var(--green-50); }

.nav-cta {
  background: var(--green-700);
  color: var(--white) !important;
  padding: 0.55rem 1.1rem;
  border-radius: var(--r-sm);
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.88rem;
  transition: background var(--fast), transform var(--fast);
}
.nav-cta:hover { background: var(--green-800); transform: translateY(-1px); }

.navbar-toggle {
  display: none; flex-direction: column;
  background: none; border: none; cursor: pointer; padding: 0.5rem; gap: 5px;
}
.navbar-toggle span {
  width: 24px; height: 2px; background: var(--text-dark);
  transition: var(--fast); border-radius: 2px;
}
.navbar-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-toggle.active span:nth-child(2) { opacity: 0; }
.navbar-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: min(80vh, 720px);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 38% 50%, var(--green-700) 0%, transparent 65%),
    radial-gradient(ellipse at 72% 30%, var(--green-600) 0%, transparent 50%),
    var(--green-900);
}
.hero-content {
  position: relative; z-index: 3;
  text-align: center; color: var(--white);
  max-width: 860px;
  padding: 3.5rem 2rem;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
  padding: 0.35rem 1rem;
  border: 1px solid rgba(245,201,110,0.4);
  border-radius: var(--r-pill);
  background: rgba(245,201,110,0.08);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 300;
  opacity: 0.92;
  max-width: 560px; margin: 0 auto 2.5rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.btn-hero {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gold);
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: var(--r-sm);
  font-weight: 600; font-size: 1rem;
  text-decoration: none;
  transition: all var(--smooth);
  box-shadow: 0 4px 20px rgba(200,146,42,0.4);
}
.btn-hero:hover { background: #b07c1e; transform: translateY(-3px); box-shadow: 0 8px 28px rgba(200,146,42,0.5); }

.btn-hero-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
  padding: 0.9rem 2rem;
  border-radius: var(--r-sm);
  font-weight: 500; font-size: 1rem;
  text-decoration: none;
  transition: all var(--smooth);
}
.btn-hero-outline:hover { background: rgba(255,255,255,0.12); border-color: white; }

.hero-trust {
  display: flex; gap: 2.5rem; justify-content: center; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.88rem; font-weight: 500; opacity: 0.88;
}
.trust-item i { color: var(--gold-light); }

/* ══════════════════════════════════════════════
   SECTIONS — Common
   ══════════════════════════════════════════════ */
section {
  padding: 5rem 0;
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
section.fade-in { opacity: 1; transform: translateY(0); }
/* Performance: defer rendering cost of below-fold sections */
.districts, .faq, .occasions {
  content-visibility: auto;
  contain-intrinsic-size: 0 500px;
}

.section-label {
  display: inline-block;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--green-700);
  margin-bottom: 0.75rem;
}
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { margin-bottom: 0.75rem; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text-dark);
}
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }

.section-subtitle {
  font-size: 1.05rem; color: var(--text-light);
  max-width: 620px; margin: 0 auto;
}

p { color: var(--text-mid); line-height: 1.75; }

/* ══════════════════════════════════════════════
   INTRO / ABOUT
   ══════════════════════════════════════════════ */
.intro { background: var(--white); }

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.intro-text h2 { margin-bottom: 1.5rem; text-align: left; }
.intro-text p { margin-bottom: 1rem; }
.intro-text a { color: var(--green-700); text-decoration: underline; text-decoration-color: transparent; transition: text-decoration-color var(--fast); }
.intro-text a:hover { text-decoration-color: var(--green-700); }

.intro-pillars {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.pillar {
  background: var(--green-50);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.5rem;
  transition: all var(--smooth);
}
.pillar:hover { box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.pillar-icon {
  width: 44px; height: 44px;
  background: var(--white);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-xs);
}
.pillar-icon i { font-size: 1.1rem; color: var(--green-700); }
.pillar h3 { font-size: 0.95rem; font-weight: 600; font-family: var(--font-body); margin-bottom: 0.4rem; color: var(--text-dark); }
.pillar p { font-size: 0.88rem; margin: 0; color: var(--text-light); }

/* ══════════════════════════════════════════════
   PRODUCTS
   ══════════════════════════════════════════════ */
.products { background: var(--off-white); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.75rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  display: flex; flex-direction: column;
  transition: transform var(--smooth), box-shadow var(--smooth);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.product-card.featured { border-color: var(--gold); }

.product-image {
  position: relative;
  background: var(--green-50);
  display: flex; align-items: center; justify-content: center;
  height: 280px;
}
.product-image img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 0.75rem;
  transition: transform var(--smooth);
}
.product-card:hover .product-image img { transform: scale(1.04); }

.product-badge {
  position: absolute; top: 0.85rem; right: 0.85rem;
  background: var(--gold); color: var(--white);
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 0.3rem 0.7rem;
  border-radius: var(--r-pill);
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.badge-top  { background: var(--green-700); }
.badge-love { background: #b03a2e; text-transform: none; letter-spacing: 0; }

.product-content {
  padding: 1.4rem 1.5rem 1.5rem;
  flex: 1; display: flex; flex-direction: column;
}
.product-content h3 {
  font-size: 1.25rem; color: var(--green-800);
  margin-bottom: 0.6rem;
}
.product-description {
  font-style: italic; font-size: 0.9rem;
  color: var(--text-light); flex: 1; margin-bottom: 1.25rem;
}
.product-footer { margin-top: auto; }
.product-pricing { margin-bottom: 1rem; }
.price {
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 600;
  color: var(--green-800); margin-bottom: 0.2rem;
}
.delivery {
  font-size: 0.8rem; color: var(--green-600);
  display: flex; align-items: center; gap: 0.3rem;
}
.delivery i { font-size: 0.75rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  padding: 0.75rem 1.4rem;
  border: none; border-radius: var(--r-sm);
  text-decoration: none; font-family: var(--font-body);
  font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.02em; cursor: pointer;
  transition: all var(--smooth); width: 100%;
}
.btn-primary {
  background: var(--green-700); color: var(--white);
}
.btn-primary:hover { background: var(--green-800); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-secondary {
  background: var(--white); color: var(--green-700);
  border: 1.5px solid var(--green-700);
  width: auto;
}
.btn-secondary:hover { background: var(--green-700); color: var(--white); transform: translateY(-2px); }

.btn-wrapper { text-align: center; margin-top: 3rem; }

/* ══════════════════════════════════════════════
   OCCASIONS
   ══════════════════════════════════════════════ */
.occasions { background: var(--white); }
.occasions-tags {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0.85rem; margin-bottom: 3.5rem;
}
.occasion-tag {
  display: flex; align-items: center; gap: 0.65rem;
  background: var(--green-50);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 0.85rem 1.1rem;
  font-weight: 500; font-size: 0.92rem;
  color: var(--green-800);
  transition: all var(--smooth); cursor: default;
}
.occasion-tag:hover {
  background: var(--green-700); color: var(--white);
  border-color: var(--green-700);
  transform: translateY(-3px); box-shadow: var(--shadow-sm);
}
.occasion-tag i { font-size: 1rem; }

.moment-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.gallery-item {
  border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--shadow-xs); aspect-ratio: 1;
  transition: all var(--smooth);
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--smooth); }
.gallery-item:hover img { transform: scale(1.06); }

/* ══════════════════════════════════════════════
   DISTRICTS
   ══════════════════════════════════════════════ */
.districts { background: var(--green-50); }
.districts-tags {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  gap: 0.75rem; margin-bottom: 3rem;
}
.district-tag {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 0.7rem 0.9rem;
  font-size: 0.88rem; font-weight: 500;
  color: var(--text-mid);
  transition: all var(--fast);
}
.district-tag:hover {
  border-color: var(--green-700); color: var(--green-700);
  transform: translateY(-2px); box-shadow: var(--shadow-xs);
}
.district-tag i { font-size: 0.75rem; color: var(--green-600); flex-shrink: 0; }

.districts-map { text-align: center; }
.districts-image {
  width: 100%; max-width: 800px; margin: 0 auto;
  border-radius: var(--r-lg); box-shadow: var(--shadow-md);
  aspect-ratio: 7/3; object-fit: cover;
}

/* ══════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════ */
.faq { background: var(--white); }
.faq-list { max-width: var(--max-w-narrow); margin: 0 auto; display: flex; flex-direction: column; gap: 0.85rem; }

.faq-item {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: box-shadow var(--smooth);
}
.faq-item[open] { box-shadow: var(--shadow-sm); border-color: var(--green-600); }
.faq-item[open] .faq-question { color: var(--green-700); }
.faq-item[open] .faq-question i { transform: rotate(180deg); }

.faq-question {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 1.4rem;
  cursor: pointer;
  font-weight: 600; font-size: 1rem;
  color: var(--text-dark);
  list-style: none; transition: color var(--fast);
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question i { font-size: 0.8rem; color: var(--green-600); flex-shrink: 0; transition: transform var(--smooth); }

.faq-answer {
  padding: 0 1.4rem 1.25rem;
  border-top: 1px solid var(--border);
}
.faq-answer p { font-size: 0.95rem; margin-top: 1rem; }

/* ══════════════════════════════════════════════
   CTA BANNER
   ══════════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 100%);
  padding: 4.5rem 0; opacity: 1 !important; transform: none !important;
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.cta-text h2 { color: var(--white); font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin-bottom: 0.5rem; }
.cta-text p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin: 0; }
.btn-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gold); color: var(--white);
  padding: 1rem 2.2rem; border-radius: var(--r-sm);
  font-weight: 700; font-size: 1rem; text-decoration: none;
  white-space: nowrap;
  transition: all var(--smooth);
  box-shadow: 0 4px 20px rgba(200,146,42,0.35);
}
.btn-cta:hover { background: #b07c1e; transform: translateY(-3px); box-shadow: 0 8px 28px rgba(200,146,42,0.5); }

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
.footer {
  background: var(--green-900);
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 0;
  margin-top: 0;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto; padding: 0 1.5rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem;
}
.footer-logo {
  display: flex; align-items: center; gap: 0.5rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.6rem; color: var(--white);
  margin-bottom: 1rem;
}
.footer-logo i { color: var(--gold-light); }
.footer-brand p { font-size: 0.9rem; line-height: 1.65; color: rgba(255,255,255,0.65); }

.footer-links h3,
.footer-info h3 {
  font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--white); margin-bottom: 1rem;
}
.footer-links ul,
.footer-info ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a,
.footer-info a {
  color: rgba(255,255,255,0.65); text-decoration: none;
  font-size: 0.9rem; transition: color var(--fast);
}
.footer-links a:hover,
.footer-info a:hover { color: var(--white); }
.footer-info li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.9rem; }
.footer-info li i { margin-top: 0.25rem; color: var(--gold-light); font-size: 0.8rem; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  max-width: var(--max-w); margin: 0 auto;
  padding: 1.5rem 1.5rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin: 0; }
.footer-disclaimer { font-style: italic; }

/* ══════════════════════════════════════════════
   FOCUS / ACCESSIBILITY
   ══════════════════════════════════════════════ */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
details:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .intro-grid { grid-template-columns: 1fr; gap: 3rem; }
  .intro-text h2 { text-align: center; }
  .intro-text { text-align: center; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  body { padding-top: 64px; }
  section { padding: 3.5rem 0; }

  .navbar-menu {
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    transform: translateY(-110%);
    opacity: 0; visibility: hidden;
    transition: all var(--smooth);
  }
  .navbar-menu.active {
    transform: translateY(0); opacity: 1; visibility: visible;
  }
  .navbar-nav { flex-direction: column; gap: 0; padding: 0.75rem; }
  .nav-link { padding: 0.9rem 1rem; border-bottom: 1px solid var(--border); display: block; }
  .nav-cta { margin: 0.75rem 0; border-radius: var(--r-sm); justify-content: center; }
  .navbar-toggle { display: flex; }

  .hero { min-height: 70vh; }
  .hero-content { padding: 2.5rem 1.5rem; }
  .hero-trust { gap: 1.25rem; }
  .hero-actions { flex-direction: column; align-items: center; }

  .intro-pillars { grid-template-columns: 1fr; }

  .products-grid { grid-template-columns: 1fr; }

  .occasions-tags { grid-template-columns: 1fr 1fr; }

  .moment-gallery { grid-template-columns: 1fr 1fr; }

  .districts-tags { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }

  .cta-inner { flex-direction: column; text-align: center; }
  .btn-cta { width: 100%; max-width: 320px; justify-content: center; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.4rem; }
  .occasions-tags { grid-template-columns: 1fr; }
  .moment-gallery { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .hero-trust { flex-direction: column; align-items: center; }
}

/* ══════════════════════════════════════════════
   PRINT
   ══════════════════════════════════════════════ */
@media print {
  .navbar, .hero-actions, .btn, .cta-section { display: none !important; }
  * { box-shadow: none !important; }
}


/* ══════════════════════════════════════════════
   STICKY MOBILE CTA BAR
   ══════════════════════════════════════════════ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 998;
  background: var(--green-900);
  padding: 0.9rem 1.25rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
  border-top: 1px solid rgba(255,255,255,0.08);
  /* slide in from bottom */
  transform: translateY(100%);
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-text {
  display: flex; flex-direction: column;
  overflow: hidden;
}
.sticky-cta-text strong {
  color: var(--white);
  font-size: 0.95rem;
  white-space: nowrap;
}
.sticky-cta-text span {
  color: rgba(255,255,255,0.6);
  font-size: 0.76rem;
}
.sticky-cta-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--gold); color: var(--white);
  padding: 0.72rem 1.35rem;
  border-radius: var(--r-sm);
  font-weight: 700; font-size: 0.88rem;
  text-decoration: none; white-space: nowrap; flex-shrink: 0;
  transition: background var(--fast), transform var(--fast);
  box-shadow: 0 3px 12px rgba(200,146,42,0.4);
}
.sticky-cta-btn:hover { background: #b07c1e; transform: translateY(-1px); }

@media (max-width: 768px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 74px; }
}
