/* ========================================================================
   QUE BONITO BOUTIQUE - styles.css
   Apple Dramatic + Warm Minimal mix
   ======================================================================== */

:root {
  --color-primary: #C72563;
  --color-primary-dark: #8E1B43;
  --color-primary-light: #F1D4DF;
  --color-accent: #C9A961;
  --color-accent-light: #E5D3A7;
  --color-ink: #1A0E14;
  --color-ink-soft: #2A1620;
  --color-cream: #FBF6EE;
  --color-cream-deep: #F4ECDD;
  --color-text-soft: #5C4A45;
  --color-text-muted: #7A6862;
  --color-border: #E8DFD2;

  --ease-out-expo: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-enter: cubic-bezier(0.16, 1, 0.3, 1);
}

* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { overflow-x: hidden; }

/* ========================================================================
   HEADER (H3 Centered)
   ======================================================================== */

#header {
  transition: background 0.35s ease, backdrop-filter 0.35s ease,
              -webkit-backdrop-filter 0.35s ease,
              border-color 0.35s ease, box-shadow 0.35s ease, color 0.35s ease;
  border-bottom: 1px solid rgba(26, 14, 20, 0);
  background: transparent;
  -webkit-backdrop-filter: blur(0);
  backdrop-filter: blur(0);
  color: var(--color-ink);
}

#header.scrolled {
  background: rgba(251, 246, 238, 0.86);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  backdrop-filter: blur(14px) saturate(180%);
  border-bottom-color: rgba(26, 14, 20, 0.08);
  box-shadow: 0 2px 10px rgba(26, 14, 20, 0.04);
}

#header .nav-link,
#header .nav-logo {
  color: var(--color-ink);
  transition: color 0.2s ease;
}
#header .nav-link { color: var(--color-text-soft); }
#header .nav-link:hover { color: var(--color-primary); }
#header.scrolled .nav-link { color: var(--color-text-soft); }
#header.scrolled .nav-link:hover { color: var(--color-primary); }

#header .nav-logo {
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}
#header.scrolled .nav-logo { text-shadow: none; }

/* ========================================================================
   COMMON SECTION COMPONENTS
   ======================================================================== */

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 600;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.section-eyebrow-dark { color: var(--color-accent-light); }

.section-title {
  font-family: '"Cormorant Garamond"', Georgia, serif;
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--color-ink);
}
.section-title-dark { color: var(--color-cream); }

.serif-italic {
  font-style: italic;
  color: var(--color-primary);
  font-weight: 500;
}

/* ========================================================================
   BUTTONS
   ======================================================================== */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--color-primary);
  color: white;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all 250ms var(--ease-out-expo);
  box-shadow: 0 4px 14px rgba(199, 37, 99, 0.25), 0 2px 6px rgba(199, 37, 99, 0.15);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(199, 37, 99, 0.32), 0 4px 10px rgba(199, 37, 99, 0.2);
}

.btn-primary-on-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--color-cream);
  color: var(--color-ink);
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 250ms var(--ease-out-expo);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}
.btn-primary-on-dark:hover {
  background: white;
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: transparent;
  color: var(--color-ink);
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  border: 1.5px solid rgba(26, 14, 20, 0.18);
  cursor: pointer;
  transition: all 250ms var(--ease-out-expo);
}
.btn-ghost:hover {
  background: var(--color-ink);
  color: var(--color-cream);
  border-color: var(--color-ink);
}

.btn-ghost-on-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: transparent;
  color: var(--color-cream);
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  border: 1.5px solid rgba(251, 246, 238, 0.25);
  cursor: pointer;
  transition: all 250ms var(--ease-out-expo);
}
.btn-ghost-on-dark:hover {
  background: var(--color-cream);
  color: var(--color-ink);
  border-color: var(--color-cream);
}

/* ========================================================================
   HERO
   ======================================================================== */

.hero-bg {
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(199, 37, 99, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 0% 50%, rgba(201, 169, 97, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, #FBF6EE 0%, #F8F0E2 100%);
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.4;
}
.hero-blob-1 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, var(--color-primary-light) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation: hero-blob-float-1 22s ease-in-out infinite;
}
.hero-blob-2 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, var(--color-accent-light) 0%, transparent 70%);
  bottom: 10%;
  left: -80px;
  animation: hero-blob-float-2 28s ease-in-out infinite;
}
@keyframes hero-blob-float-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, 40px) scale(1.1); }
}
@keyframes hero-blob-float-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -40px) scale(1.15); }
}

