/* ============================================================
   Rukmani Production — Black & Gold Glassmorphism Theme
   ============================================================ */

:root {
  --black-900: #08080a;
  --black-800: #0f0f13;
  --black-700: #17171d;
  --black-600: #202027;

  --gold-100: #f8e9c8;
  --gold-300: #f0d18a;
  --gold-500: #d4af37;
  --gold-600: #b8912a;
  --gold-glow: rgba(212, 175, 55, 0.35);

  --text-light: #f5f1e8;
  --text-muted: rgba(245, 241, 232, 0.68);
  --text-faint: rgba(245, 241, 232, 0.4);

  --glass-bg: rgba(255, 255, 255, 0.055);
  --glass-bg-strong: rgba(255, 255, 255, 0.09);
  --glass-border: rgba(212, 175, 55, 0.28);
  --glass-border-soft: rgba(255, 255, 255, 0.09);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;

  --container: 1180px;
  --nav-height: 76px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--black-900);
  color: var(--text-light);
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .font-serif {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Ambient background ---------- */
.bg-ambient {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: var(--black-900);
  overflow: hidden;
}
.bg-ambient::before,
.bg-ambient::after {
  content: '';
  position: absolute;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.22;
}
.bg-ambient::before {
  background: radial-gradient(circle, var(--gold-500), transparent 70%);
  top: -20%;
  left: -10%;
}
.bg-ambient::after {
  background: radial-gradient(circle, var(--gold-300), transparent 70%);
  bottom: -25%;
  right: -15%;
}

/* ---------- Glass utility ---------- */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border-soft);
  border-radius: var(--radius-md);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: var(--glass-shadow);
}
.glass-gold-border {
  border: 1px solid var(--glass-border);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-600));
  color: #1a1305;
  box-shadow: 0 6px 24px var(--gold-glow);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 30px var(--gold-glow); }

.btn-glass {
  background: var(--glass-bg-strong);
  color: var(--text-light);
  border: 1px solid var(--glass-border);
}
.btn-glass:hover { background: rgba(255, 255, 255, 0.12); transform: translateY(-2px); }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(8, 8, 10, 0.55);
  border-bottom: 1px solid var(--glass-border-soft);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
}
.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--glass-border);
  flex-shrink: 0;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand .name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-100), var(--gold-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand .tagline {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.92rem;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold-500);
  transition: width 0.25s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold-300); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta { display: none; }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  background: none;
  border: none;
  padding: 8px 0;
  z-index: 210;
}
.hamburger span {
  height: 2px;
  width: 100%;
  background: var(--gold-300);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  bottom: 0;
  background: rgba(8, 8, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 190;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--text-light);
}
.mobile-menu a.active { color: var(--gold-300); }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .hamburger { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  position: relative;
}
.hero-inner {
  padding: 48px 32px;
  max-width: 640px;
  margin: 0 24px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-300);
  border: 1px solid var(--glass-border);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2.1rem, 6vw, 3.6rem);
  margin-bottom: 18px;
}
.hero h1 .accent {
  background: linear-gradient(135deg, var(--gold-100), var(--gold-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 30px;
  max-width: 50ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---------- Sections ---------- */
section { position: relative; padding: 90px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 12px;
  display: block;
}
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 14px; }
.section-head p { color: var(--text-muted); }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- Grids & Cards ---------- */
.grid {
  display: grid;
  gap: 26px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  padding: 34px 28px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--glass-border);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5), 0 0 0 1px var(--glass-border);
}
.card .icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(212,175,55,0.25), rgba(212,175,55,0.05));
  border: 1px solid var(--glass-border);
  margin-bottom: 18px;
  font-size: 1.4rem;
}
.card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.card p { color: var(--text-muted); font-size: 0.92rem; }
.card .price-tag {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--gold-300);
  letter-spacing: 0.04em;
}

/* ---------- About preview / split layout ---------- */
.split {
  display: grid;
  gap: 40px;
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1.1fr; gap: 60px; } }
.split-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  aspect-ratio: 4/5;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-media .frame-glow {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.6));
}
.split-body h2 { margin-bottom: 18px; font-size: clamp(1.7rem, 4vw, 2.4rem); }
.split-body p { color: var(--text-muted); margin-bottom: 16px; }
.stat-row { display: flex; gap: 34px; margin-top: 28px; flex-wrap: wrap; }
.stat b {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--gold-300);
}
.stat span { font-size: 0.8rem; color: var(--text-faint); }

