/* ================================================================
   VELVET TRIP — Luxury Travel Atelier (Velvet × Gold)
   Palette: deep velvet purple + champagne gold + cream
   Fonts: Fraunces (display) · Manrope (body)
================================================================ */

:root {
  --velvet: #4b2c63;
  --velvet-dk: #321a42;
  --velvet-soft: #6a3f87;
  --velvet-tint: #f3e8ff;
  --velvet-bg: #fcfaff;
  --gold: #f3c677;
  --gold-dk: #e8ad54;
  --gold-deep: #b9831b;
  --ink: #2d2d2d;
  --muted: #717171;
  --paper: #ffffff;
  --line: rgba(75, 44, 99, 0.12);
  --line-dk: rgba(243, 232, 255, 0.16);
  --muted-dk: rgba(243, 232, 255, 0.72);

  --radius-s: 10px;
  --radius-m: 18px;
  --radius-l: 28px;

  --shadow-sm: 0 4px 16px rgba(75, 44, 99, 0.08);
  --shadow-md: 0 16px 40px rgba(75, 44, 99, 0.14);

  --ease: cubic-bezier(0.65, 0, 0.05, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --container: 1280px;
  --pad-x: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Manrope', system-ui, sans-serif;
  background: var(--velvet-bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s var(--ease); }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
em { font-style: italic; font-family: 'Fraunces', serif; font-weight: 400; }

::selection { background: var(--gold); color: var(--velvet-dk); }

/* ---------- SCROLL PROGRESS ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--velvet));
  z-index: 9997; transition: width .12s linear;
}

/* ---------- LAYOUT ---------- */
.section { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--pad-x); }
.section-wrapper { padding: clamp(70px, 10vh, 130px) 0; position: relative; }

.section-head {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: end;
  margin-bottom: clamp(36px, 5vh, 64px);
}
.section-head .section-lead { color: var(--muted); max-width: 460px; font-size: 1.02rem; }
@media (max-width: 768px) { .section-head { grid-template-columns: 1fr; gap: 16px; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .78rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--velvet); font-weight: 600; margin-bottom: 16px;
}
.eyebrow .dot { width: 6px; height: 6px; background: var(--gold-dk); border-radius: 50%; box-shadow: 0 0 0 4px rgba(243, 198, 119, 0.25); }

.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--velvet-dk);
}
.section-title em { color: var(--gold-deep); font-weight: 400; }

/* ---------- HEADER ---------- */
.main-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0;
  transition: background .35s var(--ease), padding .35s var(--ease), box-shadow .35s var(--ease);
}
.main-header.scrolled {
  background: rgba(252, 250, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
}
.header-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 var(--pad-x);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Fraunces', serif; font-size: 1.4rem; font-weight: 500;
  color: var(--paper); letter-spacing: -0.02em;
}
.main-header.scrolled .logo { color: var(--velvet-dk); }
.logo-mark {
  width: 38px; height: 38px; display: grid; place-items: center;
  background: var(--gold); color: var(--velvet-dk);
  border-radius: 50%; font-weight: 600;
}
.logo-text em { color: var(--gold); }
.main-header.scrolled .logo-text em { color: var(--velvet); }
.logo-dark { color: var(--paper); }
.logo-dark .logo-text em { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: .92rem; font-weight: 500; color: var(--paper);
  position: relative; padding: 6px 0;
}
.main-header.scrolled .nav-links a { color: var(--ink); }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold); transition: width .3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.btn-book {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 22px; border-radius: 999px;
  background: var(--gold); color: var(--velvet-dk);
  font-weight: 600; font-size: .9rem;
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.btn-book:hover { background: var(--velvet); color: var(--paper); transform: translateY(-1px); }
.btn-book i { transition: transform .3s var(--ease); }
.btn-book:hover i { transform: translateX(3px); }

.mobile-menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.mobile-menu-toggle span { width: 24px; height: 2px; background: var(--paper); transition: background .3s var(--ease); }
.main-header.scrolled .mobile-menu-toggle span { background: var(--velvet-dk); }

@media (max-width: 900px) {
  .mobile-menu-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(85vw, 380px);
    background: var(--velvet-dk); flex-direction: column; align-items: flex-start;
    padding: 100px 32px 32px; gap: 16px;
    transform: translateX(100%); transition: transform .4s var(--ease);
  }
  .nav-links.mobile-active { transform: translateX(0); }
  .nav-links a, .main-header.scrolled .nav-links a { color: var(--paper); font-size: 1.3rem; font-family: 'Fraunces', serif; }
  .btn-book { margin-top: 12px; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative; min-height: 92vh; width: 100%;
  display: flex; align-items: center;
  padding: 130px var(--pad-x) 110px;
  overflow: hidden;
  background: var(--velvet-dk);
  color: var(--paper);
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-tint {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(50,26,66,0.55) 0%, rgba(50,26,66,0.35) 35%, rgba(50,26,66,0.88) 100%),
    linear-gradient(90deg, rgba(50,26,66,0.65) 0%, transparent 60%);
}
.hero-content { position: relative; z-index: 2; max-width: 880px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border: 1px solid var(--line-dk); border-radius: 999px;
  font-size: .76rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--paper);
  margin-bottom: 28px;
}
.hero-eyebrow .dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }

.hero-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.8rem, 8.5vw, 7.5rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-bottom: 32px;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .reveal-up {
  display: inline-block;
  transform: translateY(110%);
  transition: transform .9s var(--ease);
  transition-delay: var(--d, 0s);
}
.hero.is-ready .hero-title .reveal-up { transform: translateY(0); }
.hero-title .line:nth-child(1) .reveal-up { --d: .08s; }
.hero-title .line:nth-child(2) .reveal-up { --d: .2s; }
.hero-title .line:nth-child(3) .reveal-up { --d: .32s; }
.hero-title em { color: var(--gold); font-style: italic; font-weight: 400; }

.hero-sub {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  max-width: 600px; color: rgba(255,255,255,0.86);
  margin-bottom: 40px;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 30px; border-radius: 999px;
  background: var(--gold); color: var(--velvet-dk);
  font-weight: 600; font-size: 1rem;
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.btn-primary:hover { background: var(--paper); transform: translateY(-2px); }
.btn-primary i { transition: transform .3s var(--ease); }
.btn-primary:hover i { transform: translateX(4px); }
.btn-primary.light { background: var(--paper); color: var(--velvet-dk); }
.btn-primary.light:hover { background: var(--gold); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px; border-radius: 999px;
  border: 1px solid var(--line-dk);
  color: var(--paper); font-weight: 500; font-size: 1rem;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: var(--gold); }
.btn-ghost.light { color: var(--paper); border-color: rgba(255,255,255,0.3); }

.hero-meta {
  display: flex; gap: clamp(24px, 5vw, 60px); padding-top: 28px;
  border-top: 1px solid var(--line-dk); max-width: 600px;
}
.hero-meta > div { display: flex; flex-direction: column; }
.hero-meta strong { font-family: 'Fraunces', serif; font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: 500; }
.hero-meta span { font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted-dk); margin-top: 4px; }

.hero-scroll {
  position: absolute; bottom: 90px; right: var(--pad-x); z-index: 2;
  display: flex; align-items: center; gap: 14px;
  font-size: .76rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-dk);
  writing-mode: vertical-rl; transform: rotate(180deg);
}
.hero-scroll .line-anim { width: 1px; height: 50px; background: var(--gold); }
@media (max-width: 900px) { .hero-scroll { display: none; } }

.hero-marquee {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 1;
  overflow: hidden; padding: 20px 0;
  border-top: 1px solid var(--line-dk);
  background: rgba(50, 26, 66, 0.55);
  backdrop-filter: blur(8px);
}
.marquee-track {
  display: flex; gap: 28px; white-space: nowrap;
  animation: marquee 50s linear infinite;
  font-family: 'Fraunces', serif; font-size: clamp(1.3rem, 2.2vw, 1.9rem); font-style: italic;
  color: var(--paper);
  will-change: transform;
}
.marquee-track span:nth-child(even) { color: var(--gold); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- ABOUT ---------- */
.about-us { background: var(--velvet-bg); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 90px); align-items: center;
}
.about-text .section-title { margin-bottom: 24px; }
.about-text p { color: var(--ink); opacity: 0.85; margin-bottom: 18px; font-size: 1.02rem; max-width: 480px; }
.about-features {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px;
}
.about-features span {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 999px;
  background: var(--paper); border: 1px solid var(--line);
  font-size: .86rem; font-weight: 500; color: var(--velvet-dk);
}
.about-features i { color: var(--gold-deep); }