.hero-dot-grid {
  background-image: radial-gradient(circle, rgba(26, 14, 20, 0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 10%, transparent 70%);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 10%, transparent 70%);
}

.hero-italic {
  font-style: italic;
  color: var(--color-primary);
  font-family: '"Cormorant Garamond"', Georgia, serif;
  font-weight: 400;
}

.hero-fade {
  opacity: 0;
  transform: translateY(20px);
  animation: hero-rise 1s var(--ease-out-expo) forwards;
  animation-delay: var(--d, 0ms);
}
@keyframes hero-rise {
  to { opacity: 1; transform: translateY(0); }
}

/* Hero photo composition */
.hero-photo-wrap {
  position: relative;
  padding: 0 0 60px 0;
}
.hero-photo-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 1px 1px rgba(26, 14, 20, 0.04),
    0 4px 8px rgba(26, 14, 20, 0.06),
    0 12px 28px rgba(26, 14, 20, 0.1),
    0 30px 60px rgba(26, 14, 20, 0.12);
  aspect-ratio: 4 / 5;
  background: #1a0e14;
}
@media (min-width: 768px) {
  .hero-photo-frame { aspect-ratio: 5 / 6; }
}
.hero-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 8s ease-out;
}
.hero-photo-frame:hover .hero-photo-img {
  transform: scale(1.05);
}
.hero-photo-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  background: rgba(26, 14, 20, 0.78);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-cream);
  padding: 8px 14px;
  border-radius: 999px;
}
.hero-photo-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(26, 14, 20, 0.4) 100%);
  pointer-events: none;
}

.hero-floating-card {
  position: absolute;
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow:
    0 1px 1px rgba(26, 14, 20, 0.04),
    0 4px 12px rgba(26, 14, 20, 0.08),
    0 12px 30px rgba(26, 14, 20, 0.12);
  z-index: 4;
  animation: floating 5s ease-in-out infinite;
}
.hero-floating-rating {
  bottom: 30px;
  left: -28px;
  animation-delay: 0s;
}
.hero-floating-est {
  top: 50%;
  right: -40px;
  animation-delay: 1.5s;
}
@keyframes floating {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 768px) {
  .hero-floating-rating { bottom: 20px; left: 10px; }
  .hero-floating-est { display: none; }
}

.scroll-line {
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(180deg, transparent, var(--color-primary));
  animation: scroll-down-line 2s ease-in-out infinite;
}
@keyframes scroll-down-line {
  0% { top: -50%; }
  100% { top: 100%; }
}

/* ========================================================================
   STATS SECTION
   ======================================================================== */

.stats-bg-pattern {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at center, black 30%, transparent 70%);
  mask-image: radial-gradient(ellipse 60% 60% at center, black 30%, transparent 70%);
}

.stat-block {
  text-align: center;
  position: relative;
}
.stat-block::before {
  content: '';
  position: absolute;
  left: 50%;
  top: -8px;
  transform: translateX(-50%);
  width: 24px;
  height: 1px;
  background: var(--color-accent);
  opacity: 0.6;
}
.stat-num {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--color-cream);
}
.stat-label {
  font-size: 12px;
  color: rgba(251, 246, 238, 0.65);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 12px;
  font-weight: 500;
}

/* ========================================================================
   ABOUT SECTION
   ======================================================================== */

.about-deco {
  animation: rotate-slow 60s linear infinite;
}
@keyframes rotate-slow {
  to { transform: rotate(360deg); }
}

.about-photo-wrap {
  position: relative;
  padding: 0 0 50px 50px;
}
.about-photo-decoration {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70%;
  height: 70%;
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-accent-light) 100%);
  border-radius: 24px;
  opacity: 0.6;
  z-index: 0;
}
.about-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
  box-shadow:
    0 1px 1px rgba(26, 14, 20, 0.05),
    0 8px 24px rgba(26, 14, 20, 0.1),
    0 20px 48px rgba(26, 14, 20, 0.12);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.about-photo-stamp {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  background: var(--color-ink);
  color: var(--color-cream);
  padding: 24px 28px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 12px 30px rgba(26, 14, 20, 0.15);
}
.about-photo-stamp .font-heading:first-child {
  letter-spacing: 0.02em;
}

