:root {
  --bg: #060606;
  --bg-soft: #101010;
  --panel: rgba(255, 255, 255, 0.05);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f6f2ea;
  --muted: #b8b1a5;
  --gold: #d4ad5a;
  --gold-2: #f2d28a;
  --shadow: 0 25px 80px rgba(0, 0, 0, 0.45);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(212, 173, 90, 0.14), transparent 32%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.06), transparent 22%),
    linear-gradient(180deg, #070707 0%, #040404 100%);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0; color: var(--muted); }
h1, h2, h3, h4 { margin: 0; font-family: 'Manrope', sans-serif; line-height: 1.04; letter-spacing: -0.03em; }
button, input, textarea { font: inherit; }
iframe { border: 0; }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image: radial-gradient(circle, rgba(255,255,255,0.4) 1px, transparent 1px);
  background-size: 18px 18px;
  mix-blend-mode: soft-light;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}
.section {
  padding: 6rem 0;
  position: relative;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  border: 1px solid rgba(212, 173, 90, 0.24);
  padding: 0.65rem 1rem;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--gold-2);
  background: rgba(212, 173, 90, 0.08);
  backdrop-filter: blur(12px);
}
.eyebrow::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 0 20px rgba(242, 210, 138, 0.6);
}
.section-heading {
  max-width: 760px;
  margin-bottom: 2.4rem;
}
.section-heading h2 {
  font-size: clamp(2.3rem, 5vw, 4.1rem);
  margin: 1rem 0;
}
.section-heading p {
  font-size: 1.06rem;
}
.center { text-align: center; margin-top: 2rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 1rem 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.site-header.scrolled {
  background: rgba(6, 6, 6, 0.78);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
.brand img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}
.brand span { display: grid; gap: 0.15rem; }
.brand strong { font-size: 1rem; letter-spacing: 0.02em; }
.brand small { color: var(--muted); font-size: 0.8rem; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.96rem;
}
.site-nav a { color: #f3efe6; }
.site-nav a:hover { color: var(--gold-2); }
.nav-cta {
  padding: 0.85rem 1.2rem;
  border: 1px solid rgba(212, 173, 90, 0.25);
  border-radius: 999px;
  background: rgba(212, 173, 90, 0.08);
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 46px;
  height: 46px;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  margin: 5px auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  z-index: 1;
}
.hero-fullscreen {
  min-height: 100svh;
  padding: 0;
  overflow: clip;
}
.hero-grid,
.split-layout,
.contact-grid,
.gallery-layout,
.forms-grid,
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
}
.hero-stage {
  position: relative;
  width: 100%;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}
.hero-stage-fullbleed {
  width: 100%;
  max-width: none;
}
.hero-overlay-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 0 2rem;
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.hero-copy h1 {
  font-size: clamp(3rem, 7vw, 6.4rem);
  max-width: 10ch;
  margin: 1rem 0 1rem;
}
.hero-copy p {
  font-size: 1.08rem;
  max-width: 60ch;
}
.hero-overlay {
  position: relative;
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 1.4rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(7, 7, 7, 0.72), rgba(7, 7, 7, 0.9));
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.28);
  text-align: center;
}
.hero-actions,
.forms-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 1.5rem;
}
.hero-actions {
  justify-content: center;
}
.hero-points {
  justify-content: center;
}
.hero-points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  padding: 0;
  margin: 0;
}
.hero-points li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  color: #f0ebdf;
}
.hero-art {
  display: flex;
  justify-content: center;
}
.hero-art-full {
  position: relative;
  width: 100%;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.hero-image-shell {
  width: min(100%, 680px);
  min-height: clamp(360px, 58vw, 720px);
  border-radius: 36px;
  padding: 1rem;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 18%, rgba(242, 210, 138, 0.14), transparent 50%),
    linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04)),
    rgba(12, 12, 12, 0.86);
  border: 1px solid rgba(212, 173, 90, 0.28);
  box-shadow: var(--shadow);
}
.hero-image-shell-full {
  width: 100vw;
  height: min(78svh, 980px);
  min-height: 520px;
  max-width: none;
  border-radius: 0;
  padding: clamp(6.25rem, 8vw, 7.5rem) clamp(1rem, 3vw, 2.5rem) clamp(1rem, 3vw, 2rem);
}
.hero-image-shell img {
  width: 100%;
  height: 100%;
  max-width: min(100%, 1800px);
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
  margin: 0 auto;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,0.35));
}
.hero-image-frame::after {
  content: "";
  position: absolute;
  inset: auto 12% 2rem 12%;
  height: 14px;
  background: radial-gradient(circle at center, rgba(212, 173, 90, 0.35), transparent 70%);
  filter: blur(20px);
}
.pulse-art {
  position: relative;
  animation: heroPulse 4.2s ease-in-out infinite;
}