/* ---------- Gallery ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 44px;
}
.filter-btn {
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 0.85rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border-soft);
  color: var(--text-muted);
  transition: all 0.25s ease;
}
.filter-btn.active, .filter-btn:hover {
  color: var(--gold-100);
  border-color: var(--glass-border);
  background: var(--glass-bg-strong);
}

.gallery-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }

.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 3/4;
  border: 1px solid var(--glass-border-soft);
  cursor: pointer;
  background: var(--black-700);
}
.gallery-item img, .gallery-item video {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img, .gallery-item:hover video { transform: scale(1.08); }
.gallery-item .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.75));
  display: flex; align-items: flex-end;
  padding: 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay span {
  font-size: 0.78rem;
  color: var(--gold-100);
  letter-spacing: 0.03em;
}
.gallery-item .play-badge {
  position: absolute; top: 10px; right: 10px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(212,175,55,0.85);
  color: #1a1305;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
}

.empty-state {
  text-align: center;
  padding: 70px 20px;
  color: var(--text-faint);
}
.empty-state .icon-lg { font-size: 2.6rem; margin-bottom: 16px; }

/* ---------- Service catalog ---------- */
.service-tabs {
  position: sticky;
  top: calc(var(--nav-height) + 12px);
  z-index: 50;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding: 14px;
  margin-bottom: 50px;
  border-radius: var(--radius-lg);
}
.service-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border-soft);
  color: var(--text-muted);
  transition: all 0.25s ease;
}
.service-tab:hover, .service-tab.active {
  color: var(--gold-100);
  border-color: var(--glass-border);
  background: var(--glass-bg-strong);
}

.service-category-section { padding-top: 40px; scroll-margin-top: calc(var(--nav-height) + 90px); }
.service-category-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.service-category-head .icon-badge {
  width: 58px; height: 58px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  background: linear-gradient(135deg, rgba(212,175,55,0.25), rgba(212,175,55,0.05));
  border: 1px solid var(--glass-border);
  flex-shrink: 0;
}
.service-category-head h2 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); margin-bottom: 4px; }
.service-category-head p { color: var(--text-muted); font-size: 0.92rem; max-width: 60ch; }

.service-group-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
  margin-bottom: 30px;
}
@media (min-width: 700px) { .service-group-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .service-group-grid { grid-template-columns: repeat(3, 1fr); } }

.service-group-card { padding: 26px 24px; }
.service-group-card h3 {
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--gold-300);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--glass-border-soft);
}
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.service-tag {
  font-size: 0.78rem;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border-soft);
  color: var(--text-muted);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.service-tag:hover { border-color: var(--glass-border); color: var(--gold-100); }

.category-divider {
  height: 1px;
  background: var(--glass-border-soft);
  margin: 70px 0 10px;
}

/* ---------- Founder / blog-style reveal ---------- */
.founder-block {
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr;
  align-items: center;
  margin-bottom: 90px;
}
@media (min-width: 900px) {
  .founder-block { grid-template-columns: 1fr 1.1fr; gap: 64px; }
  .founder-block.reverse .founder-photo-frame { order: 2; }
  .founder-block.reverse .founder-text { order: 1; }
}
.founder-photo-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  aspect-ratio: 4/5;
}
.founder-photo-frame img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transform: scale(1.18);
  transition: transform 1.3s cubic-bezier(.16,.84,.44,1) 0.1s;
}
.founder-photo-frame.in-view img { transform: scale(1); }

.photo-wipe-left { clip-path: inset(0 100% 0 0); transition: clip-path 1.1s cubic-bezier(.65,0,.35,1); }
.photo-wipe-left.in-view { clip-path: inset(0 0 0 0); }
.photo-wipe-right { clip-path: inset(0 0 0 100%); transition: clip-path 1.1s cubic-bezier(.65,0,.35,1); }
.photo-wipe-right.in-view { clip-path: inset(0 0 0 0); }

.reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(.16,.84,.44,1), transform 0.9s cubic-bezier(.16,.84,.44,1);
}
.reveal-left { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }
.reveal-left.in-view, .reveal-right.in-view { opacity: 1; transform: translateX(0); }

.founder-text h3 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin-bottom: 16px; }
.founder-text p { color: var(--text-muted); margin-bottom: 14px; }
.founder-quote {
  margin-top: 22px;
  padding: 22px 26px;
  border-left: 3px solid var(--gold-500);
  background: var(--glass-bg);
  border-radius: 0 16px 16px 0;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.08rem;
  color: var(--gold-100);
}
.founder-quote cite {
  display: block;
  margin-top: 12px;
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-size: 0.8rem;
  color: var(--text-faint);
}
.founder-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--gold-300);
  border: 1px solid var(--glass-border);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