.about-bullet {
  flex-shrink: 0;
  font-family: '"Cormorant Garamond"', Georgia, serif;
  font-size: 26px;
  font-style: italic;
  color: var(--color-primary);
  font-weight: 500;
  line-height: 1;
  width: 44px;
  text-align: center;
}

/* ========================================================================
   CATEGORIES
   ======================================================================== */

.categories-bg-pattern {
  background-image: radial-gradient(circle, rgba(26, 14, 20, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
}

.category-card {
  background: var(--color-cream);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  position: relative;
  transition: box-shadow 350ms var(--ease-out-expo), border-color 350ms ease;
  display: flex;
  flex-direction: column;
}
.category-card:hover {
  border-color: rgba(199, 37, 99, 0.3);
  box-shadow:
    0 1px 2px rgba(26, 14, 20, 0.04),
    0 8px 20px rgba(26, 14, 20, 0.08),
    0 24px 50px rgba(26, 14, 20, 0.12);
}
.category-card-img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.category-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s var(--ease-out-expo);
}
.category-card:hover .category-card-img { transform: scale(1.06); }
.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26, 14, 20, 0.35) 100%);
  pointer-events: none;
}
.category-card-num {
  position: absolute;
  top: 18px;
  left: 18px;
  font-family: '"Cormorant Garamond"', Georgia, serif;
  font-style: italic;
  font-size: 28px;
  color: var(--color-cream);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  font-weight: 500;
}
.category-card-body {
  padding: 28px 26px 30px;
  flex: 1;
}
.cat-tag {
  display: inline-flex;
  font-size: 12px;
  padding: 5px 12px;
  background: var(--color-cream-deep);
  color: var(--color-text-soft);
  border-radius: 999px;
  border: 1px solid var(--color-border);
  letter-spacing: 0.02em;
  font-weight: 500;
}

.category-card-featured {
  position: relative;
  border-color: rgba(199, 37, 99, 0.25);
  box-shadow:
    0 1px 2px rgba(199, 37, 99, 0.06),
    0 8px 20px rgba(199, 37, 99, 0.08),
    0 24px 50px rgba(199, 37, 99, 0.1);
}
.category-featured-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--color-primary);
  color: white;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(199, 37, 99, 0.3);
}

.cat-cta-strip {
  background: linear-gradient(135deg, var(--color-ink) 0%, var(--color-ink-soft) 100%);
  border-radius: 24px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}
.cat-cta-strip::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 37, 99, 0.4) 0%, transparent 70%);
  pointer-events: none;
}
@media (min-width: 768px) {
  .cat-cta-strip {
    flex-direction: row;
    align-items: center;
    padding: 44px 48px;
  }
}

/* ========================================================================
   GALLERY
   ======================================================================== */

.gallery-item {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
  background: var(--color-ink);
}
.gallery-item-tall {
  aspect-ratio: 4 / 5;
}
.gallery-item-wide {
  aspect-ratio: 1;
}
@media (min-width: 1024px) {
  .gallery-item-wide { aspect-ratio: 4 / 3; grid-column: span 2; }
}
@media (max-width: 1023px) {
  .gallery-item-tall { aspect-ratio: 1; }
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-out-expo);
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 14, 20, 0) 30%, rgba(26, 14, 20, 0.5) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-icon {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-cream);
  color: var(--color-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s var(--ease-out-expo);
}
.gallery-item:hover .gallery-icon {
  opacity: 1;
  transform: translateY(0);
}

/* GLightbox custom sizing */
.glightbox-clean .gslide-media {
  max-width: 90vw !important;
  max-height: 90vh !important;
}
.glightbox-clean .gslide-image img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  width: auto;
  height: auto;
}
.glightbox-clean .gslide-description { background: rgba(26, 14, 20, 0.85); }
.glightbox-clean .gdesc-inner { padding: 14px 20px; }

/* ========================================================================
   REVIEWS
   ======================================================================== */

.reviews-bg-pattern {
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at center, black 20%, transparent 70%);
  mask-image: radial-gradient(ellipse 70% 60% at center, black 20%, transparent 70%);
}