.about-image { position: relative; }
.about-image-frame {
  position: relative; border-radius: var(--radius-l); overflow: hidden;
  aspect-ratio: 4/5; box-shadow: var(--shadow-md);
}
.about-image-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.about-image:hover .about-image-frame img { transform: scale(1.04); }
.about-image-badge {
  position: absolute; bottom: -28px; left: -28px;
  width: 130px; height: 130px; border-radius: 50%;
  background: var(--velvet-dk); color: var(--paper);
  display: grid; place-items: center;
  font-family: 'Fraunces', serif; line-height: 1; text-align: center;
  box-shadow: var(--shadow-md);
}
.about-image-badge span { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 6px; opacity: .7; }
.about-image-badge strong { font-size: 1.9rem; font-weight: 400; color: var(--gold); }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-image-badge { width: 96px; height: 96px; left: 0; bottom: -20px; }
  .about-image-badge strong { font-size: 1.35rem; }
}

/* ---------- SERVICES ---------- */
.our-services { background: var(--velvet-dk); color: var(--paper); }
.our-services .section-title { color: var(--paper); }
.our-services .eyebrow { color: var(--gold); }
.our-services .section-lead { color: var(--muted-dk); }

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line-dk);
  border: 1px solid var(--line-dk); border-radius: var(--radius-l); overflow: hidden;
}
.service-card {
  position: relative; background: var(--velvet-dk);
  padding: clamp(26px, 3.6vw, 44px) clamp(22px, 3vw, 34px);
  min-height: 260px;
  transition: background .4s var(--ease);
}
.service-card:hover { background: var(--velvet); }
.service-card::before {
  content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.service-card:hover::before { transform: scaleX(1); }

.service-num {
  font-family: 'Fraunces', serif; font-size: .82rem; color: var(--gold);
  letter-spacing: .15em; display: block; margin-bottom: 24px;
}
.service-icon {
  font-size: 2rem; color: var(--gold); margin-bottom: 24px;
  transition: transform .4s var(--ease);
}
.service-card:hover .service-icon { transform: translateX(4px) rotate(-5deg); }
.service-name {
  font-family: 'Fraunces', serif; font-size: 1.55rem; font-weight: 400;
  margin-bottom: 12px; line-height: 1.1;
}
.service-desc { color: var(--muted-dk); font-size: .94rem; }

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

/* ---------- TRIPS ---------- */
.trips-section { background: var(--velvet-bg); }

.tabs-scroll { margin-bottom: 40px; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.tabs-scroll::-webkit-scrollbar { display: none; }
.tabs {
  display: inline-flex; gap: 6px;
  padding: 6px; background: var(--paper); border-radius: 999px;
  border: 1px solid var(--line);
}
.tab {
  padding: 11px 22px; border-radius: 999px;
  font-size: .88rem; font-weight: 500; color: var(--velvet-dk);
  white-space: nowrap; transition: background .3s var(--ease), color .3s var(--ease);
}
.tab:hover { color: var(--velvet); }
.tab.active { background: var(--velvet); color: var(--paper); }

.trips-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 1100px) { .trips-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px) { .trips-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .trips-grid { grid-template-columns: 1fr; } }

.trip-card {
  background: var(--paper); border-radius: var(--radius-m); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  border: 1px solid var(--line);
}
.trip-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.trip-img { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.trip-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.trip-card:hover .trip-img img { transform: scale(1.06); }

.trip-body { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.trip-tag {
  display: inline-block; font-size: .66rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--gold-deep); margin-bottom: 2px;
}
.trip-body h3 {
  font-family: 'Fraunces', serif; font-size: 1.3rem; font-weight: 500;
  line-height: 1.15; letter-spacing: -0.01em; color: var(--velvet-dk);
}
.trip-body .meta { font-size: .84rem; color: var(--muted); }
.trip-body .meta i { color: var(--gold-deep); margin-right: 4px; }
.price-row { display: flex; align-items: center; justify-content: space-between; margin-top: 4px; }
.price { font-family: 'Fraunces', serif; font-size: 1.35rem; color: var(--velvet-dk); }
.price small { font-size: .68rem; color: var(--muted); font-family: 'Manrope', sans-serif; margin-left: 2px; }
.rating { font-size: .88rem; font-weight: 600; color: var(--ink); }
.rating i { color: var(--gold-dk); }

.trip-cta {
  margin-top: 6px; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 16px; border-radius: 999px;
  background: var(--velvet-tint); color: var(--velvet-dk);
  font-size: .85rem; font-weight: 600;
  transition: background .3s var(--ease), color .3s var(--ease);
  border: 1px solid transparent;
}
.trip-cta:hover { background: var(--velvet); color: var(--paper); }
.trip-cta i { transition: transform .3s var(--ease); }
.trip-cta:hover i { transform: translateX(3px); }

/* ---------- DESTINATIONS ---------- */
.popular-destinations { background: #f8f1fb; padding-bottom: clamp(70px, 10vh, 120px); }

.destinations-marquee {
  width: 100%; overflow: hidden; padding: 28px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}
.destinations-track {
  display: flex; gap: 22px; width: max-content;
  animation: marquee 55s linear infinite;
  will-change: transform;
}
.destinations-track:hover { animation-play-state: paused; }
.destination-card {
  width: clamp(220px, 22vw, 290px); aspect-ratio: 3/4; border-radius: var(--radius-m);
  overflow: hidden; position: relative; flex-shrink: 0;
  transition: transform .4s var(--ease);
}
.destination-card:hover { transform: scale(1.02); }
.destination-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.destination-card:hover img { transform: scale(1.08); }
.destination-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(50,26,66,0.88) 100%);
}
.destination-info {
  position: absolute; left: 20px; right: 20px; bottom: 20px; z-index: 2;
  color: var(--paper);
}
.destination-name {
  font-family: 'Fraunces', serif; font-size: 1.55rem; font-weight: 500;
}
.destination-price { font-size: .84rem; color: var(--muted-dk); }
.destination-price span { color: var(--gold); font-weight: 600; }

/* ---------- STATS ---------- */
.stats-banner {
  background: var(--velvet-dk); color: var(--paper);
  padding: clamp(56px, 7vw, 90px) 0;
  border-top: 1px solid var(--line-dk); border-bottom: 1px solid var(--line-dk);
}
.stats-inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
  align-items: end;
}
.stat-item { text-align: left; position: relative; }
.stat-item::before {
  content: ''; position: absolute; top: 0; left: 0; width: 36px; height: 1px;
  background: var(--gold);
}
.stat-item h3 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 4.6rem); line-height: 1;
  letter-spacing: -0.03em; padding-top: 22px;
  display: inline-block;
}
.stat-item span { font-family: 'Fraunces', serif; font-size: clamp(1.5rem, 2.8vw, 2.2rem); color: var(--gold); }
.stat-item p { margin-top: 12px; color: var(--muted-dk); font-size: .9rem; letter-spacing: .04em; }

