/* ============================================================
   GROOMING SALON PLUSH VIENNA — styles.css
   Aesthetic: "Cozy premium pet spa"
   Light theme · cream + sage + caramel · Quicksand / Nunito Sans
   ============================================================ */

/* ---- Reset & Root ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* palette */
  --cream:        #fbf7f0;
  --cream-deep:   #f3ecdf;
  --sage:         #7d8b6a;
  --sage-deep:    #4f5d44;
  --sage-soft:    #eef0e7;
  --caramel:      #c9925e;
  --caramel-deep: #b07b48;
  --blush:        #f0d9d3;   /* harmonizes the pink IG photos */
  --ink:          #3a2f28;   /* warm brown text */
  --muted:        #80746a;
  --line:         rgba(58, 47, 40, 0.10);
  --white:        #ffffff;

  /* type */
  --display: 'Quicksand', system-ui, sans-serif;
  --body: 'Nunito Sans', system-ui, sans-serif;

  /* shape */
  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 34px;
  --r-xl: 48px;

  /* soft shadows */
  --sh-sm: 0 4px 16px rgba(79, 93, 68, 0.08);
  --sh-md: 0 14px 40px rgba(79, 93, 68, 0.12);
  --sh-lg: 0 26px 70px rgba(79, 93, 68, 0.16);

  --nav-h: 76px;
  --ease: 0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

:focus-visible {
  outline: 3px solid var(--caramel);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 2000;
  background: var(--sage-deep);
  color: var(--cream);
  padding: 10px 18px;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-family: var(--display);
  font-weight: 600;
  transition: top var(--ease);
}
.skip-link:focus { top: 0; }

/* ---- Layout helpers ---- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow,
.section-label {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  color: var(--sage-deep);
  background: var(--sage-soft);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-label-light {
  color: var(--cream);
  background: rgba(255, 255, 255, 0.16);
}

.section-header {
  max-width: 600px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.9rem, 1.2rem + 2.6vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.section-subtitle {
  margin-top: 16px;
  font-size: 1.06rem;
  color: var(--muted);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: 15px 28px;
  min-height: 48px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease);
  white-space: nowrap;
}
.btn-icon { width: 19px; height: 19px; flex-shrink: 0; }

.btn-primary {
  background: var(--sage-deep);
  color: var(--cream);
  box-shadow: var(--sh-sm);
}
.btn-primary:hover {
  background: var(--sage);
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}

.btn-ghost {
  background: transparent;
  color: var(--sage-deep);
  box-shadow: inset 0 0 0 1.5px rgba(79, 93, 68, 0.28);
}
.btn-ghost:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: inset 0 0 0 1.5px rgba(79, 93, 68, 0.28), var(--sh-sm);
}

.btn-on-sage {
  background: var(--cream);
  color: var(--sage-deep);
  box-shadow: var(--sh-md);
}
.btn-on-sage:hover {
  background: var(--caramel);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-large {
  padding: 17px 34px;
  font-size: 1.06rem;
  min-height: 56px;
}

/* ---- NAVIGATION ---- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(251, 247, 240, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background var(--ease), box-shadow var(--ease), height var(--ease);
}
.site-nav.scrolled {
  background: rgba(251, 247, 240, 0.94);
  box-shadow: 0 6px 30px rgba(79, 93, 68, 0.10);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.22rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.logo-text em { font-style: normal; color: var(--caramel-deep); }

.logo-mark {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sage-soft);
  color: var(--sage-deep);
}
.logo-mark svg { width: 22px; height: 22px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--muted);
  padding: 9px 15px;
  border-radius: 100px;
  transition: color var(--ease), background var(--ease);
}
.nav-link:hover { color: var(--ink); background: var(--sage-soft); }

.nav-cta {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--cream);
  background: var(--sage-deep);
  padding: 11px 22px;
  border-radius: 100px;
  margin-left: 8px;
  box-shadow: var(--sh-sm);
  transition: background var(--ease), transform var(--ease);
}
.nav-cta:hover { background: var(--sage); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 12px;
  background: var(--sage-soft);
  border: none;
  border-radius: 14px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2.4px;
  background: var(--sage-deep);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
  transform-origin: center;
}
.nav-open .hamburger span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
.nav-open .hamburger span:nth-child(2) { opacity: 0; }
.nav-open .hamburger span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }

@media (max-width: 880px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: rgba(251, 247, 240, 0.98);
    backdrop-filter: blur(18px);
    padding: 16px;
    box-shadow: 0 20px 40px rgba(79, 93, 68, 0.14);
    border-radius: 0 0 var(--r-md) var(--r-md);
    display: none;
  }
  .nav-open .nav-links { display: flex; }
  .nav-link { padding: 14px 18px; font-size: 1.05rem; border-radius: 14px; }
  .nav-cta { margin: 6px 0 0; text-align: center; padding: 15px; border-radius: 14px; }
}

/* ---- HERO ---- */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + 56px) 0 90px;
  background:
    radial-gradient(120% 90% at 88% 8%, rgba(240, 217, 211, 0.55) 0%, transparent 46%),
    radial-gradient(90% 80% at 4% 92%, rgba(238, 240, 231, 0.9) 0%, transparent 50%),
    var(--cream);
  overflow: hidden;
}