/* ---------- Instagram embeds ---------- */
.insta-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: 1fr;
  justify-items: center;
}
@media (min-width: 640px) { .insta-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .insta-grid { grid-template-columns: repeat(3, 1fr); } }
.insta-card {
  width: 100%;
  max-width: 360px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  padding: 6px;
}
.insta-card blockquote.instagram-media { margin: 0 !important; width: 100% !important; min-width: 0 !important; }
.insta-card iframe { border-radius: calc(var(--radius-md) - 6px); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(4,4,5,0.92);
  backdrop-filter: blur(10px);
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox-content { max-width: 900px; max-height: 85vh; width: 100%; }
.lightbox-content img, .lightbox-content video {
  width: 100%; max-height: 85vh; object-fit: contain; border-radius: var(--radius-sm);
}
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  font-size: 1.8rem; color: var(--gold-300);
  background: none; border: none;
}

/* ---------- Testimonials ---------- */
.testimonial-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}
.testimonial-track::-webkit-scrollbar { height: 5px; }
.testimonial-track::-webkit-scrollbar-thumb { background: var(--glass-border); border-radius: 10px; }
.testimonial-card {
  scroll-snap-align: start;
  flex: 0 0 clamp(260px, 80vw, 360px);
  padding: 30px 26px;
}
.testimonial-card .quote { font-size: 1.6rem; color: var(--gold-500); line-height: 1; margin-bottom: 10px; }
.testimonial-card p.body { color: var(--text-muted); font-size: 0.94rem; margin-bottom: 18px; }
.testimonial-card .author { font-weight: 600; font-size: 0.9rem; }
.testimonial-card .role { color: var(--text-faint); font-size: 0.78rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; gap: 30px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-card { padding: 28px; display: flex; gap: 16px; align-items: flex-start; }
.contact-card .icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(212,175,55,0.25), rgba(212,175,55,0.05));
  border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
}
.contact-card h4 { font-size: 0.95rem; margin-bottom: 4px; }
.contact-card a, .contact-card p { color: var(--text-muted); font-size: 0.9rem; }
.contact-card a:hover { color: var(--gold-300); }

.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 8px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border-soft);
  color: var(--text-light);
  font-family: inherit;
  font-size: 0.92rem;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
}
.map-embed { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--glass-border-soft); margin-top: 20px; }
.map-embed iframe { width: 100%; height: 280px; border: 0; display: block; filter: grayscale(0.3) invert(0.92) contrast(0.85); }

.alert {
  padding: 14px 18px;
  border-radius: 12px;
  margin-bottom: 22px;
  font-size: 0.9rem;
}
.alert-success { background: rgba(52, 199, 89, 0.12); border: 1px solid rgba(52, 199, 89, 0.4); color: #8ef0ab; }
.alert-error { background: rgba(255, 69, 58, 0.12); border: 1px solid rgba(255, 69, 58, 0.4); color: #ffb0ab; }

/* ---------- Floating WhatsApp ---------- */
.float-whatsapp {
  position: fixed;
  bottom: 22px; right: 22px;
  z-index: 150;
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.55);
  transition: transform 0.25s ease;
}
.float-whatsapp:hover { transform: translateY(-3px); }
.float-whatsapp img { width: 100%; height: 100%; object-fit: contain; display: block; }
.float-whatsapp::before {
  content: '';
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 1px solid var(--gold-500);
  animation: pulse-ring 2.4s ease-out infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ---------- Footer ---------- */
footer { padding: 60px 0 30px; border-top: 1px solid var(--glass-border-soft); }
.footer-grid {
  display: grid; gap: 36px;
  grid-template-columns: 1fr;
  margin-bottom: 40px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; } }
.footer-grid h4 { font-size: 0.9rem; color: var(--gold-300); margin-bottom: 16px; letter-spacing: 0.04em; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a, .footer-grid p { color: var(--text-muted); font-size: 0.88rem; }
.footer-grid a:hover { color: var(--gold-300); }
.social-row { display: flex; gap: 12px; margin-top: 18px; }
.social-row a {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border-soft);
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.social-row a img { width: 20px; height: 20px; object-fit: contain; }
.social-row a:hover { border-color: var(--glass-border); transform: translateY(-2px); }
.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-faint);
  padding-top: 24px;
  border-top: 1px solid var(--glass-border-soft);
}

/* ---------- Page header (inner pages) ---------- */
.page-header {
  padding: calc(var(--nav-height) + 60px) 0 60px;
  text-align: center;
}
.page-header .section-eyebrow { justify-content: center; display: block; }
.page-header h1 { font-size: clamp(2rem, 5vw, 3rem); }
.page-header p { color: var(--text-muted); max-width: 560px; margin: 14px auto 0; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