@media (max-width: 900px) {
  .hero-overlay-wrap {
    padding: 1.25rem 0 1.25rem;
  }
  .hero-overlay {
    width: 100%;
    max-width: none;
    padding: 1.1rem;
  }
  .hero-copy h1 {
    font-size: clamp(2.5rem, 10vw, 4rem);
    max-width: 11ch;
  }
  .hero-copy p {
    max-width: 46ch;
  }
  .hero-image-shell-full {
    height: min(72svh, 760px);
    min-height: 420px;
    padding: 6rem 1rem 1rem;
  }
}

@media (max-width: 640px) {
  .hero-overlay-wrap {
    min-height: auto;
    padding: 1rem 0.5rem 1rem;
  }
  .hero-overlay {
    width: 100%;
    border-radius: 22px;
  }
  .hero-image-shell-full {
    height: min(64svh, 640px);
    min-height: 360px;
    border-radius: 0;
    padding: 5.5rem 0.75rem 0.75rem;
  }
  .hero-points {
    gap: 0.55rem;
  }
  .hero-points li {
    padding: 0.65rem 0.85rem;
    font-size: 0.9rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.btn:hover { transform: translateY(-2px) scale(1.02); }
.btn-primary {
  color: #1a1204;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 18px 36px rgba(212, 173, 90, 0.24);
}
.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-bar { padding-top: 1rem; }
.trust-grid,
.service-grid,
.showcase-grid,
.gallery-grid,
.gallery-stat-grid {
  display: grid;
  gap: 1rem;
}
.trust-grid { grid-template-columns: repeat(3, 1fr); }
.service-grid { grid-template-columns: repeat(3, 1fr); }
.showcase-grid { grid-template-columns: repeat(3, 1fr); }
.gallery-grid { grid-template-columns: repeat(3, 1fr); }
.gallery-stat-grid { grid-template-columns: repeat(3, 1fr); margin-top: 1rem; }
.trust-grid article,
.card,
.feature-card,
.contact-card,
.contact-form,
.faq-item,
.showcase-item,
.gallery-card,
.gallery-filter,
.gallery-intro,
.stat-card,
.review-card,
.reviews-shell,
.form-embed-card,
.map-card {
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.trust-grid article,
.card,
.feature-card,
.gallery-intro,
.gallery-filter,
.stat-card,
.review-card,
.forms-copy,
.map-card,
.form-embed-card {
  padding: 1.4rem;
}
.trust-grid strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}
.card h3,
.feature-card h3 { font-size: 1.3rem; margin: 0.65rem 0 0.5rem; }
.feature-stack,
.faq-list,
.contact-cards { display: grid; gap: 1rem; }
.feature-card span {
  color: var(--gold-2);
  font-weight: 800;
  letter-spacing: 0.16em;
}

.split-band {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
}
.split-copy h2,
.contact-copy h2,
.forms-copy h2,
.location-copy h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin: 1rem 0;
}
.process-list {
  margin: 1.5rem 0 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.8rem;
  color: var(--muted);
}

.reviews-shell {
  overflow: hidden;
  padding: 1rem;
}
.reviews-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: reviewsFlow 22s linear infinite;
}
.review-card {
  width: min(320px, calc(100vw - 4rem));
  min-height: 220px;
  display: grid;
  gap: 0.9rem;
  align-content: space-between;
}
.review-stars {
  color: var(--gold-2);
  letter-spacing: 0.16em;
  font-size: 1.05rem;
}
.review-card p {
  color: #efe6d7;
  font-size: 1rem;
}
.review-card span {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 800;
}
.review-cta { margin-top: 1.5rem; }

