/* ============================================
   SILVIA LABRA — Global Stylesheet
   Organic Luxury · Sacred Femininity
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Lato:ital,wght@0,300;0,400;0,700;1,300;1,400&family=Marcellus&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --sage: #4A5D4E;
  --sage-light: #6B7F6E;
  --cream: #F5F0E8;
  --cream-dark: #EDE6D8;
  --terracotta: #C4836A;
  --terracotta-light: #D4A08A;
  --gold: #B8924A;
  --gold-light: #D4B06A;
  --burgundy: #6B2D3E;
  --burgundy-light: #8A4A5C;
  --charcoal: #2C2C2C;
  --warm-white: #FDFBF7;
  --blush: #E8D5CC;
  --deep-green: #2E3E30;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Lato', 'Segoe UI', sans-serif;
  --font-accent: 'Marcellus', Georgia, serif;

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--warm-white);
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }

p {
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  max-width: 65ch;
}

.text-accent { font-family: var(--font-accent); }
.text-gold { color: var(--gold); }
.text-sage { color: var(--sage); }
.text-cream { color: var(--cream); }
.text-terracotta { color: var(--terracotta); }

.subtitle {
  font-family: var(--font-accent);
  font-size: clamp(0.85rem, 1vw, 1rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(253, 251, 247, 0.95);
  backdrop-filter: blur(20px);
  padding: 1rem 3rem;
  box-shadow: 0 2px 30px rgba(0,0,0,0.05);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--warm-white);
  transition: var(--transition);
}

.nav.scrolled .nav-logo { color: var(--sage); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-white);
  position: relative;
  padding-bottom: 4px;
}

.nav.scrolled .nav-links a { color: var(--charcoal); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 8px;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-toggle span {
  width: 28px;
  height: 1.5px;
  background: var(--warm-white);
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
  transform-origin: center;
}
.nav.scrolled .nav-toggle span { background: var(--charcoal); }

/* Hamburger → X when active */
.nav-toggle.active {
  background: rgba(46, 62, 48, 0.08);
}
.nav-toggle.active span { background: var(--charcoal); }
.nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav overlay backdrop */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.nav-overlay.visible {
  display: block;
  opacity: 1;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: 1px solid;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--sage);
  color: var(--cream);
  border-color: var(--sage);
}
.btn-primary:hover {
  background: var(--deep-green);
  border-color: var(--deep-green);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--sage);
  border-color: var(--sage);
}
.btn-outline:hover {
  background: var(--sage);
  color: var(--cream);
}

.btn-gold {
  background: var(--gold);
  color: var(--warm-white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  transform: translateY(-2px);
}

.btn-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245, 240, 232, 0.5);
}
.btn-light:hover {
  background: rgba(245, 240, 232, 0.15);
  border-color: var(--cream);
}

/* --- Layout Utilities --- */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 8rem 0;
  position: relative;
}

.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* --- Decorative Elements --- */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
}
.ornament::before,
.ornament::after {
  content: '';
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.ornament-symbol {
  font-size: 0.7rem;
  color: var(--gold);
  opacity: 0.7;
}

.gold-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.5rem 0;
}
.gold-line.center { margin: 1.5rem auto; }

/* --- Scroll Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* stagger children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.15s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.3s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.45s; }

/* --- Image Treatments --- */
.img-circle {
  border-radius: 50%;
  aspect-ratio: 1;
  object-fit: cover;
}

.img-organic {
  border-radius: 60% 40% 55% 45% / 55% 60% 40% 45%;
  object-fit: cover;
}

.img-arch {
  border-radius: 200px 200px 8px 8px;
  object-fit: cover;
}

.img-soft {
  border-radius: 12px;
  object-fit: cover;
}

/* --- Card Styles --- */
.card {
  background: var(--warm-white);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.card-body { padding: 2rem; }

/* --- Hero Styles --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  color: var(--warm-white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
}

/* --- Parallax Floating Shapes --- */
.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  pointer-events: none;
  animation: floatShape 20s ease-in-out infinite;
}
@keyframes floatShape {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-30px) rotate(5deg); }
  66% { transform: translateY(15px) rotate(-3deg); }
}

