:root {
  --bg: #f5efe6;
  --bg-soft: #fbf8f3;
  --ink: #0f172a;
  --muted: #5f6b7c;
  --line: rgba(15, 23, 42, 0.08);
  --gold: #d1a14d;
  --blue: #7bb4de;
  --rose: #e9b2c6;
  --white: rgba(255,255,255,.76);
  --white-2: rgba(255,255,255,.90);
  --shadow: 0 22px 70px rgba(0,0,0,.10);
  --shadow-soft: 0 14px 34px rgba(0,0,0,.07);
  --radius-xl: 44px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --max: 1360px;
  --ease: 320ms cubic-bezier(.2,.8,.2,1);
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 8%, rgba(209,161,77,.15), transparent 24%),
    radial-gradient(circle at 90% 12%, rgba(123,180,222,.16), transparent 22%),
    radial-gradient(circle at 50% 96%, rgba(233,178,198,.12), transparent 20%),
    linear-gradient(180deg, var(--bg) 0%, #f2eadf 42%, var(--bg-soft) 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .045;
  background-image:
    linear-gradient(rgba(15,23,42,.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,42,.18) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 90%);
  z-index: 0;
}

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  z-index: 200;
  background: linear-gradient(90deg, var(--gold), var(--blue), var(--rose));
  box-shadow: 0 0 24px rgba(209,161,77,.32);
}

.cursor-glow {
  position: fixed;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(209,161,77,.14) 0%, rgba(123,180,222,.11) 34%, rgba(233,178,198,.08) 52%, transparent 72%);
  filter: blur(26px);
  opacity: .84;
  z-index: 1;
  mix-blend-mode: multiply;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--white-2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #5c697a;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  white-space: nowrap;
  overflow: hidden;
}

.pill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.36) 45%, transparent 60%);
  transform: translateX(-140%);
  transition: transform .8s ease;
  pointer-events: none;
}

.pill:hover::after { transform: translateX(140%); }

.topbar {
  position: sticky;
  top: 0;
  z-index: 90;
  backdrop-filter: blur(18px);
  background: rgba(245,239,230,.60);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 75px;
  height: 60px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(209,161,77,.22), rgba(123,180,222,.16));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  font-weight: 900;
  animation: softPulse 4s ease-in-out infinite;
}

@keyframes softPulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

.brand small {
  display: block;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #6b7788;
  font-weight: 900;
  margin-bottom: 3px;
}

.brand strong {
  display: block;
  font-size: 17px;
  letter-spacing: -.03em;
}

.nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  color: #233244;
  transition: var(--ease);
  position: relative;
  overflow: hidden;
}

.nav a:hover,
.nav a.is-active {
  background: rgba(255,255,255,.60);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.nav .cta {
  background: linear-gradient(135deg, #0f172a, #213349);
  color: #fff;
  box-shadow: 0 14px 30px rgba(15,23,42,.16);
}

.social {
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.28);
  backdrop-filter: blur(12px);
}

.social-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding: 12px 0;
}

.social-title {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-link {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--white-2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  font-size: 14px;
  font-weight: 800;
  transition: var(--ease);
}

.social-link:hover { transform: translateY(-3px); }

.tag-ribbon {
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid var(--line);
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.tag-ribbon-track {
  display: inline-flex;
  gap: 14px;
  min-width: max-content;
  padding: 12px 0;
  animation: ribbon 24s linear infinite;
}

.tag-ribbon span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.50);
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #526172;
}