.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--caramel-deep);
  margin-bottom: 22px;
}
.eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--caramel);
}

.hero-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.4rem, 1.3rem + 4.4vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.hero-title em {
  font-style: normal;
  color: var(--sage-deep);
  position: relative;
}
.hero-title em::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0.04em;
  height: 0.30em;
  background: var(--blush);
  border-radius: 100px;
  z-index: -1;
}

.hero-sub {
  margin-top: 22px;
  font-size: clamp(1.05rem, 0.98rem + 0.4vw, 1.28rem);
  color: var(--muted);
  max-width: 30ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero-langs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-top: 38px;
}
.lang-lead {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 2px;
}
.lang-tag {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.84rem;
  color: var(--sage-deep);
  background: var(--white);
  border: 1px solid var(--line);
  padding: 6px 14px;
  border-radius: 100px;
  box-shadow: var(--sh-sm);
}

/* Hero stage — small IG photos as cozy snapshots */
.hero-stage {
  position: relative;
  height: 460px;
}
.hero-blob {
  position: absolute;
  inset: 6% 4% 6% 8%;
  background: linear-gradient(150deg, var(--sage) 0%, var(--sage-deep) 100%);
  border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%;
  box-shadow: var(--sh-lg);
}
.hero-card {
  position: absolute;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--white);
  border: 6px solid var(--white);
  box-shadow: var(--sh-md);
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; }

.hero-card-main {
  width: 52%;
  aspect-ratio: 1 / 1;
  left: 22%;
  top: 26%;
  z-index: 3;
  transform: rotate(-3deg);
}
.hero-card-top {
  width: 36%;
  aspect-ratio: 1 / 1;
  right: 4%;
  top: 6%;
  z-index: 2;
  transform: rotate(5deg);
}
.hero-card-bottom {
  width: 38%;
  aspect-ratio: 1 / 1;
  left: 2%;
  bottom: 6%;
  z-index: 4;
  transform: rotate(4deg);
}

.hero-paw { position: absolute; color: var(--blush); opacity: 0.9; }
.hero-paw svg { width: 100%; height: 100%; }
.hero-paw-1 { width: 40px; height: 40px; top: 2%; left: 14%; color: var(--caramel); opacity: 0.5; transform: rotate(-18deg); }
.hero-paw-2 { width: 30px; height: 30px; bottom: 12%; right: 2%; color: var(--sage); opacity: 0.45; transform: rotate(22deg); }

@media (max-width: 880px) {
  .hero { padding-bottom: 64px; }
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero-sub { max-width: 38ch; }
  .hero-stage { height: 380px; max-width: 460px; margin: 0 auto; width: 100%; }
}

/* ---- ABOUT ---- */
.about { padding: 110px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 64px;
  align-items: center;
}

