@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');


:root {
  
  --teal:        #1a6872;
  --teal-deep:   #0e4049;
  --teal-mid:    #2d8a96;
  --teal-soft:   #5ba8b2;
  --teal-mist:   #d4eaed;

  
  --amber:       #c8922a;
  --amber-light: #e0b566;
  --amber-pale:  #f5e8cc;

  
  --ivory:       #faf8f4;
  --cream:       #f2ede4;
  --linen:       #e8e0d4;
  --bark:        #2a2118;
  --bark-mid:    #3d3026;
  --bark-soft:   #5c4d3c;
  --bark-muted:  #8a7b6a;

  
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  
  --expo:    cubic-bezier(0.16, 1, 0.3, 1);
  --spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --smooth:  cubic-bezier(0.23, 1, 0.32, 1);

  
  --r-pill:  9999px;
  --r-xl:    28px;
  --r-lg:    20px;
  --r-md:    14px;
  --r-sm:    10px;

  
  --sh-xs:  0 1px 4px rgba(42,33,24,.05);
  --sh-sm:  0 2px 10px rgba(42,33,24,.07), 0 0 0 1px rgba(42,33,24,.04);
  --sh-md:  0 8px 32px rgba(42,33,24,.10), 0 0 0 1px rgba(42,33,24,.04);
  --sh-lg:  0 24px 64px rgba(42,33,24,.14);
  --sh-nav: 0 4px 24px rgba(42,33,24,.09), 0 0 0 1px rgba(42,33,24,.06);
  --sh-teal: 0 8px 32px rgba(26,104,114,.28);
  --sh-amber: 0 8px 32px rgba(200,146,42,.32);
}


*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--ivory);
  color: var(--bark);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font-body); }
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }


@keyframes fadeUp   { from{opacity:0;transform:translateY(36px)} to{opacity:1;transform:none} }
@keyframes fadeIn   { from{opacity:0} to{opacity:1} }
@keyframes floatY   { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
@keyframes floatX   { 0%,100%{transform:translateX(0)} 50%{transform:translateX(12px)} }
@keyframes spinSlow { to{transform:rotate(360deg)} }
@keyframes pulseRing{ 0%{transform:scale(.9);opacity:.6} 50%{transform:scale(1.1);opacity:.2} 100%{transform:scale(.9);opacity:.6} }
@keyframes shimmer  { from{background-position:-200% center} to{background-position:200% center} }
@keyframes glowPulse{ 0%,100%{box-shadow:0 0 0 0 rgba(26,104,114,0)} 50%{box-shadow:0 0 0 12px rgba(26,104,114,.12)} }

.fade-in { opacity:0; transform:translateY(28px); transition:opacity .75s var(--expo),transform .75s var(--expo); }
.fade-in.visible { opacity:1; transform:none; }


header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1040px;
  z-index: 200;
  transition: top .4s var(--expo), width .4s var(--expo);
}

.nav-pill {
  background: rgba(250,248,244,.88);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border-radius: var(--r-pill);
  box-shadow: var(--sh-nav);
  border: 1px solid rgba(255,255,255,.8);
  padding: 0 8px 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
  transition: box-shadow .3s, background .3s;
}
header.scrolled .nav-pill {
  background: rgba(250,248,244,.97);
  box-shadow: 0 8px 40px rgba(42,33,24,.12), 0 0 0 1px rgba(42,33,24,.07);
}

.logo-wrap {
  display: flex; align-items: center;
  flex-shrink: 0;
  transition: transform .4s var(--spring);
  cursor: pointer;
  padding: 0 2px;
}
.logo-wrap:hover { transform: scale(1.06) rotate(-4deg); }
.logo-wrap img { height: 44px; width: auto; object-fit: contain; border-radius: 50px; }

nav { display: flex; align-items: center; }
nav ul { display: flex; list-style: none; align-items: center; gap: 2px; }

nav ul li a {
  display: block; padding: 7px 14px;
  font-size: .83rem; font-weight: 500; letter-spacing: .01em;
  color: rgba(42,33,24,.65); border-radius: var(--r-pill);
  transition: background .2s, color .2s;
}
nav ul li a:hover { background: rgba(42,33,24,.06); color: var(--bark); }

nav ul li a.btn-nav {
  background: var(--teal-deep); color: #fff;
  padding: 8px 20px; margin-left: 6px;
  border-radius: var(--r-pill); font-size: .83rem; font-weight: 500;
  transition: background .25s, transform .3s var(--spring), box-shadow .25s;
}
nav ul li a.btn-nav:hover {
  background: var(--amber); transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(200,146,42,.38);
}

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: rgba(42,33,24,.06); border: none; padding: 9px;
  border-radius: var(--r-md); z-index: 300; transition: background .2s;
}
.hamburger:hover { background: rgba(42,33,24,.1); }
.hamburger span {
  display: block; width: 20px; height: 1.5px; background: var(--bark);
  border-radius: var(--r-pill);
  transition: transform .35s var(--expo), opacity .25s, width .3s var(--expo);
}
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; width: 8px; }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 15% 105%, rgba(26,104,114,.3)  0%, transparent 58%),
    radial-gradient(ellipse 65% 90% at 82% -5%,  rgba(200,146,42,.18) 0%, transparent 58%),
    radial-gradient(ellipse 50% 50% at 60% 60%,  rgba(200,146,42,.07) 0%, transparent 50%),
    linear-gradient(155deg, #1e1510 0%, #0e1a1c 100%);
}

.hero-orb { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.hero-orb-1 { width:620px;height:620px;background:rgba(26,104,114,.14);top:-180px;right:-120px;animation:floatY 9s ease-in-out infinite; }
.hero-orb-2 { width:380px;height:380px;background:rgba(200,146,42,.10);bottom:-60px;left:2%;animation:floatY 7s ease-in-out infinite;animation-delay:-3.5s; }
.hero-orb-3 { width:220px;height:220px;background:rgba(200,146,42,.07);top:40%;left:50%;animation:floatX 11s ease-in-out infinite;animation-delay:-5s; }

.hero-content { position: relative; z-index: 2; max-width: 800px; padding-top: 100px; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-pill); padding: 6px 14px 6px 8px;
  margin-bottom: 32px; animation: fadeIn 1s .2s both;
}
.hero-tag-dot {
  width: 6px; height: 6px; background: var(--amber-light); border-radius: 50%; position: relative;
}
.hero-tag-dot::after {
  content: ''; position: absolute; inset: -5px; border-radius: 50%;
  background: rgba(224,181,102,.28); animation: pulseRing 2s ease-in-out infinite;
}
.hero-tag span { font-size: .72rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.55); }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7.5vw, 6.8rem);
  font-weight: 300; line-height: 1.05; color: #fff;
  letter-spacing: -.02em; margin-bottom: 28px;
  animation: fadeUp 1s .4s both;
}
.hero h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--amber-light), var(--amber));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  font-size: 1.04rem; color: rgba(255,255,255,.55);
  max-width: 500px; line-height: 1.72; margin-bottom: 52px;
  animation: fadeUp 1s .6s both;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; animation: fadeUp 1s .8s both; }

.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 3; animation: fadeIn 1.5s 1.2s both;
}
.hero-stat-pill {
  display: flex; align-items: center;
  background: rgba(255,255,255,.05); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.09); border-bottom: none;
  border-radius: 24px 24px 0 0; padding: 18px 44px; gap: 0;
}
.hero-stat { text-align: center; padding: 0 24px; border-right: 1px solid rgba(255,255,255,.08); }
.hero-stat:last-child { border-right: none; }
.hero-stat strong { display: block; font-family: var(--font-display); font-size: 1.9rem; font-weight: 400; color: #fff; line-height: 1; }
.hero-stat span { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.38); }


.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--r-pill);
  font-family: var(--font-body); font-size: .88rem; font-weight: 500;
  cursor: pointer; border: none;
  transition: transform .3s var(--spring), box-shadow .3s, background .25s;
}
.btn-primary { background: var(--teal); color: #fff; box-shadow: var(--sh-teal); }
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 36px rgba(26,104,114,.42); background: var(--teal-mid); }
.btn-outline { background: transparent; color: rgba(255,255,255,.8); border: 1px solid rgba(255,255,255,.2); backdrop-filter: blur(8px); }
.btn-outline:hover { background: rgba(255,255,255,.09); transform: translateY(-3px); border-color: rgba(255,255,255,.35); }
.btn-dark { background: var(--bark); color: #fff; box-shadow: var(--sh-sm); }
.btn-dark:hover { background: var(--bark-mid); transform: translateY(-2px); box-shadow: var(--sh-md); }


section { padding: 120px 0; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .72rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 14px;
}
.section-label::before {
  content: ''; display: block; width: 20px; height: 1.5px;
  background: var(--teal); border-radius: var(--r-pill);
}
.section-title { text-align: center; margin-bottom: 72px; }
.section-title .section-label { display: block; }
.section-title .section-label::before { display: none; }
.section-title h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 400; color: var(--bark); line-height: 1.08;
}


.about { background: var(--ivory); overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: center; }
.about-text .section-label { display: inline-flex; }
.about-text h2 { font-family: var(--font-display); font-size: clamp(2.2rem,3.8vw,3.2rem); font-weight: 400; line-height: 1.12; margin-bottom: 24px; color: var(--bark); }
.about-text p { color: rgba(42,33,24,.65); margin-bottom: 16px; font-size: .94rem; line-height: 1.75; }

.about-visual { position: relative; }
.about-img-frame {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  aspect-ratio: 3/4; background: var(--linen); box-shadow: var(--sh-lg);
}
.about-img-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--expo); }
.about-img-frame:hover img { transform: scale(1.04); }


.about-carousel { width: 100%; height: 100%; overflow: hidden; }
.about-carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform .75s cubic-bezier(0.16, 1, 0.3, 1);
}
.about-carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}
.about-carousel-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

.about-carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10;
  background: rgba(250,248,244,.55);
  backdrop-filter: blur(8px);
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.7);
}
.acd {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: rgba(26,104,114,.25);
  cursor: pointer;
  padding: 0;
  transition: background .3s, transform .3s cubic-bezier(0.34,1.56,0.64,1), width .3s cubic-bezier(0.34,1.56,0.64,1);
}
.acd.active {
  background: var(--teal);
  width: 22px;
  border-radius: 999px;
  transform: none;
}

.about-float-card {
  position: absolute; background: rgba(250,248,244,.94);
  backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,.9);
  border-radius: var(--r-lg); padding: 14px 18px; box-shadow: var(--sh-md);
}
.about-float-1 { bottom: 32px; left: -32px; animation: floatY 6s ease-in-out infinite; }
.about-float-2 { top: 48px; right: -24px; animation: floatY 6s ease-in-out infinite; animation-delay: -3s; }
.about-float-card strong { font-family: var(--font-display); font-size: 1.7rem; font-weight: 400; color: var(--bark); display: block; line-height: 1; }
.about-float-card span { font-size: .68rem; font-weight: 500; letter-spacing: .08em; color: rgba(42,33,24,.45); text-transform: uppercase; }
.about-float-icon { font-size: 1rem; margin-bottom: 5px; display: block; color: var(--teal); }

.about-ring {
  position: absolute; top: -20px; right: -20px;
  width: 88px; height: 88px; border-radius: 50%;
  border: 1.5px dashed rgba(26,104,114,.35);
  animation: spinSlow 20s linear infinite;
}
.about-ring-inner {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 10px; height: 10px; border-radius: 50%; background: var(--teal-mist);
}


.mission { background: var(--cream); }
.mission-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

.mission-card {
  background: var(--ivory); border-radius: var(--r-xl);
  padding: 40px 28px 36px; text-align: center; position: relative;
  overflow: hidden; border: 1px solid rgba(42,33,24,.05);
  transition: transform .4s var(--spring), box-shadow .4s, border-color .3s;
}
.mission-card::before {
  content: ''; position: absolute; inset: 0; border-radius: var(--r-xl);
  background: linear-gradient(145deg, rgba(26,104,114,.06) 0%, transparent 60%);
  opacity: 0; transition: opacity .4s;
}
.mission-card:hover { transform: translateY(-10px) scale(1.01); box-shadow: var(--sh-lg); border-color: rgba(26,104,114,.18); }
.mission-card:hover::before { opacity: 1; }

.mission-card-line {
  position: absolute; top: 0; left: 24px; right: 24px; height: 3px;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  background: linear-gradient(90deg, var(--amber), var(--teal));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--expo);
}
.mission-card:hover .mission-card-line { transform: scaleX(1); }

.mission-icon-wrap {
  width: 68px; height: 68px; border-radius: 22px;
  background: linear-gradient(135deg, var(--cream), var(--linen));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; font-size: 1.6rem; color: var(--teal);
  transition: border-radius .4s var(--spring), background .3s, transform .4s var(--spring);
  position: relative; z-index: 1;
}
.mission-card:hover .mission-icon-wrap { border-radius: var(--r-pill); background: var(--teal); color: #fff; transform: rotate(-6deg) scale(1.1); }
.mission-card h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 500; color: var(--bark); margin-bottom: 12px; position: relative; z-index: 1; }
.mission-card p { font-size: .88rem; color: rgba(42,33,24,.58); line-height: 1.72; position: relative; z-index: 1; }


.services { background: var(--ivory); }
.tabs-wrap { display: flex; justify-content: center; margin-bottom: 52px; }
.tabs-header {
  display: inline-flex; gap: 4px;
  background: var(--cream); border-radius: var(--r-pill);
  padding: 5px; border: 1px solid rgba(42,33,24,.07);
}
.tab-btn {
  padding: 9px 26px; border: none; background: transparent; border-radius: var(--r-pill);
  font-size: .86rem; font-weight: 500; color: rgba(42,33,24,.52); cursor: pointer;
  transition: background .3s var(--expo), color .3s, box-shadow .3s; white-space: nowrap;
}
.tab-btn.active { background: var(--ivory); color: var(--bark); box-shadow: var(--sh-sm); }

.tab-content { display: none; }
.tab-content.active {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 16px;
  animation: fadeUp .5s var(--expo) forwards;
}

.service-item {
  padding: 32px 26px; border-radius: var(--r-lg);
  background: var(--cream); border: 1px solid transparent;
  transition: border-color .3s, transform .35s var(--spring), box-shadow .35s, background .3s;
  position: relative; overflow: hidden;
}
.service-item::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--amber), var(--teal));
  transform: scaleX(0); transform-origin: left; transition: transform .35s var(--expo);
}
.service-item:hover { border-color: rgba(26,104,114,.22); transform: translateY(-5px); box-shadow: var(--sh-md); background: var(--ivory); }
.service-item:hover::after { transform: scaleX(1); }
.service-item h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; color: var(--bark); margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.service-icon {
  width: 30px; height: 30px; background: rgba(26,104,114,.1); border-radius: var(--r-md);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .85rem; color: var(--teal); flex-shrink: 0;
  transition: border-radius .3s var(--spring), background .3s, color .3s;
}
.service-item:hover .service-icon { border-radius: var(--r-pill); background: var(--teal); color: #fff; }
.service-item p { font-size: .88rem; color: rgba(42,33,24,.6); line-height: 1.72; }


.events { background: var(--cream); }
.event-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px,1fr)); gap: 24px; }

.event-card {
  background: var(--ivory); border-radius: var(--r-xl);
  overflow: hidden; border: 1px solid rgba(42,33,24,.05);
  transition: transform .4s var(--spring), box-shadow .4s, opacity .6s var(--expo);
}
.event-card.fade-in { opacity: 0; transform: translateY(28px); }
.event-card.fade-in.visible { opacity: 1; transform: none; }
.event-card:hover { transform: translateY(-10px); box-shadow: var(--sh-lg); }

.event-image { height: 210px; background: var(--teal-mist) center/cover; position: relative; overflow: hidden; }
.event-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(42,33,24,.3) 0%, transparent 60%);
}

.event-content { padding: 26px; }
.event-date {
  font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal); display: flex; align-items: center; gap: 6px;
}
.event-date::before { content: ''; display: block; width: 4px; height: 4px; border-radius: 50%; background: var(--teal); }
.event-content h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; color: var(--bark); margin: 8px 0 12px; line-height: 1.25; }
.event-description p { font-size: .86rem; color: rgba(42,33,24,.58); margin-bottom: 16px; line-height: 1.65; }

.read-more-btn {
  background: none; border: none; color: var(--teal); font-size: .82rem; font-weight: 500;
  cursor: pointer; padding: 0; margin-bottom: 18px;
  display: inline-flex; align-items: center; gap: 4px;
  transition: gap .3s var(--spring), color .2s;
}
.read-more-btn:hover { gap: 10px; color: var(--teal-deep); }

.event-details { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.event-detail { display: flex; align-items: center; gap: 10px; font-size: .82rem; color: rgba(42,33,24,.52); }
.event-detail-icon {
  width: 24px; height: 24px; background: var(--cream); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center; font-size: .7rem; color: var(--teal-soft); flex-shrink: 0;
}
.event-card .btn { display: inline-flex; background: var(--bark); color: #fff; padding: 10px 20px; font-size: .82rem; margin-top: 0; border-radius: var(--r-pill); box-shadow: none; }
.event-card .btn:hover { background: var(--teal); transform: translateY(-2px); box-shadow: var(--sh-teal); }


.testimonials { background: var(--bark); overflow: hidden; position: relative; }
.testimonials::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: rgba(26,104,114,.07); filter: blur(80px); pointer-events: none;
}
.testimonials .section-title h2 { color: #fff; }
.testimonials .section-label { color: var(--amber-light); }

.testimonial-slider { position: relative; overflow: hidden; }
.testimonial-track { display: flex; transition: transform .6s var(--expo); }
.testimonial-slide { min-width: 100%; padding: 0 24px; text-align: center; }

.testimonial-quote {
  width: 48px; height: 48px; background: rgba(255,255,255,.05);
  border-radius: var(--r-md); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 2rem; color: var(--amber-light);
  margin: 0 auto 24px; line-height: 1;
}
.testimonial-content p {
  font-family: var(--font-display); font-size: clamp(1.3rem,2.6vw,1.8rem);
  font-weight: 300; font-style: italic; color: rgba(255,255,255,.85);
  line-height: 1.5; max-width: 700px; margin: 0 auto 32px;
}
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: var(--r-pill);
  background: linear-gradient(135deg, var(--teal), var(--amber));
  border: 2px solid rgba(255,255,255,.13);
}
.author-name { font-size: .88rem; font-weight: 500; color: rgba(255,255,255,.45); }

.slider-controls { display: flex; justify-content: center; align-items: center; gap: 16px; margin-top: 40px; }
.slider-dots { display: flex; gap: 6px; }
.slider-dot {
  width: 6px; height: 6px; border-radius: var(--r-pill); background: rgba(255,255,255,.18);
  border: none; cursor: pointer; padding: 0; transition: background .3s, width .4s var(--expo);
}
.slider-dot.active { background: var(--amber); width: 22px; }


.pricing { background: var(--ivory); position: relative; overflow: hidden; }


.pricing::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 80%, rgba(26,104,114,.07) 0%, transparent 55%),
    radial-gradient(ellipse 50% 70% at 20% 20%, rgba(200,146,42,.06) 0%, transparent 55%);
  pointer-events: none;
}


.pricing-card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--bark);
  border-radius: 36px;
  padding: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(42,33,24,.3), 0 0 0 1px rgba(255,255,255,.06);
}


.pricing-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal-soft), var(--amber-light), var(--teal-soft), transparent);
  animation: shimmer 4s linear infinite;
  background-size: 200% auto;
}


.pricing-card::after {
  content: '';
  position: absolute; top: -120px; right: -120px;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,104,114,.18) 0%, transparent 65%);
  animation: floatY 8s ease-in-out infinite;
  pointer-events: none;
}


.pricing-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  min-height: 420px;
  position: relative;
  z-index: 1;
}


.pricing-left {
  padding: 52px 40px 52px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,.07);
  position: relative;
}


.pricing-left::after {
  content: '';
  position: absolute; bottom: -60px; left: -60px;
  width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,146,42,.12) 0%, transparent 60%);
  pointer-events: none;
}

.pricing-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(200,146,42,.15); border: 1px solid rgba(200,146,42,.25);
  color: var(--amber-light); border-radius: var(--r-pill);
  padding: 5px 12px; font-size: .7rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; margin-bottom: 28px; width: fit-content;
}
.pricing-badge-dot {
  width: 5px; height: 5px; border-radius: 50%; background: var(--amber-light);
  animation: pulseRing 2s ease-in-out infinite;
}

.pricing-amount-wrap { margin-bottom: 9px; }
.pricing-amount {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 300; color: #fff; line-height: 1;
  letter-spacing: -.03em;
}
.pricing-amount sup { font-size: 6rem; vertical-align: super; letter-spacing: 0; }
.pricing-period {
  font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.35); margin-bottom: 32px;
}

.pricing-divider {
  width: 32px; height: 1.5px; background: rgba(255,255,255,.15);
  border-radius: var(--r-pill); margin-bottom: 20px;
}

.pricing-tagline {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 300; font-style: italic;
  color: rgba(255,255,255,.7); line-height: 1.3;
}


.pricing-right {
  padding: 52px 52px 52px 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-title {
  font-family: var(--font-display);
  font-size: 1.9rem; font-weight: 400; color: #fff;
  line-height: 1.15; margin-bottom: 6px;
}
.pricing-subtitle {
  font-size: .83rem; color: rgba(255,255,255,.4);
  margin-bottom: 32px; line-height: 1.6;
}


.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 40px; }
.pricing-feature {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: .86rem; color: rgba(255,255,255,.72); line-height: 1.5;
}
.pricing-feature-icon {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(26,104,114,.3); border: 1px solid rgba(26,104,114,.4);
  display: flex; align-items: center; justify-content: center;
  font-size: .6rem; color: var(--teal-soft);
  flex-shrink: 0; margin-top: 1px;
}


.pricing-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 32px; border-radius: var(--r-pill);
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-mid) 100%);
  color: #fff; font-size: .9rem; font-weight: 600;
  border: none; cursor: pointer; text-decoration: none;
  position: relative; overflow: hidden;
  box-shadow: 0 8px 32px rgba(26,104,114,.45), inset 0 1px 0 rgba(255,255,255,.12);
  transition: transform .3s var(--spring), box-shadow .3s;
  animation: glowPulse 3s ease-in-out infinite;
}
.pricing-cta::before {
  content: '';
  position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.14), transparent);
  transition: left .6s;
}
.pricing-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 48px rgba(26,104,114,.55), inset 0 1px 0 rgba(255,255,255,.12);
}
.pricing-cta:hover::before { left: 100%; }

.pricing-cta-arrow {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem;
  transition: transform .3s var(--spring);
}
.pricing-cta:hover .pricing-cta-arrow { transform: translateX(3px); }

.pricing-note {
  margin-top: 14px;
  font-size: .75rem; color: rgba(255,255,255,.25);
  display: flex; align-items: center; gap: 6px;
}
.pricing-note::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%;
  background: rgba(255,255,255,.2); flex-shrink: 0;
}


.contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 72px; align-items: start; }
.contact-info h3 { font-family: var(--font-display); font-size: 2.1rem; font-weight: 400; line-height: 1.15; margin-bottom: 16px; color: var(--bark); }
.contact-info > p { font-size: .93rem; color: rgba(42,33,24,.62); margin-bottom: 40px; line-height: 1.75; }
.contact-items { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-icon {
  width: 40px; height: 40px; background: var(--ivory); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center; font-size: .9rem; color: var(--teal);
  flex-shrink: 0; border: 1px solid rgba(42,33,24,.06);
  transition: border-radius .3s var(--spring), background .25s, color .25s;
}
.contact-item:hover .contact-icon { border-radius: var(--r-pill); background: var(--teal); color: #fff; }
.contact-item h4 { font-size: .73rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--teal-deep); margin-bottom: 2px; }
.contact-item p { font-size: .88rem; color: rgba(42,33,24,.65); }

.social-icons { display: flex; gap: 8px; }
.social-icon {
  width: 38px; height: 38px; border-radius: var(--r-md);
  background: var(--ivory); display: flex; align-items: center; justify-content: center;
  font-size: .88rem; color: rgba(42,33,24,.58); border: 1px solid rgba(42,33,24,.06);
  transition: border-radius .35s var(--spring), background .25s, color .25s, transform .3s var(--spring);
}
.social-icon:hover { background: var(--bark); color: #fff; border-radius: var(--r-pill); transform: translateY(-3px); }

.contact-form-box {
  background: var(--ivory); border-radius: var(--r-xl);
  padding: 44px 40px; border: 1px solid rgba(42,33,24,.06); box-shadow: var(--sh-sm);
}
.contact-form-box h3 { font-family: var(--font-display); font-size: 1.45rem; font-weight: 500; margin-bottom: 28px; color: var(--bark); }
.form-group { margin-bottom: 14px; }
.form-control {
  width: 100%; padding: 12px 18px;
  border: 1.5px solid rgba(42,33,24,.1); border-radius: var(--r-md);
  background: var(--cream); font-family: var(--font-body); font-size: .88rem; color: var(--bark);
  outline: none; transition: border-color .25s, box-shadow .25s, border-radius .3s var(--spring), background .25s;
}
.form-control::placeholder { color: rgba(42,33,24,.28); }
.form-control:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(26,104,114,.12); border-radius: var(--r-lg); background: #fff; }
textarea.form-control { resize: vertical; min-height: 120px; }
.contact-form-box .btn-primary { width: 100%; justify-content: center; margin-top: 8px; }


footer { background: var(--bark); color: rgba(255,255,255,.55); padding: 80px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.4fr; gap: 48px; margin-bottom: 60px; }

.footer-logo-wrap {
  width: 40px; height: 40px; background: rgba(255,255,255,.07);
  border-radius: var(--r-md); display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; overflow: hidden;
}
.footer-logo-wrap img { width: 26px; height: 26px; object-fit: contain; border-radius: 50px; }
.footer-brand p { font-size: .86rem; line-height: 1.75; max-width: 220px; }

.footer-heading { font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.85); margin-bottom: 18px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links ul li a {
  font-size: .86rem; color: rgba(255,255,255,.4);
  transition: color .25s, padding-left .25s; display: inline-block;
}
.footer-links ul li a:hover { color: var(--amber-light); padding-left: 4px; }

.newsletter-form { display: flex; gap: 8px; margin-bottom: 18px; }
.newsletter-input {
  flex: 1; padding: 10px 16px;
  border: 1px solid rgba(255,255,255,.09); border-radius: var(--r-pill);
  background: rgba(255,255,255,.04); font-family: var(--font-body); font-size: .84rem; color: #fff;
  outline: none; transition: border-color .25s, background .25s;
}
.newsletter-input::placeholder { color: rgba(255,255,255,.25); }
.newsletter-input:focus { border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.07); }
.newsletter-btn {
  width: 40px; height: 40px; border-radius: 50%; background: var(--teal);
  border: none; cursor: pointer; color: #fff; font-size: .84rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background .25s, transform .3s var(--spring);
}
.newsletter-btn:hover { background: var(--amber); transform: scale(1.1) rotate(-5deg); }
.footer-donate { font-size: .82rem; }
.footer-donate a { color: var(--amber-light); transition: color .25s; }
.footer-donate a:hover { color: var(--amber); }

.footer-bottom { padding-top: 28px; border-top: 1px solid rgba(255,255,255,.06); text-align: center; font-size: .78rem; color: rgba(255,255,255,.22); }


.event-modal {
  display: none; position: fixed; inset: 0;
  background: rgba(42,33,24,.72); backdrop-filter: blur(12px);
  z-index: 500; align-items: center; justify-content: center; padding: 20px;
}
.event-modal.active { display: flex; animation: fadeIn .3s; }
.modal-content {
  background: var(--ivory); border-radius: var(--r-xl);
  max-width: 580px; width: 100%; max-height: 90vh; overflow-y: auto;
  position: relative; animation: fadeUp .4s var(--expo);
  border: 1px solid rgba(42,33,24,.06);
}
.modal-image { height: 250px; background: var(--teal-mist) center/cover; border-radius: var(--r-xl) var(--r-xl) 0 0; }
.close-modal {
  position: absolute; top: 14px; right: 14px; width: 36px; height: 36px;
  background: rgba(250,248,244,.92); backdrop-filter: blur(8px);
  border: none; border-radius: var(--r-pill); cursor: pointer; color: var(--bark);
  font-size: .88rem; display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .3s var(--spring);
}
.close-modal:hover { background: #fff; transform: rotate(90deg) scale(1.1); }
.modal-body { padding: 30px; }
.modal-date { font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); }
.modal-title { font-family: var(--font-display); font-size: 1.7rem; font-weight: 500; margin: 8px 0 16px; color: var(--bark); }
.modal-description p { font-size: .9rem; color: rgba(42,33,24,.65); line-height: 1.75; margin-bottom: 22px; }
.modal-details { display: flex; flex-direction: column; gap: 9px; margin-bottom: 22px; }
.modal-detail { display: flex; align-items: center; gap: 10px; font-size: .86rem; color: rgba(42,33,24,.58); }
.modal-detail-icon { color: var(--teal-soft); width: 16px; text-align: center; }
.modal-register-btn {
  display: inline-flex; background: var(--teal); color: #fff;
  padding: 12px 26px; border-radius: var(--r-pill); font-size: .88rem; font-weight: 500;
  transition: background .25s, transform .3s var(--spring);
}
.modal-register-btn:hover { background: var(--teal-deep); transform: translateY(-2px); }


@media (max-width: 1024px) {
  header { width: calc(100% - 32px); }
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-visual { max-width: 460px; margin: 0 auto; }
  .mission-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .pricing-inner { grid-template-columns: 1fr; }
  .pricing-left { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); padding: 44px 40px; }
  .pricing-right { padding: 40px 40px 48px; }
}
@media (max-width: 768px) {
  header { top: 10px; width: calc(100% - 24px); }
  section { padding: 80px 0; }
  nav {
    position: fixed; inset: 0; background: var(--ivory);
    transform: translateX(105%); transition: transform .45s var(--expo);
    flex-direction: column; justify-content: center; z-index: 150; padding: 80px 32px 40px;
  }
  nav.active { transform: translateX(0); }
  nav ul { flex-direction: column; gap: 6px; width: 100%; }
  nav ul li { width: 100%; }
  nav ul li a { display: block; padding: 14px 20px; border-radius: var(--r-lg); font-size: 1.05rem; }
  nav ul li a.btn-nav { text-align: center; margin-left: 0; margin-top: 12px; }
  .hamburger { display: flex; }
  .hero h1 { font-size: 3rem; }
  .hero-stats { display: none; }
  .about-float-1, .about-float-2 { display: none; }
  .mission-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .pricing-card { border-radius: 24px; }
  .pricing-left { padding: 36px 28px; }
  .pricing-right { padding: 32px 28px 40px; }
  .pricing-amount { font-size: 4.5rem; }
  .contact-form-box { padding: 28px 22px; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn { justify-content: center; }
  .tabs-header { border-radius: var(--r-xl); flex-direction: column; width: 100%; }
}





@keyframes bubbleFloat {
  0%,100% { transform: translateY(0) rotate(0deg); }
  33%      { transform: translateY(-6px) rotate(2deg); }
  66%      { transform: translateY(-3px) rotate(-1deg); }
}
@keyframes bubblePulseRing {
  0%   { transform: scale(1);   opacity: .55; }
  70%  { transform: scale(1.8); opacity: 0;   }
  100% { transform: scale(1.8); opacity: 0;   }
}
@keyframes bubblePanelIn {
  from { opacity: 0; transform: translateY(16px) scale(.94); }
  to   { opacity: 1; transform: none; }
}
@keyframes bubbleIconSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes orbDrift {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(8px,-8px) scale(1.08); }
}


#info-bubble-trigger {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 58px;
  height: 58px;
  cursor: pointer;
  animation: bubbleFloat 6s ease-in-out infinite;
}

.bubble-pulse-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--teal-soft);
  animation: bubblePulseRing 2.8s ease-out infinite;
}

.bubble-inner {
  width: 100%;
  height: 100%;
  border-radius: 50% 50% 50% 42% / 50% 50% 42% 50%;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%);
  box-shadow: var(--sh-teal), 0 0 0 3px rgba(255,255,255,.15) inset;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-radius .5s var(--spring),
              box-shadow .3s var(--smooth),
              transform .3s var(--spring);
}

#info-bubble-trigger:hover .bubble-inner,
#info-bubble-trigger.active .bubble-inner {
  border-radius: 50%;
  box-shadow: 0 12px 48px rgba(26,104,114,.45), 0 0 0 3px rgba(255,255,255,.2) inset;
  transform: scale(1.06);
}

.bubble-icon {
  font-size: 22px;
  color: #fff;
  line-height: 1;
  display: block;
  transition: transform .6s var(--spring);
  user-select: none;
}

#info-bubble-trigger.active .bubble-icon {
  animation: bubbleIconSpin .5s var(--spring) forwards;
}


#info-bubble-panel {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 899;
  width: 300px;
  background: linear-gradient(160deg, var(--ivory) 0%, var(--cream) 100%);
  border-radius: 24px 24px 8px 24px;
  box-shadow: var(--sh-lg), 0 0 0 1px rgba(26,104,114,.1);
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transform: translateY(16px) scale(.94);
  transform-origin: bottom right;
  transition: opacity .35s var(--expo),
              transform .4s var(--spring);
}

#info-bubble-panel.open {
  pointer-events: all;
  opacity: 1;
  transform: none;
}


.bubble-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: rgba(42,33,24,.08);
  color: var(--bark-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, color .2s, transform .2s var(--spring);
}
.bubble-close:hover {
  background: rgba(42,33,24,.14);
  color: var(--bark);
  transform: scale(1.1);
}


.bubble-panel-header {
  position: relative;
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal) 60%, var(--teal-mid) 100%);
  padding: 18px 44px 18px 20px;
  overflow: hidden;
}

.bubble-panel-label {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal-mist);
  opacity: .85;
  display: block;
}

.bubble-panel-orb {
  position: absolute;
  top: -24px;
  right: -24px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.12) 0%, transparent 70%);
  animation: orbDrift 5s ease-in-out infinite;
}


.bubble-panel-body {
  padding: 20px 20px 22px;
}

.bubble-panel-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--teal-mist), var(--amber-pale));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 12px;
  box-shadow: var(--sh-xs);
}

.bubble-panel-title {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 500;
  color: var(--bark);
  line-height: 1.3;
  margin-bottom: 8px;
}

.bubble-panel-text {
  font-size: .84rem;
  color: var(--bark-soft);
  line-height: 1.6;
  margin-bottom: 16px;
}

.bubble-panel-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--teal);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, var(--teal-mist), rgba(212,234,237,.4));
  border: 1px solid rgba(26,104,114,.15);
  transition: background .25s, transform .25s var(--spring), box-shadow .25s;
  text-decoration: none;
}
.bubble-panel-cta:hover {
  background: linear-gradient(135deg, rgba(26,104,114,.12), var(--teal-mist));
  transform: translateY(-1px);
  box-shadow: var(--sh-teal);
}


@media (max-width: 480px) {
  #info-bubble-trigger { bottom: 20px; right: 20px; }
  #info-bubble-panel   { right: 16px; bottom: 88px; width: calc(100vw - 32px); }
}




@keyframes bubbleFloat {
  0%,100% { transform: translateY(0) rotate(0deg); }
  33%      { transform: translateY(-6px) rotate(2deg); }
  66%      { transform: translateY(-3px) rotate(-1deg); }
}
@keyframes bubblePulseRing {
  0%   { transform: scale(1);   opacity: .55; }
  70%  { transform: scale(1.85); opacity: 0; }
  100% { transform: scale(1.85); opacity: 0; }
}
@keyframes bubbleIconSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes orbDrift {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(8px,-8px) scale(1.08); }
}


#info-bubble-trigger {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 58px;
  height: 58px;
  cursor: pointer;
  animation: bubbleFloat 6s ease-in-out infinite;
}

.bubble-pulse-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--teal-soft);
  animation: bubblePulseRing 2.8s ease-out infinite;
}

.bubble-inner {
  width: 100%;
  height: 100%;
  border-radius: 50% 50% 50% 42% / 50% 50% 42% 50%;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%);
  box-shadow: var(--sh-teal), 0 0 0 3px rgba(255,255,255,.15) inset;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-radius .5s var(--spring),
              box-shadow .3s var(--smooth),
              transform .3s var(--spring);
}

#info-bubble-trigger:hover .bubble-inner,
#info-bubble-trigger.active .bubble-inner {
  border-radius: 50%;
  box-shadow: 0 12px 48px rgba(26,104,114,.45), 0 0 0 3px rgba(255,255,255,.2) inset;
  transform: scale(1.06);
}

.bubble-icon {
  font-size: 22px;
  color: #fff;
  line-height: 1;
  display: block;
  transition: transform .6s var(--spring);
  user-select: none;
}

#info-bubble-trigger.active .bubble-icon {
  animation: bubbleIconSpin .5s var(--spring) forwards;
}


#info-bubble-panel {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 899;
  width: 300px;
  background: linear-gradient(160deg, var(--ivory) 0%, var(--cream) 100%);
  border-radius: 24px 24px 8px 24px;
  box-shadow: var(--sh-lg), 0 0 0 1px rgba(26,104,114,.1);
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transform: translateY(16px) scale(.94);
  transform-origin: bottom right;
  transition: opacity .35s var(--expo), transform .4s var(--spring);
}

#info-bubble-panel.open {
  pointer-events: all;
  opacity: 1;
  transform: none;
}

.bubble-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.25);
  color: rgba(255,255,255,.8);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, transform .2s var(--spring);
}
.bubble-close:hover {
  background: rgba(255,255,255,.35);
  transform: scale(1.1);
}

.bubble-panel-header {
  position: relative;
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal) 60%, var(--teal-mid) 100%);
  padding: 18px 44px 18px 20px;
  overflow: hidden;
}

.bubble-panel-label {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal-mist);
  opacity: .85;
  display: block;
}

.bubble-panel-orb {
  position: absolute;
  top: -24px;
  right: -24px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.12) 0%, transparent 70%);
  animation: orbDrift 5s ease-in-out infinite;
}

.bubble-panel-body {
  padding: 20px 20px 22px;
}

.bubble-panel-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--teal-mist), var(--amber-pale));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 12px;
  box-shadow: var(--sh-xs);
}

.bubble-panel-title {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 500;
  color: var(--bark);
  line-height: 1.3;
  margin-bottom: 8px;
}

.bubble-panel-text {
  font-size: .84rem;
  color: var(--bark-soft);
  line-height: 1.6;
  margin-bottom: 16px;
}

.bubble-panel-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--teal);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, var(--teal-mist), rgba(212,234,237,.4));
  border: 1px solid rgba(26,104,114,.15);
  transition: background .25s, transform .25s var(--spring), box-shadow .25s;
  text-decoration: none;
}
.bubble-panel-cta:hover {
  background: linear-gradient(135deg, rgba(26,104,114,.12), var(--teal-mist));
  transform: translateY(-1px);
  box-shadow: var(--sh-teal);
}

@media (max-width: 480px) {
  #info-bubble-trigger { bottom: 20px; right: 20px; }
  #info-bubble-panel   { right: 16px; bottom: 88px; width: calc(100vw - 32px); }
}