@keyframes ribbon {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.hero {
  padding: 34px 0 18px;
  min-height: calc(100vh - 140px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.hero::before {
  width: 720px;
  height: 720px;
  right: -140px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(209,161,77,.18), transparent 68%);
  filter: blur(20px);
  animation: drift 15s ease-in-out infinite;
}

.hero::after {
  width: 420px;
  height: 420px;
  left: -90px;
  bottom: 30px;
  border-radius: 44% 56% 63% 37% / 42% 38% 62% 58%;
  background: rgba(123,180,222,.16);
  filter: blur(22px);
  animation: morph 12s ease-in-out infinite;
}

@keyframes drift {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(-24px, 24px); }
}

@keyframes morph {
  0%,100% { transform: translateY(0) rotate(0deg); border-radius: 44% 56% 63% 37% / 42% 38% 62% 58%; }
  50% { transform: translateY(-18px) rotate(8deg); border-radius: 58% 42% 39% 61% / 63% 57% 43% 37%; }
}

.hero-grid,
.quote-grid,
.announcements-grid,
.location-grid,
.contact-grid,
.faq-grid,
.footer-grid {
  display: grid;
  gap: 26px;
}

.hero-grid { grid-template-columns: 1.08fr .92fr; align-items: center; }
.quote-grid { grid-template-columns: 1.16fr .84fr; align-items: start; }
.announcements-grid { grid-template-columns: 1.15fr .85fr; align-items: stretch; }
.location-grid { grid-template-columns: .92fr 1.08fr; align-items: start; }
.contact-grid { grid-template-columns: .95fr 1.05fr; align-items: start; }
.faq-grid { grid-template-columns: .86fr 1.14fr; align-items: start; }
.footer-grid { grid-template-columns: 1.08fr .92fr; align-items: center; }

.headline {
  margin: 18px 0 0;
  font-size: clamp(3.5rem, 8.8vw, 7.5rem);
  line-height: .90;
  letter-spacing: -.10em;
  max-width: 980px;
  position: relative;
  z-index: 2;
}

.headline .line {
  display: block;
  transform: translateY(24px);
  opacity: 0;
  animation: lineIn 2.82s forwards;
  color: #e5e3cc;
  letter-spacing: -2px;
  line-height: 115px;
}

.headline .line:nth-child(2) { animation-delay: .08s; }
.headline .line:nth-child(3) { animation-delay: .16s; }

@keyframes lineIn { to { transform: translateY(0); opacity: 1; } }

.lead {
  margin-top: 24px;
  max-width: 740px;
  font-size: 18px;
  line-height: 1.82;
  color: #f7f7e4;
}

.cta-row {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-scroll-cue {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #77859a;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 900;
}

.hero-scroll-cue span {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  animation: bounceCue 1.8s ease-in-out infinite;
}

@keyframes bounceCue {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.hero-stage {
  position: relative;
  min-height: 760px;
}

.ghost-word {
  position: absolute;
  left: -18px;
  top: 28px;
  font-size: clamp(6rem, 18vw, 14rem);
  line-height: .8;
  font-weight: 900;
  letter-spacing: -.12em;
  color: rgba(17,24,39,.045);
  pointer-events: none;
  z-index: 1;
  animation: ghostDrift 9s ease-in-out infinite;
}

@keyframes ghostDrift {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

.vertical-mark {
  position: absolute;
  right: -34px;
  top: 160px;
  transform: rotate(90deg);
  letter-spacing: .28em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(17,24,39,.28);
  font-weight: 900;
}

.stage {
  position: absolute;
  inset: 14px 0 14px 34px;
  border-radius: 46px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 18%, rgba(209,161,77,.26), transparent 18%),
    radial-gradient(circle at 82% 22%, rgba(123,180,222,.22), transparent 18%),
    radial-gradient(circle at 70% 82%, rgba(233,178,198,.16), transparent 16%),
    linear-gradient(135deg, rgba(255,255,255,.78), rgba(255,255,255,.50));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  isolation: isolate;
  --sx: 50%;
  --sy: 50%;
}

.stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--sx) var(--sy), rgba(255,255,255,.28), transparent 34%);
  z-index: 1;
  pointer-events: none;
  opacity: .7;
}

.stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.14), transparent 28%, rgba(255,255,255,.08));
  pointer-events: none;
  z-index: 1;
}

.stage-grid {
  position: absolute;
  inset: 26px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  align-items: end;
  z-index: 2;
}

.hero-art {
  min-height: 100%;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,0)),
    radial-gradient(circle at 30% 24%, rgba(255,255,255,.46), transparent 18%),
    radial-gradient(circle at 72% 62%, rgba(123,180,222,.18), transparent 22%),
    linear-gradient(135deg, rgba(209,161,77,.20), rgba(255,255,255,.06) 40%, rgba(123,180,222,.20));
  border: 1px solid rgba(255,255,255,.34);
}

.hero-art::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: 20px;
  top: 22px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.8), rgba(255,255,255,.08) 42%, transparent 70%);
  filter: blur(6px);
}

.hero-art::after {
  content: "";
  position: absolute;
  left: 40px;
  bottom: 34px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(209,161,77,.3), rgba(209,161,77,.02) 56%, transparent 72%);
  filter: blur(10px);
  animation: orbPulse 6s ease-in-out infinite;
}

@keyframes orbPulse {
  0%,100% { transform: scale(1); opacity: .9; }
  50% { transform: scale(1.08); opacity: .6; }
}

.hero-gridlines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .14;
  background-image:
    linear-gradient(rgba(255,255,255,.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.6) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 78%);
}

.floating-pills {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.float-pill {
  position: absolute;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(255,255,255,.44);
  box-shadow: var(--shadow-soft);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 900;
  color: #607080;
  animation: levitate 7s ease-in-out infinite;
}

.float-pill.one { left: 26px; top: 26px; }
.float-pill.two { right: 84px; top: 86px; animation-delay: -2s; }
.float-pill.three { left: 50%; top: 18px; transform: translateX(-50%); animation-delay: -4s; }

@keyframes levitate {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.cross-light {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.cross-light::before,
.cross-light::after {
  content: "";
  position: absolute;
  background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.14));
  box-shadow: 0 0 40px rgba(255,255,255,.24);
  border-radius: 999px;
}

.cross-light::before {
  width: 18px;
  height: 220px;
}

.cross-light::after {
  width: 120px;
  height: 18px;
  top: calc(50% - 45px);
}

.hero-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  height: 100%;
}

.hero-line {
  padding: 6px 0 18px;
  border-bottom: 1px solid rgba(17,24,39,.08);
}

.hero-line:last-child { border-bottom: 0; padding-bottom: 0; }

.hero-line small {
  display: block;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 11px;
  color: #728195;
  font-weight: 900;
  margin-bottom: 6px;
}

.hero-line strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -.06em;
}

.hero-line p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.74;
}

.section {
  padding: 58px 0;
  position: relative;
  z-index: 3;
}

.section-title h2 {
  margin: 14px 0 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: .97;
  letter-spacing: -.075em;
  max-width: 920px;
}

.section-title p {
  margin-top: 18px;
  max-width: 780px;
  font-size: 17px;
  line-height: 1.82;
  color: var(--muted);
}

.quote-main {
  padding: 36px 0 10px;
  position: relative;
}

.quote-main h3 {
  margin: 16px 0 0;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: .95;
  letter-spacing: -.09em;
  max-width: 860px;
}

.quote-main p {
  margin: 18px 0 0;
  max-width: 580px;
  font-size: 16px;
  line-height: 1.84;
  color: var(--muted);
}

.quote-wave {
  position: relative;
  padding: 28px 0 0;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  overflow: hidden;
}

.quote-wave-track {
  display: inline-flex;
  gap: 16px;
  min-width: max-content;
  animation: ribbon 26s linear infinite;
}

.wave-pill {
  min-width: 280px;
  padding: 18px 20px;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.wave-pill strong {
  color: var(--ink);
  display: block;
  font-size: 16px;
  letter-spacing: -.03em;
  margin-bottom: 4px;
}

.quote-side {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
  padding-top: 24px;
}

.text-cloud {
  position: relative;
  padding-left: 12px;
}

.text-cloud::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, rgba(209,161,77,.4), rgba(123,180,222,.4));
  border-radius: 999px;
}

.text-cloud h3 {
  margin: 16px 0 0;
  font-size: 2rem;
  letter-spacing: -.06em;
  line-height: .98;
}

.text-cloud p {
  margin: 12px 0 0;
  max-width: 360px;
  font-size: 15px;
  line-height: 1.82;
  color: var(--muted);
}

.announcements-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-right: 20px;
}

.announcements-copy h2 {
  margin: 16px 0 0;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: .95;
  letter-spacing: -.08em;
  max-width: 560px;
}

.announcements-copy p {
  margin: 18px 0 0;
  max-width: 520px;
  font-size: 17px;
  line-height: 1.84;
  color: var(--muted);
}

.announcement-list {
  display: grid;
  gap: 24px;
}

.announcement-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 18px;
  align-items: center;
  position: relative;
  --sx: 50%;
  --sy: 50%;
}

.announcement-row::before {
  content: "";
  position: absolute;
  inset: -8px;
  background: radial-gradient(circle at var(--sx) var(--sy), rgba(255,255,255,.22), transparent 30%);
  pointer-events: none;
  opacity: .65;
}

.announcement-thumb {
  height: 180px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-soft);
}

.announcement-thumb::before {
  content: "";
  position: absolute;
  inset: -60% auto -60% -20%;
  width: 40%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.38), transparent);
  transform: rotate(18deg) translateX(-220%);
  transition: transform .9s ease;
  z-index: 2;
}

.announcement-row:hover .announcement-thumb::before {
  transform: rotate(18deg) translateX(620%);
}

.announcement-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s ease;
  filter: saturate(1.06) contrast(1.02);
  will-change: transform;
}

.announcement-row:hover .announcement-thumb img { transform: scale(1.08); }

.announcement-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,.04), rgba(15,23,42,.34));
}

.announcement-text small {
  display: block;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #728195;
  font-weight: 900;
}

.announcement-text h3 {
  margin: 8px 0 0;
  font-size: 2rem;
  letter-spacing: -.06em;
  line-height: .98;
}

.announcement-text p {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.82;
  color: var(--muted);
  max-width: 500px;
}

.meeting-burst {
  position: relative;
  padding: 10px 0;
}

.meeting-burst h2 {
  margin: 0;
  font-size: clamp(4.2rem, 8vw, 7.4rem);
  line-height: .88;
  letter-spacing: -.10em;
  max-width: 760px;
  position: relative;
}

.meeting-burst h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 120px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  opacity: .35;
  animation: linePulse 3s ease-in-out infinite;
}

@keyframes linePulse {
  0%,100% { width: 120px; opacity: .35; }
  50% { width: 180px; opacity: .55; }
}

.meeting-burst p {
  margin: 18px 0 0;
  max-width: 500px;
  font-size: 16px;
  line-height: 1.84;
  color: var(--muted);
}

.meeting-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.meeting-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-top: 20px;
}

.meeting-note {
  padding-left: 20px;
  position: relative;
  transition: transform var(--ease);
}

.meeting-note:hover { transform: translateX(6px); }

.meeting-note::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, rgba(209,161,77,.55), rgba(123,180,222,.45));
  border-radius: 999px;
}

.meeting-note strong {
  display: block;
  font-size: 20px;
  letter-spacing: -.05em;
  line-height: 1;
}

.meeting-note p {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.82;
  color: var(--muted);
  max-width: 420px;
}

.location-copy .kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.kpi {
  padding: 0;
}

.kpi strong {
  display: block;
  font-size: 30px;
  letter-spacing: -.05em;
  line-height: .98;
}

.kpi span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.72;
  color: var(--muted);
}

.map-shell {
  min-height: 680px;
  position: relative;
}

.map-blob {
  position: absolute;
  inset: 0;
  border-radius: 42% 58% 50% 50% / 38% 34% 66% 62%;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.map-frame {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-sticker {
  position: absolute;
  left: 20px;
  bottom: 20px;
  max-width: 340px;
  padding: 18px 18px 20px;
  border-radius: 26px;
  background: rgba(255,255,255,.84);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  z-index: 2;
  backdrop-filter: blur(18px);
}

.map-sticker strong {
  display: block;
  font-size: 16px;
  letter-spacing: -.02em;
  margin-bottom: 6px;
}

.map-sticker span {
  display: block;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.contact-copy,
.form-shell,
.faq-copy,
.faq-shell,
.footer-shell {
  position: relative;
}

.contact-copy p,
.faq-copy p,
.footer-copy {
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.82;
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.contact-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}

.contact-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(209,161,77,.22), rgba(123,180,222,.16));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  font-size: 11px;
  font-weight: 900;
  margin-top: 2px;
}

.form-shell {
  padding: 10px 0 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 18px;
}

.field,
.field-full {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.field-full { grid-column: 1 / -1; }

.label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 900;
  color: #6e7b8f;
}

.input,
.select,
.textarea {
  width: 100%;
  padding: 0 0 14px;
  border: 0;
  border-bottom: 1px solid rgba(15,23,42,.12);
  background: transparent;
  color: var(--ink);
  outline: none;
  transition: var(--ease);
  border-radius: 0;
}

.input::placeholder,
.textarea::placeholder { color: #94a3b8; }

.input:focus,
.select:focus,
.textarea:focus {
  border-bottom-color: rgba(209,161,77,.9);
  box-shadow: inset 0 -1px 0 rgba(209,161,77,.9);
}

.textarea { min-height: 120px; resize: vertical; }

.form-actions {
  margin-top: 24px;
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 190px;
  padding: 15px 22px;
  border-radius: 20px;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .2s ease, background .2s ease;
  font-weight: 900;
  letter-spacing: -.02em;
  position: relative;
  overflow: hidden;
  border: 0;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--x,50%) var(--y,50%), rgba(255,255,255,.22), transparent 38%);
  opacity: 0;
  transition: opacity .2s ease;
  pointer-events: none;
}

.btn:hover::after { opacity: 1; }
.btn:hover { transform: translateY(-3px); }

.btn-primary {
  background: linear-gradient(135deg, #0f172a, #213349);
  color: #fff;
  box-shadow: 0 14px 30px rgba(15,23,42,.16);
}

.btn-secondary {
  background: rgba(255,255,255,.84);
  border: 1px solid var(--line);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.status {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -.01em;
}

.faq-shell { padding-top: 8px; }
.faq-list { display: grid; gap: 4px; }

.faq-item {
  border-bottom: 1px solid rgba(15,23,42,.10);
  padding: 4px 0;
}

.faq-item button {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 16px 0;
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
}

.faq-item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .34s ease, padding .28s ease;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.82;
  padding-right: 18px;
}

.faq-item.active .faq-item-body {
  max-height: 260px;
  padding: 0 18px 16px 0;
}

.faq-plus {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(15,23,42,.06);
  transition: var(--ease);
  flex: none;
  font-weight: 900;
}

.faq-item.active .faq-plus {
  transform: rotate(45deg);
  background: rgba(209,161,77,.18);
}

.footer {
  padding: 42px 0 76px;
}

.footer-big {
  font-size: clamp(2.4rem, 5vw, 4.9rem);
  line-height: .95;
  letter-spacing: -.08em;
  max-width: 760px;
}

.footer-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
}

.footer-card {
  padding: 0;
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  border-bottom: 1px solid rgba(15,23,42,.10);
  padding-bottom: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(34px) scale(.985);
  filter: blur(8px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1), filter .8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.reveal-left {
  transform: translateX(-38px) scale(.99);
}

.reveal-right {
  transform: translateX(38px) scale(.99);
}

.reveal-left.visible,
.reveal-right.visible {
  transform: translateX(0) scale(1);
}

.magnetic { will-change: transform; }
.parallax { will-change: transform; }

@media (max-width: 1180px) {
  .hero-grid,
  .quote-grid,
  .announcements-grid,
  .location-grid,
  .contact-grid,
  .faq-grid,
  .footer-grid,
  .form-grid,
  .location-copy .kpis {
    grid-template-columns: 1fr;
  }

  .hero-stage { min-height: auto; }
  .stage {
    position: relative;
    inset: auto;
    min-height: auto;
  }
  .stage-grid {
    position: relative;
    inset: auto;
    grid-template-columns: 1fr;
  }
  .hero-art { min-height: 320px; }
  .ghost-word,
  .vertical-mark { display: none; }
  .announcement-row { grid-template-columns: 1fr; }
  .announcement-thumb { height: 240px; }
}

@media (max-width: 760px) {
  .container { width: min(var(--max), calc(100% - 20px)); }
  .headline { font-size: clamp(2.9rem, 12vw, 5rem); }
  .lead,
  .section-title p,
  .contact-copy p,
  .faq-copy p,
  .footer-copy,
  .announcements-copy p { font-size: 16px; }
  .section { padding: 34px 0; }
  .btn { width: 100%; }
  .map-shell { min-height: 460px; }
  .map-blob { border-radius: 34px; }
  .cursor-glow { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .cursor-glow { display: none !important; }
}
.social-links {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: none;
  transition: all 0.25s ease;
}

.social-link i {
  font-size: 18px;
}

/* Colores de apps */
.social-link.instagram {
  color: #E1306C;
}

.social-link.facebook {
  color: #1877F2;
}

.social-link.whatsapp {
  color: #25D366;
}

.social-link.youtube {
  color: #FF0000;
}

.social-link:hover {
  transform: translateY(-2px) scale(1.04);
  background: #fff;
}
@media (max-width: 760px) {
  .topbar-inner {
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
  }

  .brand {
    width: 100%;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }

  .brand small {
    font-size: 10px;
    letter-spacing: .12em;
  }

  .brand strong {
    font-size: 14px;
    line-height: 1.2;
  }

  .nav {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 8px;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    flex: 0 0 auto;
    padding: 9px 12px;
    font-size: 13px;
    white-space: nowrap;
  }

  .nav .cta {
    padding-inline: 14px;
  }

  .social-inner {
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
  }

  .social-title {
    width: 100%;
    font-size: 13px;
  }

  .social-links {
    gap: 8px;
  }

  .social-link {
    width: 40px;
    height: 40px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .tag-ribbon {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 22px 0 8px;
  }

  .hero-grid {
    gap: 18px;
  }

  .headline {
    margin-top: 12px;
    font-size: clamp(2.3rem, 10vw, 3.4rem);
    line-height: .92;
    letter-spacing: -.08em;
  }

  .headline .line {
    margin-top: 12px;
    font-size: clamp(2.3rem, 10vw, 3.4rem);
    line-height: .92;
    letter-spacing: -1px;
  }

  .lead {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.65;
  }

  .pill {
    padding: 8px 12px;
    font-size: 10px;
    letter-spacing: .1em;
  }

  .hero-tags {
    gap: 8px;
    margin-top: 18px;
  }

  .cta-row {
    gap: 10px;
    margin-top: 18px;
  }

  .btn {
    min-width: 0;
    width: 100%;
    padding: 14px 16px;
    font-size: 14px;
  }

  .hero-scroll-cue {
    display: none;
  }

  .stage {
    border-radius: 28px;
  }

  .stage-grid {
    gap: 14px;
    inset: 16px;
  }

  .hero-art {
    min-height: 220px;
    border-radius: 22px;
  }

  .hero-line strong {
    font-size: 1.4rem;
  }

  .hero-line p {
    font-size: 13px;
    line-height: 1.6;
  }

  .section {
    padding: 28px 0;
  }

  .section-title h2,
  .announcements-copy h2,
  .quote-main h3,
  .text-cloud h3 {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
    line-height: 1;
    letter-spacing: -.05em;
  }

  .meeting-burst h2 {
    font-size: clamp(2.8rem, 14vw, 4.4rem);
  }

  .announcement-thumb {
    height: 200px;
  }

  .map-shell {
    min-height: 320px;
  }

  .map-sticker {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
    padding: 14px;
    border-radius: 18px;
  }
}
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img,
video,
iframe {
  max-width: 100%;
  height: auto;
}

.container,
.section,
.hero,
.hero-grid,
.stage,
.stage-grid,
.quote-grid,
.community-grid,
.announcements-grid,
.meeting-grid,
.location-grid,
.footer-grid {
  min-width: 0;
}

.hero-grid > *,
.stage-grid > *,
.quote-grid > *,
.community-grid > *,
.announcements-grid > *,
.meeting-grid > *,
.location-grid > *,
.footer-grid > * {
  min-width: 0;
}
@media (max-width: 760px) {
  .container {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-grid,
  .quote-grid,
  .community-grid,
  .announcements-grid,
  .meeting-grid,
  .location-grid,
  .footer-grid,
  .stage-grid {
    grid-template-columns: 1fr !important;
  }

  .headline,
  .section-title h2,
  .quote-main h3,
  .announcements-copy h2,
  .text-cloud h3,
  .meeting-burst h2 {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .pill,
  .tag,
  .chip,
  .badge,
  .card,
  .quote-card,
  .info-card {
    max-width: 100%;
  }
}
#canvas-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.footer {
  padding: 56px 0 28px;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.34);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.footer-conventional {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: start;
}

.footer-brand h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--ink);
}

.footer-brand p {
  margin: 8px 0 0;
  font-size: 15px;
  font-weight: 700;
  color: #5e6c7d;
}

.footer-brand span {
  display: block;
  margin-top: 14px;
  max-width: 460px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.footer-col h4 {
  margin: 0 0 14px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #6b7788;
}

.footer-col a,
.footer-col p {
  display: block;
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
}

.footer-col a {
  transition: opacity .2s ease, transform .2s ease;
}

.footer-col a:hover {
  opacity: .7;
  transform: translateX(2px);
}

.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: none;
  transition: transform .2s ease, background .2s ease;
}

.footer-socials a:hover {
  transform: translateY(-2px);
  background: #fff;
}

.footer-socials .fa-instagram { color: #E1306C; }
.footer-socials .fa-facebook-f { color: #1877F2; }
.footer-socials .fa-whatsapp { color: #25D366; }
.footer-socials .fa-youtube { color: #FF0000; }

.footer-bottom {
  padding-top: 18px;
  border-top: 1px solid rgba(15,23,42,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.footer-bottom a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.06);
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  transition: transform .2s ease, background .2s ease;
}

.footer-bottom a:hover {
  transform: translateY(-2px);
  background: #fff;
}

@media (max-width: 980px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .footer {
    padding: 40px 0 24px;
  }

  .footer-brand h3 {
    font-size: 24px;
  }

  .footer-brand span,
  .footer-col a,
  .footer-col p {
    font-size: 14px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom a {
    width: 100%;
  }
}

/*.map-shell {
  min-height: 680px;
  position: relative;
}

.map-mountain-wrap {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-mountain-mask {
  position: relative;
  width: min(100%, 760px);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  isolation: isolate;
  height: 500px;

  -webkit-mask-image: url("../images/ttt.png");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;

  mask-image: url("../images/ttt.png");
  mask-repeat: no-repeat;
  mask-position: initial;
  mask-size: contain;

  filter: drop-shadow(0 18px 40px rgba(0,0,0,0.14));
}

.map-mountain-mask::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(0,0,0,0.08)),
    radial-gradient(circle at 50% 45%, rgba(255,255,255,0.08), transparent 42%);
  z-index: 2;
}

.map-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 1;
  filter: grayscale(0.10) contrast(1.02) saturate(0.82) brightness(0.96);
}

.map-sticker {
  position: absolute;
  left: 24px;
  bottom: 24px;
  max-width: 360px;
  padding: 18px 18px 20px;
  border-radius: 24px;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  z-index: 4;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.map-sticker strong {
  display: block;
  font-size: 17px;
  letter-spacing: -.02em;
  margin-bottom: 6px;
  color: var(--ink);
}

.map-sticker span {
  display: block;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.map-open-link {
  position: absolute;
  right: 24px;
  bottom: 28px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  transition: var(--ease);
}

.map-open-link:hover {
  transform: translateY(-2px);
  background: #fff;
}*/
.hero-art {
  position: relative;
}

.hero-logo-bottom {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: 65%;
  max-width: 260px;
  height: auto;
  object-fit: contain;
  z-index: 4;
  border-radius: 20px;
}