@media (max-width: 800px) { .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 36px; } }

/* ---------- TESTIMONIALS ---------- */
.testimonials-container { background: var(--velvet-bg); }
.testimonial-header { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 40px; flex-wrap: wrap; }
.testimonial-header .section-title { margin-bottom: 0; }

.carousel-nav { display: flex; gap: 10px; }
.nav-btn {
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--paper);
  display: grid; place-items: center; color: var(--velvet-dk);
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.nav-btn:hover { background: var(--velvet); color: var(--paper); border-color: var(--velvet); }

.testimonial-carousel { overflow: hidden; }
.testimonial-track {
  display: flex; gap: 22px;
  transition: transform .6s var(--ease);
  will-change: transform;
}
.testimonial-card {
  flex: 0 0 calc((100% - 44px) / 3);
  background: var(--paper); padding: 32px;
  border-radius: var(--radius-m); border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 18px;
}
.quote-icon { color: var(--gold-dk); font-size: 1.7rem; }
.comment { color: var(--ink); font-size: 1rem; line-height: 1.6; flex: 1; }
.user-info {
  display: grid; grid-template-columns: 50px 1fr auto; align-items: center; gap: 14px;
  padding-top: 18px; border-top: 1px solid var(--line);
}
.user-info img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.user-info h4 { font-family: 'Fraunces', serif; font-size: 1.05rem; font-weight: 500; color: var(--velvet-dk); }
.user-info p { font-size: .78rem; color: var(--muted); }
.user-stars { color: var(--gold-dk); font-size: .9rem; letter-spacing: 2px; }

@media (max-width: 900px) { .testimonial-card { flex: 0 0 calc((100% - 22px) / 2); } }
@media (max-width: 600px) { .testimonial-card { flex: 0 0 100%; } }

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: var(--velvet-dk);
  color: var(--paper);
  padding: clamp(70px, 10vh, 120px) 0;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(243, 198, 119, 0.18), transparent 70%);
  pointer-events: none;
}
.cta-inner {
  display: grid; grid-template-columns: 1.3fr 1fr; align-items: center; gap: 50px;
}
.cta-text h2 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 4.2rem); line-height: 1.04; letter-spacing: -0.03em;
}
.cta-text h2 em { color: var(--gold); }
.cta-text .eyebrow { color: var(--gold); margin-bottom: 16px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 800px) { .cta-inner { grid-template-columns: 1fr; gap: 28px; } .cta-actions { justify-content: flex-start; } }