.review-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 28px 26px 24px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  position: relative;
  transition: border-color 350ms ease, box-shadow 350ms ease, background 350ms ease;
}
.review-card:hover {
  border-color: rgba(199, 37, 99, 0.3);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 24px rgba(199, 37, 99, 0.1);
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 8px;
  right: 18px;
  font-family: '"Cormorant Garamond"', Georgia, serif;
  font-size: 80px;
  color: rgba(199, 37, 99, 0.18);
  line-height: 1;
  pointer-events: none;
}
.review-stars {
  font-size: 18px;
  letter-spacing: 4px;
  margin-bottom: 14px;
}
.review-text {
  color: rgba(251, 246, 238, 0.85);
  line-height: 1.65;
  font-size: 15.5px;
  margin-bottom: 22px;
  font-family: '"Cormorant Garamond"', Georgia, serif;
  font-weight: 500;
  font-size: 19px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.review-author:hover { opacity: 0.8; }
.review-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.15);
  object-fit: cover;
}
.review-name {
  color: var(--color-cream);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
}
.review-date {
  color: rgba(251, 246, 238, 0.5);
  font-size: 12px;
  margin-top: 2px;
}

/* ========================================================================
   CONTACT
   ======================================================================== */

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 22px 24px;
  transition: border-color 300ms ease, box-shadow 300ms ease;
}
.contact-card:hover {
  border-color: rgba(199, 37, 99, 0.25);
  box-shadow:
    0 1px 2px rgba(26, 14, 20, 0.04),
    0 4px 12px rgba(26, 14, 20, 0.06),
    0 12px 28px rgba(26, 14, 20, 0.08);
}
.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.map-wrap {
  position: relative;
  height: 100%;
  min-height: 480px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow:
    0 1px 2px rgba(26, 14, 20, 0.05),
    0 8px 22px rgba(26, 14, 20, 0.08),
    0 20px 40px rgba(26, 14, 20, 0.1);
}
.map-overlay {
  position: absolute;
  bottom: 18px;
  left: 18px;
  z-index: 2;
}

/* ========================================================================
   FOOTER
   ======================================================================== */

.footer-heading {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(251, 246, 238, 0.5);
  font-weight: 600;
}
.footer-link {
  color: rgba(251, 246, 238, 0.75);
  transition: color 0.2s ease;
}
.footer-link:hover { color: var(--color-primary-light); }
.footer-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}
.footer-icon-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

/* ========================================================================
   STICKY CTA
   ======================================================================== */

.fab-pulse {
  position: relative;
}
.fab-pulse::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.4;
  z-index: -1;
  animation: fab-pulse-anim 2.4s ease-out infinite;
}
@keyframes fab-pulse-anim {
  0% { transform: scale(0.95); opacity: 0.5; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ========================================================================
   REVEAL ON SCROLL
   ======================================================================== */

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease-out-expo), transform 0.85s var(--ease-out-expo);
}
.reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger inside grid containers */
.grid > .reveal-on-scroll:nth-child(1) { transition-delay: 0ms; }
.grid > .reveal-on-scroll:nth-child(2) { transition-delay: 100ms; }
.grid > .reveal-on-scroll:nth-child(3) { transition-delay: 200ms; }
.grid > .reveal-on-scroll:nth-child(4) { transition-delay: 300ms; }
.grid > .reveal-on-scroll:nth-child(5) { transition-delay: 400ms; }
.grid > .reveal-on-scroll:nth-child(6) { transition-delay: 500ms; }
.grid > .reveal-on-scroll:nth-child(7) { transition-delay: 600ms; }
.grid > .reveal-on-scroll:nth-child(8) { transition-delay: 700ms; }

/* ========================================================================
   RESPONSIVE
   ======================================================================== */

@media (max-width: 768px) {
  .about-photo-wrap { padding: 0 0 30px 30px; }
  .about-photo-stamp { padding: 18px 20px; }
  .about-photo-stamp .font-heading:first-child { font-size: 18px; }
  .about-photo-stamp .font-heading:last-child { font-size: 13px; }

  .cat-cta-strip { padding: 28px 24px; }

  .map-wrap { min-height: 400px; }

  .hero-blob-1 { width: 320px; height: 320px; }
  .hero-blob-2 { display: none; }
}

/* iOS-specific: убираем тяжелый blur где можно */
@supports (-webkit-touch-callout: none) {
  .review-card { -webkit-backdrop-filter: none; backdrop-filter: none; }
}