.showcase-item {
  overflow: hidden;
  position: relative;
}
.showcase-item.large { grid-column: span 2; grid-row: span 2; }
.showcase-item img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.showcase-item:hover img { transform: scale(1.04); }
.showcase-item figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.72));
  color: #fff;
  font-weight: 700;
}

.form-embed-card iframe,
.map-card iframe {
  width: 100%;
  min-height: 560px;
  border-radius: 16px;
  background: #050505;
}
.compact-cards { margin-top: 1.5rem; }
.location-grid { align-items: stretch; }

.faq-item { padding: 1rem 1.25rem; }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  font-size: 1.05rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { padding-top: 0.85rem; }

.contact-grid { align-items: start; }
.contact-card {
  padding: 1.15rem 1.2rem;
  display: grid;
  gap: 0.25rem;
}
.contact-card strong { font-size: 0.95rem; color: var(--gold-2); }
.contact-form {
  padding: 1.4rem;
  display: grid;
  gap: 0.95rem;
}
.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: #f2ede2;
  font-weight: 600;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.25);
  color: white;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(212, 173, 90, 0.35);
  border-color: rgba(212, 173, 90, 0.35);
}
.hidden-field { position: absolute; left: -9999px; }

.site-footer {
  padding: 1.5rem 0 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1rem;
  align-items: start;
}
.footer-brand img { width: 54px; height: 54px; }

.gallery-hero { padding-top: 2rem; }
.gallery-layout { align-items: center; }
.gallery-card {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}
.gallery-card:hover img {
  transform: scale(1.05);
  filter: saturate(1.05);
}
.gallery-card .card-copy {
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.85rem;
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.78));
}
.gallery-card .label {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-2);
  font-weight: 800;
}
.gallery-card .title {
  display: block;
  margin-top: 0.3rem;
  font-weight: 700;
}
.gallery-card.hide { display: none; }
.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.filter-btn {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: white;
  border-radius: 999px;
  padding: 0.8rem 1rem;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.filter-btn.active,
.filter-btn:hover {
  background: rgba(212, 173, 90, 0.14);
  border-color: rgba(212, 173, 90, 0.35);
  transform: translateY(-2px);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(0, 0, 0, 0.88);
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.lightbox.active {
  opacity: 1;
  visibility: visible;
}
.lightbox-dialog { width: min(1100px, 100%); display: grid; gap: 1rem; }
.lightbox-stage {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: #080808;
  box-shadow: var(--shadow);
}
.lightbox-stage img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  background: #050505;
}
.lightbox-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #ede7da;
}
.lightbox-controls { display: flex; gap: 0.8rem; }
.icon-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
  color: white;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroPulse {
  0%, 100% { transform: scale(0.985); box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45); }
  50% { transform: scale(1.015); box-shadow: 0 30px 80px rgba(212, 173, 90, 0.16); }
}

@keyframes reviewsFlow {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 0.5rem)); }
}

@media (prefers-reduced-motion: reduce) {
  .pulse-art,
  .reviews-track,
  .reveal { animation: none !important; transition: none !important; }
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-layout,
  .contact-grid,
  .gallery-layout,
  .forms-grid,
  .location-grid,
  .footer-grid,
  .service-grid,
  .trust-grid,
  .gallery-grid,
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .showcase-item.large { grid-column: span 2; }
}

@media (max-width: 820px) {
  .site-header { padding: 0.8rem 0; }
  .nav-toggle { display: inline-block; }
  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(8,8,8,0.96);
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .hero,
  .section { padding: 4.5rem 0; }
  .hero-grid,
  .split-layout,
  .contact-grid,
  .gallery-layout,
  .forms-grid,
  .location-grid,
  .trust-grid,
  .service-grid,
  .gallery-grid,
  .showcase-grid,
  .footer-grid,
  .gallery-stat-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy h1 { max-width: 12ch; }
  .showcase-item.large { grid-column: span 1; grid-row: span 1; }
  .form-embed-card iframe,
  .map-card iframe { min-height: 440px; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 1.1rem), var(--container)); }
  .brand img { width: 54px; height: 54px; }
  .hero-copy h1,
  .section-heading h2,
  .split-copy h2,
  .contact-copy h2,
  .forms-copy h2,
  .location-copy h2 {
    font-size: clamp(2.3rem, 10vw, 3.8rem);
  }
  .hero-actions,
  .forms-actions,
  .filter-buttons,
  .lightbox-meta {
    flex-direction: column;
    align-items: stretch;
  }
  .btn,
  .filter-btn,
  .icon-btn { width: 100%; }
  .lightbox-controls {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .hero-image-shell { min-height: 320px; padding: 0.8rem; }
  .review-card { width: calc(100vw - 3rem); }
}