/* --- Grain Texture Overlay --- */
.grain::after {
  content: '';
  position: fixed;
  inset: 0;
  opacity: 0.025;
  z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* --- Footer --- */
.footer {
  background: var(--deep-green);
  color: rgba(245, 240, 232, 0.8);
  padding: 5rem 0 2rem;
}

.footer h4 {
  color: var(--cream);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.footer a {
  color: rgba(245, 240, 232, 0.7);
  transition: var(--transition);
}
.footer a:hover { color: var(--gold); }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245, 240, 232, 0.1);
  margin-bottom: 2rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-links a { font-size: 0.95rem; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  opacity: 0.6;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}

/* --- Page Specific: Service Portals on Homepage --- */
.portal {
  position: relative;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  transition: var(--transition-slow);
}

.portal-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.portal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.portal:hover .portal-img img {
  transform: scale(1.05);
}
.portal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%, rgba(0,0,0,0.2) 100%);
  z-index: 1;
  transition: var(--transition-slow);
}
.portal:hover .portal-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0.3) 100%);
}

.portal-content {
  position: relative;
  z-index: 2;
  padding: 3rem;
  color: var(--warm-white);
  width: 100%;
}
.portal-content h3 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 0.75rem;
}
.portal-content p {
  opacity: 0.85;
  font-weight: 300;
  max-width: 620px;
  margin-bottom: 1.5rem;
}

/* Subtitle (Practice, Ceremony, Transform) - no frosted glass */

/* Frosted glass panel on description text */
.portal-content p:not(.subtitle) {
  display: inline-block;
  padding: 0.75rem 1.15rem;
  border-radius: 12px;
  background: rgba(46, 62, 48, 0.4);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  border: 1px solid rgba(245, 240, 232, 0.08);
  opacity: 1;
}
.portal-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  transition: var(--transition);
}
.portal-arrow svg {
  transition: var(--transition);
}
.portal:hover .portal-arrow svg {
  transform: translateX(8px);
}

/* --- Testimonial --- */
.testimonial {
  background: var(--cream);
  padding: 4rem;
  border-radius: 12px;
  position: relative;
}
.testimonial::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: 1rem;
  left: 2rem;
}
.testimonial p {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.8;
  max-width: 100%;
}
.testimonial-author {
  margin-top: 1.5rem;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
}

/* --- Offering Cards --- */
.offering {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  display: flex;
  align-items: flex-end;
  transition: var(--transition);
}
.offering:hover { transform: translateY(-8px); }

.offering-img {
  position: absolute;
  inset: 0;
}
.offering-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.offering:hover .offering-img img { transform: scale(1.08); }

.offering-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0) 60%);
}
.offering-body {
  position: relative;
  z-index: 2;
  padding: 2rem;
  color: var(--warm-white);
}
.offering-body h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.offering-body p {
  font-size: 0.9rem;
  opacity: 0.85;
  line-height: 1.6;
}

/* --- Inner Page Hero --- */
.page-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--warm-white);
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transform: translateZ(0);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  max-width: 800px;
}
.page-hero-content h1 {
  text-shadow: 0 2px 16px rgba(0,0,0,0.35), 0 0 40px rgba(0,0,0,0.15);
}
/* Minimal frosted pills for small text elements in hero */
.hero-frost-pill {
  display: inline-block;
  padding: 0.35rem 1.2rem;
  border-radius: 100px;
  background: rgba(46, 62, 48, 0.35);
  border: 1px solid rgba(245, 240, 232, 0.1);
}
@supports (backdrop-filter: blur(12px)) or (-webkit-backdrop-filter: blur(12px)) {
  .hero-frost-pill {
    background: rgba(46, 62, 48, 0.25);
    backdrop-filter: blur(12px) saturate(130%);
    -webkit-backdrop-filter: blur(12px) saturate(130%);
  }
}
.hero-frost-body {
  display: inline-block;
  padding: 1rem 1.5rem;
  border-radius: 14px;
  background: rgba(46, 62, 48, 0.35);
  border: 1px solid rgba(245, 240, 232, 0.08);
}
@supports (backdrop-filter: blur(14px)) or (-webkit-backdrop-filter: blur(14px)) {
  .hero-frost-body {
    background: rgba(46, 62, 48, 0.25);
    backdrop-filter: blur(14px) saturate(130%);
    -webkit-backdrop-filter: blur(14px) saturate(130%);
  }
}

/* --- Bio / About Section --- */
.bio-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}
.bio-image-wrapper {
  position: relative;
}
.bio-image-wrapper img {
  width: 100%;
  border-radius: 200px 200px 12px 12px;
}
.bio-image-wrapper::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  right: 15px;
  bottom: 15px;
  border: 1px solid var(--gold);
  border-radius: 200px 200px 12px 12px;
  opacity: 0.3;
  z-index: -1;
}

