/* ==========================================================================
   MÔNICA FIDELES — DESIGN SYSTEM & EDITORIAL STYLESHEET (AGBALUMO FONT UPDATE)
   Stack: HTML5 + CSS3 + GSAP 3 + Three.js + Locomotive Scroll v5
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Agbalumo&family=Alex+Brush&family=Barlow+Condensed:ital,wght@0,600;0,700;1,600&family=Bebas+Neue&family=Cormorant+Garamond:ital,wght@0,600;1,600&family=Oswald:wght@600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette - Text Color #80032e */
  --bg-warm: #FAF6F4;
  --bg-surface: #FFFFFF;
  --bg-pink-blush: #FFF0F4;
  --bg-pink-soft: #F9E4EB;
  --bg-wine-deep: #2A0F19;
  
  --primary-pink: #E89CAE;
  --primary-rose: #8a0433;           
  --primary-wine: #8a0433;           
  --primary-wine-text: #80032e;      
  --primary-wine-dark: #3F1222;
  
  --text-main: #2D1B22;
  --text-muted: #6E535E;
  --text-light: #9B7D89;
  --text-white: #FFFFFF;
  
  --accent-gold: #D4AF37;
  --accent-blush-border: rgba(232, 156, 174, 0.25);
  --accent-wine-border: rgba(138, 4, 51, 0.15);

  --whatsapp-green: #25D366;
  --whatsapp-green-dark: #1DA851;
  
  /* Shadows */
  --shadow-subtle: 0 10px 30px -10px rgba(138, 4, 51, 0.06);
  --shadow-card: 0 20px 40px -15px rgba(138, 4, 51, 0.1);
  --shadow-floating: 0 25px 50px -12px rgba(63, 18, 34, 0.22);
  --shadow-pink-glow: 0 15px 35px rgba(138, 4, 51, 0.35);
  --shadow-whatsapp-glow: 0 10px 25px rgba(37, 211, 102, 0.4);

  /* Fonts */
  --font-display: 'Oswald', 'Bebas Neue', sans-serif;
  --font-feedback: 'Barlow Condensed', 'Oswald', sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-script: 'Alex Brush', cursive;
  --font-agbalumo: 'Agbalumo', cursive;

  /* Transitions & Radii */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.25, 1, 0.5, 1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
}

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

html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden !important;
  background-color: var(--bg-warm);
  color: var(--text-main);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Accessibility SR-Only Class */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Three.js Background Canvas */
#webgl-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
  opacity: 0.75;
}

/* Content Container Wrapper */
.site-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow-x: hidden !important;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
}

/* Typographic Hierarchy - Display Campaign Font */
.heading-display {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(2.75rem, 6vw, 5.25rem);
  line-height: 0.96;
  letter-spacing: 0.02em;
  color: var(--primary-wine-text);
}

.heading-section {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(2.1rem, 4.5vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: 0.03em;
  color: var(--primary-wine-text);
}

.heading-sub {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.3;
  color: var(--primary-rose);
}

.text-script {
  font-family: var(--font-script);
  font-size: clamp(1.8rem, 3.2vw, 2.75rem);
  color: var(--primary-rose);
  line-height: 1;
}

.text-body {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(232, 156, 174, 0.12);
  border: 1px solid var(--accent-blush-border);
  color: var(--primary-wine-text);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.tag-badge svg {
  width: 14px;
  height: 14px;
  stroke: var(--primary-rose);
}

/* Premium Buttons & CTAs */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--primary-rose) 0%, var(--primary-wine) 100%);
  color: var(--text-white);
  font-weight: 600;
  font-size: 1.0625rem;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-pink-glow);
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.6s ease;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 40px rgba(138, 4, 51, 0.35);
}

.btn-primary:hover::after {
  left: 100%;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--accent-blush-border);
  color: var(--primary-wine-text);
  font-weight: 600;
  font-size: 1rem;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--bg-surface);
  border-color: var(--primary-rose);
  color: var(--primary-rose);
  transform: translateY(-2px);
  box-shadow: var(--shadow-subtle);
}

/* SVG Icon Base Styling */
.svg-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Official WhatsApp SVG Logo Styling */
.svg-whatsapp {
  width: 22px;
  height: 22px;
  fill: currentColor;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* ==========================================================================
   HEADER SECTION
   ========================================================================== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 20px 0;
  transition: padding 0.4s ease, background-color 0.4s ease, box-shadow 0.4s ease;
}

.main-header.scrolled {
  padding: 12px 0;
  background-color: rgba(250, 246, 244, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(63, 18, 34, 0.05);
  border-bottom: 1px solid var(--accent-blush-border);
}

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

.brand-logo {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary-wine-text);
  letter-spacing: 0.02em;
  line-height: 1;
}

.brand-subtitle {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--primary-rose);
  font-weight: 600;
  margin-top: 2px;
}

.nav-desktop {
  display: none;
}

@media (min-width: 992px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 36px;
  }
  
  .nav-link {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-muted);
    position: relative;
    padding: 4px 0;
    transition: color 0.3s ease;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-rose);
    transition: width 0.3s ease;
  }

  .nav-link:hover {
    color: var(--primary-wine-text);
  }

  .nav-link:hover::after {
    width: 100%;
  }
}

/* Mobile Toggle & Menu */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  z-index: 110;
}

@media (min-width: 992px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--primary-wine);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-toggle.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(250, 246, 244, 0.98);
  backdrop-filter: blur(20px);
  z-index: 105;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--primary-wine-text);
}

/* ==========================================================================
   HERO SECTION (EXACT PHOTO: MONICA + ARIEL CAKE)
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-script-lead {
  margin-bottom: 16px;
}

.hero-headline {
  margin-bottom: 24px;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
}

@media (max-width: 480px) {
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
  }
}

/* Hero Visual Composition - Refined Editorial Vertical Framing for Monica + Ariel Cake */
.hero-visual-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-frame-main {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4 / 5;
  border-radius: 40px 140px 40px 140px;
  overflow: hidden;
  box-shadow: var(--shadow-floating);
  border: 5px solid var(--bg-surface);
  background: var(--bg-surface);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top 5% center; /* Focuses Mônica's face and Ariel cake while trimming excess counter */
  transform: scale(1.02);
  transition: transform 1.2s var(--ease-out-expo);
}

.hero-frame-main:hover .hero-img {
  transform: scale(1);
}

@media (max-width: 767px) {
  .hero-frame-main {
    max-width: 340px;
    aspect-ratio: 4 / 5;
    border-radius: 30px 90px 30px 90px;
  }
  
  .hero-img {
    object-position: top 3% center;
  }
}

/* Badge Rotating Seal */
.hero-seal {
  position: absolute;
  bottom: -20px;
  right: -10px;
  width: 140px;
  height: 140px;
  background: var(--bg-surface);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 1px solid var(--accent-blush-border);
  z-index: 10;
}

@media (max-width: 767px) {
  .hero-seal {
    width: 110px;
    height: 110px;
    bottom: -15px;
    right: 10px;
  }
}

.hero-seal svg {
  width: 100%;
  height: 100%;
  animation: rotateSeal 20s linear infinite;
}

@keyframes rotateSeal {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-seal-center {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--primary-wine-text);
}

/* ==========================================================================
   CREDIBILITY STRIP SECTION
   ========================================================================== */
.credibility-section {
  padding: 60px 0;
  background-color: var(--bg-surface);
  border-top: 1px solid var(--accent-blush-border);
  border-bottom: 1px solid var(--accent-blush-border);
  position: relative;
  z-index: 5;
}

.credibility-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 20px;
}

@media (min-width: 768px) {
  .credibility-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }
}

.credibility-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

@media (min-width: 768px) {
  .credibility-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: var(--accent-blush-border);
  }
}

.credibility-num {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--primary-wine-text);
  line-height: 1;
  margin-bottom: 4px;
}