/* ---------- FOOTER ---------- */
.footer {
  background: #1f1228; color: var(--paper);
  padding: 70px 0 22px;
}
.footer-content {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 50px;
  padding-bottom: 50px; border-bottom: 1px solid var(--line-dk);
}
.footer-brand .logo { margin-bottom: 16px; color: var(--paper); }
.footer-brand p { color: var(--muted-dk); max-width: 320px; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line-dk);
  display: grid; place-items: center;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.social-links a:hover { background: var(--gold); color: var(--velvet-dk); border-color: var(--gold); }

.footer-col h5 {
  font-family: 'Fraunces', serif; font-size: 1.05rem; font-weight: 500;
  margin-bottom: 16px; color: var(--paper);
}
.footer-col a, .footer-col p { display: block; color: var(--muted-dk); font-size: .9rem; margin-bottom: 9px; }
.footer-col a:hover { color: var(--gold); }
.footer-col .muted { color: var(--muted-dk); margin-bottom: 12px; font-size: .86rem; }

.newsletter { display: flex; border: 1px solid var(--line-dk); border-radius: 999px; overflow: hidden; padding: 4px; }
.newsletter input {
  flex: 1; background: transparent; border: none; outline: none;
  padding: 9px 14px; color: var(--paper); font-family: inherit; font-size: .88rem;
}
.newsletter input::placeholder { color: var(--muted-dk); }
.newsletter button {
  width: 40px; height: 40px; border-radius: 50%; background: var(--gold); color: var(--velvet-dk);
  display: grid; place-items: center;
}

.footer-bottom {
  max-width: var(--container); margin: 0 auto; padding: 22px var(--pad-x) 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  color: var(--muted-dk); font-size: .8rem;
}

@media (max-width: 900px) { .footer-content { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 600px) { .footer-content { grid-template-columns: 1fr; } }

/* ---------- MODAL ---------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(50, 26, 66, 0.75);
  backdrop-filter: blur(10px);
  display: none; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; transition: opacity .3s var(--ease);
}
.modal-overlay.show { display: flex; opacity: 1; }
.modal-content {
  width: 100%; max-width: 860px; max-height: 90vh; overflow: auto;
  background: var(--velvet-bg); border-radius: var(--radius-l); padding: 44px;
  position: relative;
  transform: translateY(16px); opacity: 0;
  transition: transform .4s var(--ease), opacity .4s var(--ease);
}
.modal-overlay.show .modal-content { transform: translateY(0); opacity: 1; }
.close-modal {
  position: absolute; top: 18px; right: 18px;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--paper); border: 1px solid var(--line);
  font-size: 1.3rem; color: var(--velvet-dk);
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.close-modal:hover { background: var(--velvet); color: var(--paper); transform: rotate(90deg); }

.modal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.modal-info h3 { font-family: 'Fraunces', serif; font-size: 2rem; font-weight: 400; margin: 8px 0 12px; line-height: 1.05; color: var(--velvet-dk); }
.modal-info p { color: var(--ink); opacity: 0.85; margin-bottom: 12px; }
.modal-info .muted { color: var(--muted); font-size: .9rem; }
.contact-details { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.contact-details p { color: var(--velvet-dk); font-size: .94rem; }
.contact-details i { color: var(--gold-deep); margin-right: 8px; }

.qr-scan-section {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-m); padding: 26px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.scan-card { text-align: center; }
.scan-card img { width: 130px; height: 130px; margin: 0 auto 10px; }
.scan-card h4 { font-family: 'Fraunces', serif; font-size: 1.1rem; font-weight: 500; color: var(--velvet-dk); }
.scan-card p { color: var(--muted); font-size: .84rem; }
.qr-divider { display: flex; align-items: center; gap: 10px; width: 100%; color: var(--muted); font-size: .76rem; letter-spacing: .2em; }
.qr-divider::before, .qr-divider::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.whatsapp-direct-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 13px 22px; border-radius: 999px;
  background: #25D366; color: white; font-weight: 600; font-size: .94rem;
  transition: background .3s var(--ease);
}
.whatsapp-direct-btn:hover { background: #1ebe57; }

@media (max-width: 700px) {
  .modal-grid { grid-template-columns: 1fr; gap: 24px; }
  .modal-content { padding: 32px 22px; }
}

/* ---------- FLOATING WHATSAPP ---------- */
.floating-whatsapp {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: white;
  display: grid; place-items: center;
  font-size: 1.5rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: transform .3s var(--ease);
}
.floating-whatsapp:hover { transform: scale(1.08); }

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.active { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-title .reveal-up { transform: none; }
}

/* ---------- UTIL ---------- */
.muted { color: var(--muted); }