.about-media {
  position: relative;
  aspect-ratio: 5 / 6;
}
.about-photo {
  position: absolute;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--white);
  border: 7px solid var(--white);
  box-shadow: var(--sh-md);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo-a {
  width: 64%; aspect-ratio: 1/1;
  left: 0; top: 4%;
  transform: rotate(-3deg);
  z-index: 2;
}
.about-photo-b {
  width: 52%; aspect-ratio: 1/1;
  right: 0; top: 30%;
  transform: rotate(4deg);
  z-index: 3;
}
.about-photo-c {
  width: 46%; aspect-ratio: 1/1;
  left: 16%; bottom: 0;
  transform: rotate(2deg);
  z-index: 4;
}
.about-media::before {
  content: '';
  position: absolute;
  inset: 12% 8% 8% 12%;
  background: var(--sage-soft);
  border-radius: 48% 52% 44% 56% / 50% 46% 54% 50%;
  z-index: 0;
}

.about-text .section-title,
.about-text .section-label { text-align: left; }

.about-lead {
  margin-top: 22px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.24rem;
  line-height: 1.45;
  color: var(--ink);
}
.about-body {
  margin-top: 16px;
  color: var(--muted);
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 30px 0;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: var(--white);
  border-radius: var(--r-sm);
  box-shadow: var(--sh-sm);
}
.highlight-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 13px;
  background: var(--sage-soft);
  color: var(--sage-deep);
}
.highlight-icon svg { width: 23px; height: 23px; }
.highlight-item strong {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink);
}
.highlight-item span { font-size: 0.9rem; color: var(--muted); }

@media (max-width: 880px) {
  .about { padding: 80px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-media { max-width: 380px; margin: 0 auto; width: 100%; }
}

/* ---- SERVICES ---- */
.services {
  padding: 110px 0;
  background: var(--cream-deep);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
  gap: 22px;
  margin-bottom: 48px;
}

.service-card {
  position: relative;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 38px 30px;
  box-shadow: var(--sh-sm);
  transition: transform var(--ease), box-shadow var(--ease);
}
.service-card:hover { transform: translateY(-7px); box-shadow: var(--sh-md); }

.service-card.featured {
  background: linear-gradient(160deg, var(--sage) 0%, var(--sage-deep) 100%);
  color: var(--cream);
  box-shadow: var(--sh-md);
}
.service-card.featured .service-name { color: var(--cream); }
.service-card.featured .service-desc { color: rgba(251, 247, 240, 0.82); }
.service-card.featured .service-icon {
  background: rgba(255, 255, 255, 0.16);
  color: var(--cream);
}

.service-badge {
  position: absolute;
  top: 22px; right: 22px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-deep);
  background: var(--cream);
  padding: 5px 13px;
  border-radius: 100px;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 60px; height: 60px;
  border-radius: 18px;
  background: var(--sage-soft);
  color: var(--sage-deep);
  margin-bottom: 22px;
}
.service-icon svg { width: 30px; height: 30px; }

.service-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.22rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 10px;
}
.service-desc { font-size: 0.97rem; color: var(--muted); }

.services-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
  padding: 44px 28px;
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
}
.services-cta p {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.22rem;
  color: var(--ink);
}

@media (max-width: 880px) { .services { padding: 80px 0; } }

/* ---- GALLERY ---- */
.gallery { padding: 110px 0; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 18px;
}

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 6px solid var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--sage-soft);
  cursor: pointer;
  aspect-ratio: 1 / 1;
  box-shadow: var(--sh-sm);
  transition: transform var(--ease), box-shadow var(--ease);
}
.gallery-item:hover {
  transform: translateY(-6px) rotate(-1deg);
  box-shadow: var(--sh-md);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--ease);
}
.gallery-item:hover img { transform: scale(1.05); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(58, 47, 40, 0.86);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}
.lightbox.open { display: flex; }

.lightbox-inner {
  position: relative;
  max-width: 540px;
  width: 100%;
}
.lightbox-inner img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--r-md);
  border: 8px solid var(--cream);
  background: var(--cream);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  z-index: 2;
  display: grid;
  place-items: center;
  background: rgba(251, 247, 240, 0.92);
  color: var(--ink);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--ease), transform var(--ease);
}
.lightbox-close svg,
.lightbox-prev svg,
.lightbox-next svg { width: 24px; height: 24px; }