.footer-grid-single {
  grid-template-columns: 1fr;
}
.footer-credit {
  margin-top: 1.4rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}
.footer-credit a {
  color: inherit;
  font-weight: 600;
}
.floating-call-btn {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  padding: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #1a1204;
  box-shadow: 0 18px 35px rgba(212, 173, 90, 0.34);
  border: 1px solid rgba(255,255,255,0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.floating-call-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 24px 44px rgba(212, 173, 90, 0.4);
}
.floating-call-icon {
  width: 26px;
  height: 26px;
  display: block;
  background: none;
}
.floating-call-icon path {
  vector-effect: non-scaling-stroke;
}
.floating-call-text {
  display: none;
}
@media (max-width: 560px) {
  .floating-call-btn {
    right: 0.85rem;
    bottom: 0.85rem;
    width: 64px;
    height: 64px;
    padding: 0;
  }

/* Mobile hero animation enhancements */
@media (max-width: 768px) {
  .hero,
  .gallery-hero,
  .page-hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
  }

  /* Gentle animated glow */
  .hero::before,
  .gallery-hero::before,
  .page-hero::before {
    content: "";
    position: absolute;
    inset: -20%;
    background:
      radial-gradient(circle at 20% 30%, rgba(255,255,255,0.14), transparent 30%),
      radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08), transparent 25%),
      radial-gradient(circle at 50% 80%, rgba(255,255,255,0.10), transparent 28%);
    animation: heroPulseGlow 4.5s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
  }

  /* Shimmer sweep */
  .hero::after,
  .gallery-hero::after,
  .page-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: -160%;
    width: 90%;
    height: 100%;
    background: linear-gradient(
      110deg,
      transparent 0%,
      rgba(255,255,255,0.00) 35%,
      rgba(255,255,255,0.18) 50%,
      rgba(255,255,255,0.00) 65%,
      transparent 100%
    );
    transform: skewX(-20deg);
    animation: heroShimmer 3.8s linear infinite;
    z-index: 1;
    pointer-events: none;
  }

  /* Keep text/content above animation */
  .hero > *,
  .gallery-hero > *,
  .page-hero > * {
    position: relative;
    z-index: 2;
  }

  /* Hero image or framed image */
  .hero img,
  .hero-image,
  .hero-frame,
  .gallery-hero img,
  .page-hero img {
    animation: heroFloat 5s ease-in-out infinite;
    will-change: transform, opacity;
  }

  /* CTA button pulse */
  .hero .btn,
  .hero .cta-button,
  .hero .primary-btn,
  .gallery-hero .btn,
  .page-hero .btn {
    animation: heroButtonPulse 2.6s ease-in-out infinite;
  }
}

/* Optional: slightly stronger effect on very small screens */
@media (max-width: 480px) {
  .hero::after,
  .gallery-hero::after,
  .page-hero::after {
    opacity: 0.9;
    animation-duration: 3.2s;
  }

  .hero img,
  .hero-image,
  .hero-frame,
  .gallery-hero img,
  .page-hero img {
    animation-duration: 4.2s;
  }
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .hero::before,
  .hero::after,
  .gallery-hero::before,
  .gallery-hero::after,
  .page-hero::before,
  .page-hero::after,
  .hero img,
  .hero-image,
  .hero-frame,
  .gallery-hero img,
  .page-hero img,
  .hero .btn,
  .hero .cta-button,
  .hero .primary-btn,
  .gallery-hero .btn,
  .page-hero .btn {
    animation: none !important;
  }
}

@keyframes heroShimmer {
  0% {
    left: -160%;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    left: 170%;
    opacity: 0;
  }
}

@keyframes heroPulseGlow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.75;
  }
  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

@keyframes heroFloat {
  0%, 100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-6px) scale(1.01);
  }
}

@keyframes heroButtonPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}
