/* ============================================================
   HOMEPAGE.CSS — Sri Garuda Decorators
   All homepage section styles (mobile-first)
   ============================================================ */

/* ── Google Fonts Import ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Cinzel:wght@400;500;600&family=Jost:wght@300;400;500;600&display=swap');

/* ── Root Variables ── */
:root {
  --champagne: #F2E5C6;
  --sand-gold:  #F2D9A0;
  --burgundy:   #75162D;
  --dark-maroon:#560B18;
  --deep-wine:  #3B010B;
  --off-white:  #FAF7F2;
  --near-black: #1A1A1A;
  --text-mid:   #4A3728;

  --font-display: 'Cinzel', serif;
  --font-body:    'Jost', sans-serif;
  --font-accent:  'Cormorant Garamond', serif;

  --section-pad: clamp(60px, 10vw, 120px);
  --container:   1200px;
  --radius:      4px;
  --transition:  0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--near-black);
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: var(--container);
  margin: 0 auto;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ── Section Label ── */
.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--burgundy);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.section-label::before,
.section-label::after {
  content: '';
  display: block;
  height: 1px;
  background: var(--burgundy);
  opacity: 0.5;
}
.section-label::before { width: 30px; }
.section-label::after  { width: 30px; }

/* ── Section Heading ── */
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--deep-wine);
  margin-bottom: 20px;
}

.section-heading span {
  color: var(--burgundy);
  font-style: italic;
  font-family: var(--font-accent);
}

/* ── Gold Divider ── */
.gold-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto 32px;
}
.gold-divider::before,
.gold-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sand-gold), transparent);
}
.gold-divider-icon {
  width: 10px;
  height: 10px;
  background: var(--sand-gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--burgundy);
  color: var(--champagne);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--deep-wine);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
  z-index: 0;
}
.btn-primary:hover::after { transform: scaleX(1); transform-origin: left; }
.btn-primary span { position: relative; z-index: 1; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  border: 1.5px solid var(--champagne);
  color: var(--champagne);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover {
  background: rgba(242,229,198,0.1);
  border-color: var(--sand-gold);
  color: var(--sand-gold);
}

/* ============================================================
   1. HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  background: var(--deep-wine);
}

/* Carousel Slides */
.hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 1;
}
.hero-slide.active { opacity: 1; z-index: 2; }

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 7s ease;
  filter: brightness(0.55);
}
.hero-slide.active img { transform: scale(1); }

/* Gradient Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(59,1,11,0.25) 0%, transparent 40%),
    linear-gradient(to top,    rgba(59,1,11,0.7)  0%, transparent 55%);
  z-index: 3;
}

/* Hero Content */
.hero-content {
  position: absolute;
  bottom: clamp(60px, 12vh, 120px);
  left: 0;
  right: 0;
  z-index: 4;
  text-align: center;
  padding: 0 24px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--sand-gold);
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.9s 0.4s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 8vw, 6.5rem);
  font-weight: 500;
  line-height: 1.05;
  color: var(--off-white);
  letter-spacing: 0.02em;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 1s 0.65s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--sand-gold);
  font-family: var(--font-accent);
  font-weight: 300;
  font-size: 1.15em;
}

.hero-tagline {
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--champagne);
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.9s 0.9s forwards;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.9s 1.1s forwards;
}

/* Gold line accent */
.hero-line {
  width: 60px;
  height: 1px;
  background: var(--sand-gold);
  margin: 0 auto 22px;
  opacity: 0;
  animation: heroFadeIn 0.8s 0.5s forwards;
}

/* Carousel Dots */
.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(242,217,160,0.4);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  padding: 0;
}
.hero-dot.active {
  background: var(--sand-gold);
  width: 24px;
  border-radius: 3px;
}

/* Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  right: 32px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--champagne);
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  opacity: 0.7;
}
.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: var(--sand-gold);
  animation: scrollPulse 1.8s infinite;
}

@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeIn {
  to { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.7; }
  50%       { transform: scaleY(0.5); opacity: 0.3; }
}


/* ============================================================
   2. STATS STRIP
   ============================================================ */