/* --- Credential Tags --- */
.credential-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.credential-tag {
  padding: 0.4rem 1rem;
  border: 1px solid var(--sage-light);
  border-radius: 100px;
  font-size: 0.8rem;
  font-family: var(--font-accent);
  letter-spacing: 0.05em;
  color: var(--sage);
  background: rgba(74, 93, 78, 0.05);
}

/* --- Accordion --- */
.accordion-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  width: 100%;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--charcoal);
  cursor: pointer;
  transition: var(--transition);
}
.accordion-header:hover { color: var(--sage); }
.accordion-icon {
  width: 24px;
  height: 24px;
  position: relative;
  transition: var(--transition);
}
.accordion-icon::before,
.accordion-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--gold);
  transition: var(--transition);
}
.accordion-icon::before {
  width: 16px;
  height: 1px;
  transform: translate(-50%, -50%);
}
.accordion-icon::after {
  width: 1px;
  height: 16px;
  transform: translate(-50%, -50%);
}
.accordion-item.active .accordion-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.accordion-body-inner {
  padding: 0 0 2rem 0;
  color: var(--charcoal);
  line-height: 1.8;
  font-weight: 300;
}

/* --- Section Backgrounds --- */
.bg-cream { background: var(--cream); }
.bg-sage { background: var(--sage); color: var(--cream); }
.bg-deep-green { background: var(--deep-green); color: var(--cream); }
.bg-blush { background: var(--blush); }
.bg-warm-white { background: var(--warm-white); }

/* --- Scroll-driven Parallax --- */
.parallax-container {
  overflow: hidden;
  position: relative;
}
.parallax-img {
  transform: translateY(-10%);
  height: 120%;
  width: 100%;
  object-fit: cover;
  transition: none;
}

/* --- Contact CTA --- */
.cta-banner {
  background: var(--sage);
  color: var(--cream);
  text-align: center;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(184, 146, 74, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { color: var(--cream); margin-bottom: 1rem; }
.cta-banner p { color: rgba(245, 240, 232, 0.8); margin: 0 auto 2rem; }

/* Mobile CTA bar - hidden on desktop */
.mobile-cta-bar { display: none; }

/* --- Mobile Responsive --- */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .bio-section { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav { padding: 1rem 1.5rem; }
  .nav.scrolled { padding: 0.8rem 1.5rem; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--warm-white);
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    gap: 2rem;
    transition: right 0.5s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
  }
  .nav-links.open { right: 0; }
  .nav-links a { color: var(--charcoal) !important; font-size: 1rem; }
  
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  
  .section { padding: 5rem 0; }
  .container { padding: 0 1.25rem; }
  
  .portal { height: 50vh; min-height: 350px; }
  .portal-content { padding: 2rem; }
  
  .hero-frost-body {
    padding: 0.75rem 1.25rem;
  }
  
  .testimonial { padding: 2.5rem; }
  
  .footer-grid { grid-template-columns: 1fr; }
  
  /* Floating mobile CTA bar */
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    padding: 0.75rem 1.25rem;
    background: rgba(46, 62, 48, 0.92);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    border-top: 1px solid rgba(184, 146, 74, 0.2);
    gap: 0.6rem;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  }
  .mobile-cta-bar a {
    flex: 1;
    text-align: center;
    font-family: var(--font-accent);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.7rem 0.5rem;
    border-radius: 8px;
    transition: background 0.3s ease;
  }
  .mobile-cta-bar .cta-whatsapp {
    background: rgba(37, 211, 102, 0.2);
    color: #25D366;
    border: 1px solid rgba(37, 211, 102, 0.3);
  }
  .mobile-cta-bar .cta-email {
    background: rgba(184, 146, 74, 0.2);
    color: var(--gold-light);
    border: 1px solid rgba(184, 146, 74, 0.3);
  }
  .mobile-cta-bar .cta-call {
    background: rgba(245, 240, 232, 0.1);
    color: var(--warm-white);
    border: 1px solid rgba(245, 240, 232, 0.15);
  }
  
  /* Add bottom padding to footer so CTA bar doesn't cover content */
  .footer { padding-bottom: 5rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; }
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--sage-light); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--sage); }

/* --- Selection Color --- */
::selection { background: var(--gold); color: var(--warm-white); }