.credibility-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ==========================================================================
   HISTORY & ABOUT MÔNICA SECTION
   ========================================================================== */
.history-section {
  padding: 120px 0;
  position: relative;
  background-color: var(--bg-warm);
}

.history-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

@media (min-width: 992px) {
  .history-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.history-visual {
  position: relative;
}

.history-frame {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 6px solid var(--bg-surface);
}

.history-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top center;
  filter: saturate(1.05);
}

.history-quote-box {
  position: absolute;
  bottom: -30px;
  right: -20px;
  background: var(--bg-pink-blush);
  padding: 24px 30px;
  border-radius: var(--radius-md);
  border: 1px solid var(--accent-blush-border);
  box-shadow: var(--shadow-subtle);
  max-width: 320px;
}

@media (max-width: 576px) {
  .history-quote-box {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: -40px;
    margin-left: 20px;
  }
}

.history-quote-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--primary-wine-text);
  line-height: 1.4;
}

.history-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.history-title {
  margin-top: 12px;
  margin-bottom: 24px;
}

.history-text {
  margin-bottom: 20px;
  font-size: 1.0625rem;
}

.signature-block {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Agbalumo Font Applied Exclusively to the Signature Element */
.signature-text {
  font-family: var(--font-agbalumo);
  font-size: 2.25rem;
  line-height: 1.1;
  color: var(--primary-rose);
}

.signature-role {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

/* ==========================================================================
   EDITORIAL GALLERY SECTION
   ========================================================================== */
.gallery-section {
  padding: 120px 0;
  background-color: var(--bg-pink-blush);
  position: relative;
}

.gallery-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px auto;
}

.gallery-header .heading-section {
  margin-top: 12px;
  margin-bottom: 16px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(12, 1fr);
  }
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  background: var(--bg-surface);
}

.gallery-item-1 { grid-column: span 12; height: 420px; }
.gallery-item-2 { grid-column: span 12; height: 380px; }
.gallery-item-3 { grid-column: span 12; height: 380px; }
.gallery-item-4 { grid-column: span 12; height: 450px; }
.gallery-item-5 { grid-column: span 12; height: 380px; }
.gallery-item-6 { grid-column: span 12; height: 380px; }
.gallery-item-7 { grid-column: span 12; height: 420px; }

@media (min-width: 768px) {
  .gallery-item-1 { grid-column: span 7; height: 500px; }
  .gallery-item-2 { grid-column: span 5; height: 500px; }
  .gallery-item-3 { grid-column: span 4; height: 420px; }
  .gallery-item-4 { grid-column: span 4; height: 420px; }
  .gallery-item-5 { grid-column: span 4; height: 420px; }
  .gallery-item-6 { grid-column: span 6; height: 460px; }
  .gallery-item-7 { grid-column: span 6; height: 460px; }
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(63, 18, 34, 0.75) 0%, transparent 60%);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: 30px;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 2px;
}

.gallery-caption {
  font-family: var(--font-display);
  font-size: 1.35rem;
  text-transform: uppercase;
  color: var(--text-white);
  line-height: 1.2;
}

/* ==========================================================================
   AUTHENTIC TESTIMONIALS (INFINITE HORIZONTAL MARQUEE AUTOMATION)
   ========================================================================== */
.testimonials-section {
  padding: 120px 0;
  background-color: var(--bg-surface);
  position: relative;
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 50px auto;
}

/* Marquee Outer Container */
.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}

.marquee-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: marqueeScroll 36s linear infinite;
  will-change: transform;
}

.marquee-wrapper:hover .marquee-track,
.marquee-wrapper:focus-within .marquee-track {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonial-card-marquee {
  width: clamp(300px, 80vw, 380px);
  flex-shrink: 0;
  background: var(--bg-warm);
  padding: 32px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--accent-blush-border);
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, border-color 0.3s ease;
  font-family: var(--font-feedback);
}

.testimonial-card-marquee:hover {
  transform: translateY(-4px);
  border-color: var(--primary-rose);
}

.testimonial-quote {
  font-family: var(--font-feedback);
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.35;
  letter-spacing: 0.01em;
  color: var(--primary-wine-text);
  margin-bottom: 24px;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--accent-blush-border);
  padding-top: 16px;
  font-family: var(--font-feedback);
}

.testimonial-author {
  font-family: var(--font-feedback);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.testimonial-tag {
  font-family: var(--font-feedback);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary-rose);
  background: rgba(138, 4, 51, 0.1);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   FOR YOUR MOMENT SECTION (EMOTIONAL & CTA)
   ========================================================================== */
.moment-section {
  padding: 120px 0;
  background-color: var(--bg-pink-blush);
  position: relative;
}

.moment-card {
  background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-pink-soft) 100%);
  border-radius: var(--radius-lg);
  padding: 60px 30px;
  border: 1px solid var(--accent-blush-border);
  box-shadow: var(--shadow-card);
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .moment-card {
    padding: 90px 60px;
  }
}

.moment-content {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.moment-title {
  margin-top: 16px;
  margin-bottom: 24px;
}

.moment-desc {
  font-size: 1.15rem;
  margin-bottom: 40px;
  color: var(--text-muted);
}

/* ==========================================================================
   ORDER PROCESS FLOW SECTION
   ========================================================================== */
.process-section {
  padding: 120px 0;
  background-color: var(--bg-warm);
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 60px;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.process-step {
  background: var(--bg-surface);
  padding: 40px 30px;
  border-radius: var(--radius-md);
  border: 1px solid var(--accent-blush-border);
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}

.process-step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-pink);
  line-height: 1;
  margin-bottom: 16px;
}

.process-step-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-wine-text);
  margin-bottom: 10px;
}

.process-step-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* ==========================================================================
   INSTAGRAM & LOCATION SECTION
   ========================================================================== */
.info-section {
  padding: 120px 0;
  background-color: var(--bg-surface);
  border-top: 1px solid var(--accent-blush-border);
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 992px) {
  .info-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.info-box {
  background: var(--bg-pink-blush);
  padding: 50px 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--accent-blush-border);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.info-box-header {
  margin-bottom: 24px;
}

.info-box-title {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary-wine-text);
  margin-top: 8px;
}

.info-box-desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* ==========================================================================
   FINAL CTA & FOOTER
   ========================================================================== */
.final-cta-section {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--primary-wine) 0%, var(--primary-wine-dark) 100%);
  color: var(--text-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 20px;
}

.final-cta-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 40px auto;
}

.footer {
  background: var(--primary-wine-dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 40px 0;
  font-size: 0.875rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
  }
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--text-white);
}

/* ==========================================================================
   SOLE FLOATING WHATSAPP BUTTON (ICON-ONLY GREEN CIRCLE IN BOTTOM RIGHT)
   ========================================================================== */
.whatsapp-float-btn {
  position: fixed;
  bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  right: 20px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: var(--whatsapp-green);
  color: #FFFFFF;
  box-shadow: var(--shadow-whatsapp-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float-btn:hover,
.whatsapp-float-btn:focus-visible {
  background-color: var(--whatsapp-green-dark);
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.55);
  outline: 2px solid var(--whatsapp-green);
  outline-offset: 3px;
}

.svg-whatsapp-float {
  width: 28px;
  height: 28px;
  fill: #FFFFFF;
  flex-shrink: 0;
}

/* Pulsing Aura Ring Effect */
.whatsapp-float-glow {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.45);
  z-index: -1;
  animation: whatsappGlowPulse 2.4s infinite var(--ease-smooth);
}

@keyframes whatsappGlowPulse {
  0% {
    transform: scale(0.96);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.22);
    opacity: 0.12;
  }
  100% {
    transform: scale(0.96);
    opacity: 0.85;
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float-glow {
    animation: none;
    opacity: 0.2;
  }
}