.stats-strip {
  background: var(--deep-wine);
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}
.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23F2D9A0' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}
.stat-item {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(242,217,160,0.2);
}
.stat-item:nth-child(1),
.stat-item:nth-child(2) {
  border-bottom: 1px solid rgba(242,217,160,0.2);
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 600;
  color: var(--sand-gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number sup {
  font-size: 0.5em;
  vertical-align: super;
}
.stat-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242,229,198,0.65);
}

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) { border-bottom: none; }
  .stat-item::after { display: block !important; }
  .stat-item:last-child::after { display: none !important; }
}


/* ============================================================
   3. ABOUT SNIPPET
   ============================================================ */
.about-section {
  padding: var(--section-pad) 0;
  background: var(--off-white);
  overflow: hidden;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}
.about-img-main img {
  transition: transform 0.8s ease;
}
.about-img-main:hover img { transform: scale(1.04); }

.about-img-accent {
  position: absolute;
  bottom: -24px;
  right: -16px;
  width: 42%;
  aspect-ratio: 1;
  overflow: hidden;
  border: 6px solid var(--off-white);
  box-shadow: 0 12px 40px rgba(59,1,11,0.18);
  display: none;
}

.about-badge {
  position: absolute;
  top: 24px;
  left: -16px;
  background: var(--burgundy);
  color: var(--champagne);
  padding: 20px 24px;
  text-align: center;
  display: none;
}
.about-badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--sand-gold);
  line-height: 1;
  display: block;
}
.about-badge-text {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-text { padding: 0; }
.about-intro {
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 20px;
}
.about-body {
  font-size: 0.95rem;
  line-height: 1.85;
  color: #5a4a3a;
  margin-bottom: 32px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.about-feature-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-feature-icon svg {
  width: 100%;
  height: 100%;
  fill: var(--burgundy);
}
.about-feature-text {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-mid);
  line-height: 1.4;
}

@media (min-width: 900px) {
  .about-inner { grid-template-columns: 1fr 1fr; gap: 80px; }
  .about-img-accent { display: block; }
  .about-badge { display: block; }
}


/* ============================================================
   4. SERVICES SECTION
   ============================================================ */
.services-section {
  padding: var(--section-pad) 0;
  background: var(--deep-wine);
  position: relative;
  overflow: hidden;
}
.services-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sand-gold), transparent);
}
.services-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sand-gold), transparent);
}
.services-header {
  text-align: center;
  margin-bottom: 56px;
}
.services-header .section-label { justify-content: center; color: var(--sand-gold); }
.services-header .section-label::before,
.services-header .section-label::after { background: var(--sand-gold); }
.services-header .section-heading { color: var(--champagne); }
.services-header .section-heading span { color: var(--sand-gold); }
.services-header p {
  color: rgba(242,229,198,0.65);
  max-width: 500px;
  margin: 0 auto;
  font-size: 0.92rem;
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.service-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
  background: var(--dark-maroon);
}

.service-card img {
  transition: transform 0.7s ease, filter 0.5s ease;
  filter: brightness(0.6);
}
.service-card:hover img {
  transform: scale(1.08);
  filter: brightness(0.4);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(59,1,11,0.92) 0%, rgba(59,1,11,0.2) 60%, transparent 100%);
  z-index: 1;
}

.service-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
  z-index: 2;
  transform: translateY(0);
  transition: var(--transition);
}
.service-card:hover .service-card-content { transform: translateY(-8px); }

.service-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(242,217,160,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  border-color: var(--sand-gold);
  background: rgba(242,217,160,0.1);
}
.service-icon svg { width: 22px; height: 22px; fill: var(--sand-gold); }

.service-card-title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 500;
  color: var(--champagne);
  margin-bottom: 8px;
}

.service-card-desc {
  font-size: 0.82rem;
  color: rgba(242,229,198,0.7);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.4s ease;
}
.service-card:hover .service-card-desc {
  max-height: 80px;
  opacity: 1;
}

