@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Lato:wght@300;400;700&family=Dancing+Script:wght@600;700&display=swap');

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

:root {
  --green-dark:   #1e4420;
  --green-mid:    #2d5a27;
  --green-accent: #4a7c3f;
  --green-light:  #7ab648;
  --green-pale:   #eef5e8;
  --cream:        #faf7f2;
  --gold:         #c9a84c;
  --white:        #ffffff;
  --text-dark:    #1a2e16;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── SPLASH ────────────────────────────── */
#splash {
  position: fixed; inset: 0; z-index: 99999;
  background: linear-gradient(160deg, var(--green-dark) 0%, #1a3d16 100%);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .8s ease, visibility .8s;
}
#splash.hide {
  opacity: 0; visibility: hidden; pointer-events: none;
}
.splash-inner {
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
  padding: 40px;
}
.splash-badge {
  font-size: .7rem; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(201,168,76,.4);
  padding: 6px 20px; border-radius: 30px;
}
.splash-main {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 900; color: var(--white);
  line-height: .9; letter-spacing: -2px;
}
.splash-script {
  display: block;
  font-family: 'Dancing Script', cursive;
  font-size: clamp(2rem, 6vw, 4.5rem);
  color: var(--gold); margin-top: 6px;
}
#splash-btn {
  display: flex; align-items: center; gap: 12px;
  margin-top: 20px;
  padding: 18px 52px;
  background: linear-gradient(135deg, var(--gold), #e8c46a);
  color: var(--green-dark);
  font-family: 'Lato', sans-serif;
  font-weight: 700; font-size: .9rem;
  letter-spacing: 3px; text-transform: uppercase;
  border: none; border-radius: 50px; cursor: pointer;
  position: relative; overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  animation: pulseCta 2s ease-in-out infinite;
}
#splash-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(201,168,76,.45);
  animation: none;
}
#splash-btn::before {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  transition: left .5s;
}
#splash-btn:hover::before { left: 100%; }
.splash-hint {
  font-size: .72rem; color: rgba(255,255,255,.35);
  letter-spacing: 1px;
}

/* ── SCROLLBAR ─────────────────────────── */
::-webkit-scrollbar          { width: 6px; }
::-webkit-scrollbar-track    { background: var(--green-pale); }
::-webkit-scrollbar-thumb    { background: var(--green-mid); border-radius: 3px; }

/* ── PROGRESS BAR ──────────────────────── */
#progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-light), var(--gold));
  width: 0%;
  z-index: 9999;
  transition: width .1s;
}

/* ── NAV ───────────────────────────────── */
nav {
  position: fixed;
  top: 3px; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all .4s ease;
}
nav.scrolled {
  background: rgba(30,68,32,.95);
  backdrop-filter: blur(10px);
  padding: 12px 40px;
  box-shadow: 0 4px 30px rgba(0,0,0,.15);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.nav-cta {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.6);
  color: var(--white);
  padding: 8px 22px;
  border-radius: 30px;
  font-size: .82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .3s;
  text-decoration: none;
}
.nav-cta:hover { background: var(--white); color: var(--green-dark); }

/* ── HERO ──────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(160deg, var(--green-dark) 0%, #2a5225 50%, #1a3d16 100%);
  overflow: hidden;
  padding: 120px 48px 120px;
}

@media(max-width: 600px) {
  #hero { padding-left: 32px; padding-right: 32px; }
}
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: .4;
  pointer-events: none;
}

/* floating leaves */
.leaf-container { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.leaf { position: absolute; opacity: 0; animation: floatLeaf linear infinite; }
@keyframes floatLeaf {
  0%   { transform: translateY(110vh) rotate(0deg);   opacity: 0; }
  5%   { opacity: 1; }
  95%  { opacity: .6; }
  100% { transform: translateY(-20vh) rotate(360deg); opacity: 0; }
}

/* hero content */
.hero-badge {
  display: inline-block;
  border: 1px solid rgba(201,168,76,.6);
  color: var(--gold);
  font-size: .72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 30px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp .8s .3s forwards;
}
.hero-title { position: relative; z-index: 1; }
.hero-title .main {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 10vw, 9rem);
  font-weight: 900;
  color: var(--white);
  line-height: .9;
  letter-spacing: -2px;
  opacity: 0;
  animation: fadeUp .9s .5s forwards;
}
.hero-title .script {
  display: block;
  font-family: 'Dancing Script', cursive;
  font-size: clamp(1.8rem, 6vw, 5.5rem);
  color: var(--gold);
  margin-top: 4px;
  opacity: 0;
  animation: fadeUp .9s .7s forwards;
}
.hero-divider {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 28px auto;
  opacity: 0;
  animation: fadeUp .8s .9s forwards;
}
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255,255,255,.85);
  font-weight: 300;
  letter-spacing: .5px;
  max-width: 600px;
  opacity: 0;
  animation: fadeUp .8s 1.1s forwards;
}
.hero-tagline {
  font-size: clamp(.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,.65);
  margin-top: 12px;
  font-style: italic;
  max-width: 500px;
  opacity: 0;
  animation: fadeUp .8s 1.3s forwards;
}

/* countdown */
.countdown {
  display: flex;
  gap: clamp(8px, 3vw, 20px);
  margin-top: 44px;
  opacity: 0;
  animation: fadeUp .8s 1.5s forwards;
  width: 100%;
  justify-content: center;
}
.countdown-item {
  text-align: center;
  min-width: 0;
  flex: 0 0 auto;
}
.countdown-item .num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 6vw, 2.8rem);
  font-weight: 700;
  color: var(--white); line-height: 1;
}
.countdown-item .label {
  display: block;
  font-size: clamp(.5rem, 1.5vw, .65rem);
  letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); margin-top: 4px;
}
.countdown-sep {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  color: rgba(255,255,255,.3);
  align-self: flex-start; padding-top: 4px;
  flex-shrink: 0;
}

/* hero CTA */
.hero-cta {
  display: inline-block;
  margin-top: 44px;
  padding: 16px 48px;
  background: linear-gradient(135deg, var(--gold), #e8c46a);
  color: var(--green-dark);
  font-weight: 700; font-size: .85rem;
  letter-spacing: 3px; text-transform: uppercase;
  border-radius: 50px; text-decoration: none;
  position: relative; overflow: hidden;
  opacity: 0;
  animation: fadeUp .8s 1.7s forwards;
  transition: transform .3s, box-shadow .3s;
}
.hero-cta::before {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
  transition: left .5s;
}
.hero-cta:hover::before { left: 100%; }
.hero-cta:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(201,168,76,.4); }

/* hero info */
.hero-info {
  margin-top: 44px;
  margin-bottom: 20px;
  display: flex; gap: 32px;
  flex-wrap: wrap; justify-content: center;
  opacity: 0;
  animation: fadeUp .8s 1.9s forwards;
}
.hero-info-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.7); font-size: .85rem; letter-spacing: .5px;
}
.hero-info-item .icon {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.75);
  flex-shrink: 0;
  transition: border-color .3s, color .3s;
}
.hero-info-item:hover .icon {
  border-color: var(--gold);
  color: var(--gold);
}

/* scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 24px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  opacity: 0; animation: fadeIn 1s 2.2s forwards;
  z-index: 2;
}
.scroll-indicator span {
  font-size: .65rem; letter-spacing: 3px;
  text-transform: uppercase; color: rgba(255,255,255,.4);
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollPulse 1.5s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { transform: scaleY(1); opacity: .5; }
  50%      { transform: scaleY(1.3); opacity: 1; }
}

/* ── COMMON ────────────────────────────── */
section { position: relative; }
.section-inner { max-width: 1100px; margin: 0 auto; padding: 100px 40px; }
.section-label {
  font-size: .7rem; letter-spacing: 5px;
  text-transform: uppercase; color: var(--green-accent); margin-bottom: 14px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700; color: var(--green-dark); line-height: 1.2;
}
.section-title span { font-style: italic; color: var(--green-accent); }

/* botanical divider */
.botanical-divider { text-align: center; padding: 10px 0; opacity: .5; }
.botanical-divider svg { height: 30px; fill: var(--green-accent); }

/* ── SCROLL REVEAL ─────────────────────── */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }

/* ── EQUIPE FOTO ───────────────────────── */
#equipe-foto {
  background: var(--cream);
  text-align: center;
  overflow: hidden;
  max-height: 520px;
}
#equipe-foto img {
  width: 100%;
  max-width: 900px;
  display: block;
  margin: 0 auto;
  object-fit: cover;
  object-position: top;
  transition: transform 6s ease;
}
#equipe-foto:hover img {
  transform: scale(1.03);
}

/* ── ABOUT ─────────────────────────────── */
#about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-style: italic; color: var(--green-dark); line-height: 1.5;
  border-left: 3px solid var(--gold); padding-left: 30px;
}
.about-text { color: #4a5a44; line-height: 1.9; font-size: 1rem; font-weight: 300; }
.about-text p + p { margin-top: 16px; }

/* ── EDITIONS ──────────────────────────── */
#editions { background: linear-gradient(180deg, var(--green-pale) 0%, var(--cream) 100%); }
.editions-header { text-align: center; margin-bottom: 70px; }
.timeline {
  display: flex; justify-content: center;
  align-items: flex-start; position: relative; flex-wrap: wrap;
}
.timeline::before {
  content: '';
  position: absolute; top: 40px; left: 15%; right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green-accent), transparent);
}
.timeline-item {
  flex: 1; min-width: 220px; max-width: 300px;
  text-align: center; padding: 0 30px;
}
.timeline-num {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--green-accent);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; color: var(--green-dark); font-weight: 700;
  box-shadow: 0 8px 30px rgba(74,124,63,.15);
  transition: all .3s;
}
.timeline-item:hover .timeline-num,
.timeline-item.active .timeline-num {
  background: var(--green-dark); color: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(201,168,76,.3);
  transform: scale(1.08);
}
.timeline-step {
  font-size: .68rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--green-accent); margin-bottom: 8px;
}
.timeline-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700; color: var(--green-dark); margin-bottom: 10px;
}
.timeline-desc { font-size: .88rem; color: #5a6e55; line-height: 1.7; font-weight: 300; }

/* ── SCHEDULE ──────────────────────────── */
#schedule { background: var(--white); }
.schedule-header { text-align: center; margin-bottom: 70px; }

.schedule-timeline {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sched-item {
  display: grid;
  grid-template-columns: 90px 40px 1fr;
  gap: 0 28px;
  align-items: flex-start;
}

.sched-time-col {
  text-align: right;
  padding-top: 4px;
}
.sched-hour {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
}
.sched-period {
  display: block;
  font-size: .65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-accent);
  margin-top: 3px;
}

.sched-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sched-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--green-dark);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--green-accent);
  flex-shrink: 0;
  margin-top: 6px;
  z-index: 1;
}
.sched-dot--gold {
  background: var(--gold);
  box-shadow: 0 0 0 2px var(--gold);
}
.sched-line {
  width: 2px;
  flex: 1;
  min-height: 70px;
  background: linear-gradient(to bottom, var(--green-accent), rgba(74,124,63,.15));
  margin-top: 4px;
}

.sched-content {
  padding-bottom: 48px;
}
.sched-tag {
  display: inline-block;
  font-size: .65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-accent);
  background: var(--green-pale);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.sched-tag--gold {
  color: #8a6a1a;
  background: rgba(201,168,76,.15);
}
.sched-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.35;
  margin-bottom: 10px;
}
.sched-desc {
  font-size: .88rem;
  color: #5a6e55;
  line-height: 1.8;
  font-weight: 300;
}

@media(max-width:600px) {
  .sched-item { grid-template-columns: 70px 28px 1fr; gap: 0 16px; }
  .sched-hour { font-size: 1.2rem; }
}

/* ── TEAM ──────────────────────────────── */
#team { background: linear-gradient(180deg, var(--green-pale) 0%, var(--white) 100%); }
.team-header { text-align: center; margin-bottom: 60px; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.team-card {
  background: var(--white); border-radius: 16px;
  padding: 36px 28px; position: relative; overflow: hidden;
  transition: transform .4s, box-shadow .4s;
  border: 1px solid rgba(74,124,63,.08);
  cursor: default;
}
.team-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, var(--green-dark) 0%, #2a5225 100%);
  opacity: 0; transition: opacity .4s; border-radius: 16px;
}
.team-card:hover::after { opacity: 1; }
.team-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(30,68,32,.2); }
.team-card-front, .team-card-back { transition: opacity .4s; }
.team-card-back {
  position: absolute; inset: 36px 28px;
  opacity: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
}
.team-card:hover .team-card-front { opacity: 0; }
.team-card:hover .team-card-back  { opacity: 1; }
.team-initial {
  width: 80px; height: 80px; border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  border: 3px solid var(--green-pale);
  box-shadow: 0 4px 16px rgba(45,90,39,.15);
  transition: border-color .3s;
}
.team-initial img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
}
.team-card:hover .team-initial { border-color: rgba(255,255,255,.3); }
.team-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700; color: var(--green-dark); margin-bottom: 6px;
}
.team-role { font-size: .75rem; color: var(--green-accent); letter-spacing: 1px; line-height: 1.5; }
.team-badge {
  display: inline-block; margin-top: 14px;
  background: var(--green-pale); color: var(--green-dark);
  font-size: .65rem; letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px;
}
.team-card-back .team-bio {
  font-size: .82rem; color: rgba(255,255,255,.88); line-height: 1.8; font-weight: 300;
}
.team-card-back .team-quote {
  margin-top: 14px;
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: .78rem; color: var(--gold); line-height: 1.6;
  border-top: 1px solid rgba(255,255,255,.15); padding-top: 14px;
}
.team-hover-hint {
  font-size: .68rem; color: rgba(74,124,63,.5);
  letter-spacing: 2px; text-transform: uppercase;
  margin-top: 16px; display: flex; align-items: center; gap: 6px;
}

/* ── INVESTMENT ────────────────────────── */
#investment {
  background: linear-gradient(160deg, var(--green-dark) 0%, #2a5225 100%);
  text-align: center; position: relative; overflow: hidden;
}
#investment::before {
  content: '';
  position: absolute; top: -50%; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(122,182,72,.08), transparent 70%);
  pointer-events: none;
}
.investment-label {
  font-size: .68rem; letter-spacing: 5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.investment-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white); margin-bottom: 50px;
  font-weight: 400; font-style: italic;
}
.price-block { display: inline-block; margin-bottom: 48px; }
.price-currency {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; color: var(--gold);
  vertical-align: top; margin-top: 12px; display: inline-block;
}
.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: clamp(5rem, 15vw, 8rem);
  font-weight: 900; color: var(--white);
  line-height: .9; letter-spacing: -4px;
}
.price-sub {
  font-size: .8rem; color: rgba(255,255,255,.5);
  letter-spacing: 2px; text-transform: uppercase; margin-top: 16px;
}
.price-block {
  margin-bottom: 56px;
}
.invest-cta {
  display: inline-block;
  padding: 18px 60px;
  background: linear-gradient(135deg, var(--gold), #e8c46a);
  color: var(--green-dark);
  font-weight: 700; font-size: .85rem;
  letter-spacing: 3px; text-transform: uppercase;
  border-radius: 50px; text-decoration: none;
  position: relative; overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  animation: pulseCta 2.5s ease-in-out infinite;
}
@keyframes pulseCta {
  0%,100% { box-shadow: 0 0 0 0 rgba(201,168,76,.4); }
  50%      { box-shadow: 0 0 0 20px rgba(201,168,76,0); }
}
.payment-options {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 0;
}
.invest-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 220px;
}
.invest-cta--card {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.4);
  animation: none;
  box-shadow: none;
}
.invest-cta--card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.8);
  box-shadow: 0 12px 36px rgba(0,0,0,.2) !important;
  animation: none;
}
@media(max-width: 500px) {
  .payment-options { flex-direction: column; align-items: stretch; }
  .invest-cta { width: 100%; min-width: unset; }
}
.invest-cta::before {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
  transition: left .5s;
}
.invest-cta:hover::before { left: 100%; }
.invest-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(201,168,76,.5) !important;
  animation: none;
}
.invest-details {
  margin-top: 50px;
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 32px;
}
.invest-detail {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,.65); font-size: .85rem;
}
.invest-detail .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}

/* ── LOCATION ──────────────────────────── */
#location { background: var(--white); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

/* map wrapper */
.location-map-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 320px;
  box-shadow: 0 12px 40px rgba(45,90,39,.12);
  border: 1px solid rgba(74,124,63,.15);
}
.location-map-wrapper iframe {
  width: 100%; height: 100%;
  border: none; display: block;
  filter: saturate(0.85) hue-rotate(10deg);
}

/* overlay with button */
.map-overlay {
  position: absolute;
  bottom: 14px; right: 14px;
  z-index: 10;
}
.map-open-btn {
  display: flex; align-items: center; gap: 8px;
  background: var(--green-dark);
  color: var(--white);
  border: none; cursor: pointer;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: .8rem;
  font-family: 'Lato', sans-serif;
  letter-spacing: 1px;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  transition: transform .2s, box-shadow .2s;
}
.map-open-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}

/* map dropdown */
.map-menu {
  position: absolute;
  bottom: 48px; right: 0;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
  padding: 8px;
  display: flex; flex-direction: column; gap: 4px;
  min-width: 200px;
  opacity: 0; pointer-events: none;
  transform: translateY(8px);
  transition: opacity .25s, transform .25s;
  z-index: 20;
}
.map-menu.open {
  opacity: 1; pointer-events: all;
  transform: translateY(0);
}
.map-option {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--text-dark);
  font-size: .88rem;
  transition: background .2s;
}
.map-option:hover { background: var(--green-pale); }
.location-info .location-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; color: var(--green-dark); margin-bottom: 8px;
}
.location-address {
  color: #5a6e55; font-size: 1rem; line-height: 1.8;
  font-weight: 300; margin-bottom: 30px;
}
.location-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-pale); color: var(--green-dark);
  padding: 10px 20px; border-radius: 30px;
  font-size: .82rem; margin-right: 10px; margin-bottom: 10px;
}

/* ── PIX MODAL ─────────────────────────── */
.pix-modal-overlay {
  position: fixed; inset: 0; z-index: 9998;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
  padding: 20px;
}
.pix-modal-overlay.open { opacity: 1; pointer-events: all; }

.pix-modal-box {
  background: var(--white);
  border-radius: 24px;
  padding: 40px 36px 32px;
  max-width: 420px; width: 100%;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,.25);
  transform: translateY(20px);
  transition: transform .35s;
  text-align: center;
}
.pix-modal-overlay.open .pix-modal-box { transform: translateY(0); }

.pix-close {
  position: absolute; top: 16px; right: 18px;
  background: var(--green-pale); border: none; cursor: pointer;
  width: 32px; height: 32px; border-radius: 50%;
  font-size: .9rem; color: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.pix-close:hover { background: #d4e8cc; }

.pix-header { margin-bottom: 20px; }
.pix-logo {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700; color: var(--green-dark);
  margin-bottom: 6px;
}
.pix-subtitle { font-size: .82rem; color: #7a8f75; }

.pix-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; color: var(--green-dark);
  margin-bottom: 22px;
}
.pix-amount span { color: var(--green-accent); }

.pix-qr-box {
  display: flex; align-items: center; justify-content: center;
  background: var(--green-pale);
  border-radius: 16px; padding: 20px;
  margin: 0 auto 10px;
  width: fit-content;
}
.pix-qr-box canvas, .pix-qr-box img { border-radius: 8px; }
.pix-qr-hint { font-size: .74rem; color: #9aaa94; margin-bottom: 22px; }

.pix-key-box {
  background: var(--green-pale);
  border-radius: 14px; padding: 14px 18px;
  margin-bottom: 18px; text-align: left;
}
.pix-key-label { font-size: .68rem; letter-spacing: 2px; text-transform: uppercase; color: var(--green-accent); margin-bottom: 8px; }
.pix-key-row {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.pix-key-row span { font-size: .95rem; font-weight: 700; color: var(--green-dark); letter-spacing: .5px; }
.pix-copy-btn {
  display: flex; align-items: center; gap: 6px;
  background: var(--green-dark); color: var(--white);
  border: none; cursor: pointer;
  padding: 7px 14px; border-radius: 20px;
  font-size: .75rem; font-family: 'Lato', sans-serif;
  white-space: nowrap; transition: background .2s;
}
.pix-copy-btn:hover { background: var(--green-accent); }
.pix-copy-btn.copied { background: #2e7d32; }

.pix-whatsapp {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%;
  padding: 14px;
  background: #25D366;
  color: var(--white);
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700; font-size: .88rem;
  letter-spacing: .5px;
  transition: background .2s, transform .2s;
  margin-bottom: 16px;
}
.pix-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}
.pix-obs {
  font-size: .76rem; color: #9aaa94; line-height: 1.65;
  border-top: 1px solid var(--green-pale); padding-top: 16px;
}

/* ── CALENDAR BUTTON ───────────────────── */
.cal-wrapper { position: relative; display: inline-block; margin-top: 24px; }
.cal-btn {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--green-dark);
  color: var(--white);
  border: none; cursor: pointer;
  padding: 13px 22px;
  border-radius: 30px;
  font-size: .84rem;
  font-family: 'Lato', sans-serif;
  letter-spacing: .8px;
  box-shadow: 0 4px 18px rgba(30,68,32,.25);
  transition: transform .25s, box-shadow .25s;
}
.cal-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(30,68,32,.35); }

.cal-menu {
  position: absolute;
  bottom: calc(100% + 10px); left: 0;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 14px 44px rgba(0,0,0,.16);
  padding: 8px;
  min-width: 260px;
  opacity: 0; pointer-events: none;
  transform: translateY(8px);
  transition: opacity .25s, transform .25s;
  z-index: 50;
}
.cal-menu.open { opacity: 1; pointer-events: all; transform: translateY(0); }

.cal-menu-header {
  display: flex; align-items: center; gap: 7px;
  font-size: .7rem; color: var(--green-accent);
  letter-spacing: .5px; padding: 8px 14px 10px;
  border-bottom: 1px solid var(--green-pale);
  margin-bottom: 4px;
}
.cal-option {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--text-dark);
  font-size: .86rem;
  transition: background .2s;
}
.cal-option:hover { background: var(--green-pale); }

/* ── FOOTER ────────────────────────────── */
footer {
  background: var(--green-dark);
  text-align: center; padding: 70px 40px;
  position: relative; overflow: hidden;
}
footer::before {
  content: 'imersão';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(5rem, 18vw, 13rem);
  font-weight: 900; color: rgba(255,255,255,.04);
  letter-spacing: 4px; white-space: nowrap; pointer-events: none;
}
.footer-logo {
  font-family: 'Dancing Script', cursive;
  font-size: 3.5rem; color: var(--gold);
  margin-bottom: 16px; position: relative;
}
.footer-tagline {
  font-size: .8rem; letter-spacing: 4px; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: 40px; position: relative;
}
.footer-date {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; color: rgba(255,255,255,.7); position: relative;
}
.footer-copy {
  margin-top: 40px; font-size: .72rem;
  color: rgba(255,255,255,.25); letter-spacing: 1px; position: relative;
}

/* ── MUSIC BUTTON ──────────────────────── */

#music-btn {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9000;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--green-dark);
  border: 2px solid rgba(201,168,76,.6);
  color: var(--gold);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(0,0,0,.25);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
#music-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(201,168,76,.35);
  border-color: var(--gold);
}
#music-btn.playing {
  animation: musicPulse 1.8s ease-in-out infinite;
}
@keyframes musicPulse {
  0%,100% { box-shadow: 0 6px 24px rgba(0,0,0,.25), 0 0 0 0 rgba(201,168,76,.4); }
  50%      { box-shadow: 0 6px 24px rgba(0,0,0,.25), 0 0 0 12px rgba(201,168,76,0); }
}

/* ── KEYFRAMES ─────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── RESPONSIVE ────────────────────────── */
@media(max-width:768px) {
  .about-grid,
  .location-grid { grid-template-columns: 1fr; gap: 40px; }
  .timeline::before { display: none; }
  .team-grid { grid-template-columns: 1fr; }
  .section-inner { padding: 70px 24px; }
  nav, nav.scrolled { padding-left: 24px; padding-right: 24px; }
}