.lightbox-close { top: 22px; right: 24px; width: 50px; height: 50px; }
.lightbox-prev, .lightbox-next { top: 50%; transform: translateY(-50%); width: 54px; height: 54px; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-close:hover { background: var(--white); transform: scale(1.06); }
.lightbox-prev:hover { background: var(--white); transform: translateY(-50%) scale(1.06); }
.lightbox-next:hover { background: var(--white); transform: translateY(-50%) scale(1.06); }

@media (max-width: 600px) {
  /* On narrow screens the image fills the width, so dock the controls at the
     bottom where they can't be intercepted by the photo. */
  .lightbox-prev, .lightbox-next {
    top: auto;
    bottom: 24px;
    transform: none;
    width: 50px; height: 50px;
  }
  .lightbox-prev { left: 24px; }
  .lightbox-next { right: 24px; }
  .lightbox-prev:hover { transform: scale(1.06); }
  .lightbox-next:hover { transform: scale(1.06); }
  .lightbox-inner { max-width: 100%; }
  .lightbox-inner img { max-height: 64vh; }
}

@media (max-width: 880px) { .gallery { padding: 80px 0; } }

/* ---- CONTACT ---- */
.contact { padding: 110px 0; }

.contact-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  background: var(--white);
}

.contact-lead {
  background: linear-gradient(165deg, var(--sage) 0%, var(--sage-deep) 100%);
  color: var(--cream);
  padding: 56px 48px;
}
.contact-lead .section-title { color: var(--cream); }
.contact-intro {
  margin-top: 16px;
  margin-bottom: 30px;
  color: rgba(251, 247, 240, 0.86);
}
.ig-profile-link {
  display: inline-block;
  margin-top: 18px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(251, 247, 240, 0.9);
  transition: color var(--ease);
}
.ig-profile-link:hover { color: var(--cream); }

.contact-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 44px;
  align-content: center;
}
.fact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: var(--cream);
  border-radius: var(--r-sm);
}
.fact-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--sage-soft);
  color: var(--sage-deep);
}
.fact-icon svg { width: 22px; height: 22px; }
.fact-card strong {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--ink);
}
.fact-card span { font-size: 0.84rem; color: var(--muted); }

@media (max-width: 880px) {
  .contact { padding: 80px 0; }
  .contact-shell { grid-template-columns: 1fr; }
  .contact-lead { padding: 44px 32px; }
  .contact-facts { padding: 28px; }
}
@media (max-width: 460px) {
  .contact-facts { grid-template-columns: 1fr; }
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--sage-deep);
  color: var(--cream);
  padding: 52px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.12rem;
  color: var(--cream);
}
.footer-brand .logo-mark { background: rgba(255, 255, 255, 0.12); color: var(--cream); }

.footer-ig {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.1);
  padding: 11px 22px;
  border-radius: 100px;
  transition: background var(--ease), transform var(--ease);
}
.footer-ig svg { width: 19px; height: 19px; }
.footer-ig:hover { background: rgba(255, 255, 255, 0.2); transform: translateY(-1px); }

.footer-copy { font-size: 0.84rem; color: rgba(251, 247, 240, 0.6); }

/* ---- STICKY MOBILE DM BAR ---- */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(251, 247, 240, 0.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  display: none;
}
.sticky-bar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1rem;
  min-height: 50px;
  background: var(--sage-deep);
  color: var(--cream);
  border-radius: 100px;
  box-shadow: var(--sh-sm);
  transition: background var(--ease);
}
.sticky-bar-btn svg { width: 20px; height: 20px; }
.sticky-bar-btn:active { background: var(--sage); }

@media (max-width: 880px) {
  .sticky-bar { display: block; }
  body { padding-bottom: 78px; }
}

/* ---- Entrance animations (motion-safe only) ---- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  }
  .reveal.is-visible { opacity: 1; transform: none; }
}