.service-card-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(242,217,160,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(-8px);
}
.service-card:hover .service-card-arrow {
  opacity: 1;
  transform: translateY(0);
  border-color: var(--sand-gold);
}
.service-card-arrow svg { width: 16px; height: 16px; stroke: var(--sand-gold); fill: none; }

.services-cta {
  text-align: center;
  margin-top: 48px;
}

@media (min-width: 600px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}


/* ============================================================
   5. GALLERY PREVIEW
   ============================================================ */
.gallery-section {
  padding: var(--section-pad) 0;
  background: var(--champagne);
  position: relative;
}
.gallery-header {
  text-align: center;
  margin-bottom: 48px;
}
.gallery-header .section-label { justify-content: center; }

.gallery-masonry {
  columns: 2;
  column-gap: 12px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(59,1,11,0.5);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-overlay-icon {
  width: 48px;
  height: 48px;
  border: 1.5px solid var(--champagne);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.7);
  transition: transform 0.35s ease;
}
.gallery-item:hover .gallery-overlay-icon { transform: scale(1); }
.gallery-overlay-icon svg { width: 20px; height: 20px; stroke: var(--champagne); fill: none; stroke-width: 1.5; }

.gallery-item:nth-child(3n+1) { aspect-ratio: 4/5; }
.gallery-item:nth-child(3n+2) { aspect-ratio: 1/1; }
.gallery-item:nth-child(3n+3) { aspect-ratio: 3/4; }

.gallery-cta { text-align: center; margin-top: 40px; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,0,3,0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  width: auto;
  height: auto;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(242,229,198,0.3);
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--champagne);
}
.lightbox-close svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.5; }

@media (min-width: 768px) {
  .gallery-masonry { columns: 3; column-gap: 16px; }
  .gallery-item { margin-bottom: 16px; }
}
@media (min-width: 1200px) {
  .gallery-masonry { columns: 4; }
}


/* ============================================================
   6. TESTIMONIALS
   ============================================================ */
.testimonials-section {
  padding: var(--section-pad) 0;
  background: var(--off-white);
  overflow: hidden;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 56px;
}
.testimonials-slider {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  padding: 36px 28px;
  position: relative;
  border-bottom: 3px solid var(--burgundy);
  box-shadow: 0 4px 24px rgba(59,1,11,0.07);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(59,1,11,0.12);
}
.testimonial-quote-mark {
  font-family: var(--font-accent);
  font-size: 7rem;
  color: var(--champagne);
  line-height: 0.6;
  position: absolute;
  top: 24px;
  left: 24px;
  font-weight: 700;
  pointer-events: none;
  user-select: none;
}
.testimonial-text {
  font-family: var(--font-accent);
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--champagne);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--burgundy);
  font-weight: 600;
}
.testimonial-name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--near-black);
}
.testimonial-event {
  font-size: 0.75rem;
  color: var(--burgundy);
  letter-spacing: 0.05em;
  margin-top: 2px;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.testimonial-stars svg {
  width: 14px;
  height: 14px;
  fill: var(--sand-gold);
}

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


/* ============================================================
   7. CTA BANNER
   ============================================================ */
.cta-banner {
  padding: 100px 0;
  background: var(--dark-maroon);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(117,22,45,0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(117,22,45,0.4) 0%, transparent 60%);
}
.cta-banner-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 16rem);
  font-weight: 700;
  color: rgba(242,217,160,0.04);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  letter-spacing: -0.02em;
}
.cta-banner-content { position: relative; z-index: 1; }
.cta-eyebrow {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--sand-gold);
  margin-bottom: 20px;
  display: block;
}
.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 500;
  color: var(--champagne);
  line-height: 1.15;
  margin-bottom: 20px;
}
.cta-heading em {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--sand-gold);
  font-size: 1.1em;
}
.cta-subtext {
  color: rgba(242,229,198,0.6);
  font-size: 0.92rem;
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.8;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 auto 40px;
  max-width: 300px;
}
.cta-divider-line {
  flex: 1;
  height: 1px;
  background: rgba(242,217,160,0.25);
}
.cta-divider-diamond {
  width: 8px;
  height: 8px;
  background: var(--sand-gold);
  transform: rotate(45deg);
}


/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }