@import url("https://fonts.googleapis.com/css2?family=Antonio:wght@400;500;600;700&display=swap");

:root {
  --bg: #ffffff;
  --bg-soft: #fafafa;
  --ink: #141414;
  --muted: #5c5c5c;
  --line: #e8e8e8;
  --brand: #1f1f1f;
  --brand-dark: #000000;
  --white: #fff;
  --ok: #2f6b3d;
  --font-main: Futura, "Futura PT", "Avenir Next", Avenir, "Trebuchet MS", Arial, sans-serif;
  --font-heading: "Antonio", Futura, "Futura PT", "Avenir Next", Avenir, Arial, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-main);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.42;
  font-size: 15px;
}

h1, h2, h3, h4, h5, h6,
.brand-text strong,
.moving-banner-title,
.group-row-label,
.calendar-text,
.offsite-ribbon,
.brand-pill,
.eyebrow {
  font-family: var(--font-heading);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { width: min(1080px, 91%); margin: 0 auto; }
.wrap-wide { width: min(1380px, 96%); margin: 0 auto; }

.topbar {
  background: #ffffff;
  color: #292929;
  font-size: .82rem;
  border-bottom: 1px solid var(--line);
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .55rem 0;
  gap: .8rem;
  flex-wrap: wrap;
}
.topbar a { color: #292929; opacity: .95; }

.nav {
  position: relative;
  z-index: 40;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .55rem 0;
  gap: 1rem;
  position: relative;
  z-index: 20;
}
.brand {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-weight: 700;
  position: relative;
  margin-bottom: 0;
}
.brand img {
  width: 112px;
  height: auto;
  border-radius: 0;
  object-fit: contain;
  box-shadow: none;
  background: transparent;
}
.brand-text {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.05;
  color: #111;
}
.brand-text strong {
  font-size: 1.48rem;
  letter-spacing: .09em;
  font-weight: 700;
}
.brand-text small {
  font-size: .82rem;
  letter-spacing: .02em;
  text-transform: none;
  margin-top: .3rem;
  width: 100%;
  display: block;
  color: #4b4b4b;
  font-weight: 500;
}
.menu { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.menu a { font-size: .95rem; }
.ig-link {
  display: inline-flex;
  align-items: center;
  gap: .36rem;
  padding: .2rem;
  border-radius: 8px;
}
.ig-link svg {
  width: 24px;
  height: 24px;
}
.ig-link:hover {
  background: #f3f3f3;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid #d7d7d7;
  border-radius: 10px;
  background: #fff;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #202020;
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-block;
  border: 1px solid var(--brand);
  border-radius: 6px;
  padding: .6rem .92rem;
  font-weight: 600;
  transition: .2s ease;
}
.btn.primary {
  background: var(--brand);
  color: var(--white);
}
.btn.primary:hover { background: var(--brand-dark); border-color: var(--brand-dark); }
.btn.ghost:hover { background: #f1f1f1; }
.btn-date-ideal {
  display: inline-flex;
  align-items: center;
  gap: .38rem;
  padding: .45rem .64rem;
  font-size: .82rem;
  line-height: 1;
  background: #ffffff;
  color: #171717;
  border: 1px solid #e2e2e2;
  box-shadow: 0 6px 14px rgba(0, 0, 0, .07);
}
.btn-date-ideal svg {
  width: 14px;
  height: 14px;
  color: #fff;
  background: #111;
  border-radius: 6px;
  padding: .35rem;
  box-sizing: content-box;
}
.btn.primary.btn-date-ideal,
.btn.primary.btn-date-ideal:hover {
  background: #fff;
  color: #171717;
  border-color: #e2e2e2;
}
.btn-date-ideal:hover {
  background: #fff;
  color: #111;
  border-color: #d6d6d6;
  box-shadow: 0 11px 20px rgba(0, 0, 0, .12);
  transform: translateY(-1px);
}

.btn-help-decide {
  padding: .45rem .62rem;
  gap: .3rem;
  white-space: nowrap;
}

.btn-help-decide span {
  font-size: .81rem;
  letter-spacing: .01em;
}
.cta .cta-soft-btn {
  flex-shrink: 0;
}
.cta .cta-soft-btn span {
  font-size: .92rem;
}
.cta.cta-buttons-only {
  justify-content: center;
  gap: 1.05rem;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: .2rem 0;
}
.cta.cta-buttons-only .btn-date-ideal {
  padding: .62rem .9rem;
  border-radius: 10px;
}
.cta.cta-buttons-only .btn-date-ideal svg {
  width: 15px;
  height: 15px;
  padding: .38rem;
}

.hero-banner {
  position: relative;
  min-height: 34vh;
  overflow: hidden;
}
.hero-banner img {
  width: 100%;
  height: 34vh;
  object-fit: cover;
  object-position: center center;
  animation: slowZoom 18s ease-in-out infinite alternate;
}
.hero-banner .hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .9s ease;
  pointer-events: none;
}
.hero-banner .hero-slide.is-active {
  opacity: 1;
}
.hero-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 14px;
  z-index: 6;
  display: inline-flex;
  gap: 8px;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, .55);
  box-shadow: 0 1px 6px rgba(0, 0, 0, .35);
}
.hero-dot.is-active {
  width: 24px;
  background: #fff;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: end;
  padding-bottom: 3.2rem;
  color: #111;
  text-shadow: 0 1px 10px rgba(255, 255, 255, .25);
}
.eyebrow {
  display: inline-block;
  background: transparent;
  border: 0;
  color: #111;
  padding: 0;
  border-radius: 0;
  font-weight: 600;
  font-size: .78rem;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.02;
  margin: .8rem 0;
}
.hero-overlay h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.6vw, 3.8rem);
  max-width: 700px;
  margin: .8rem 0;
  color: #111;
  font-weight: 700;
}
.hero-overlay p { color: #232323; margin: 0 0 1.15rem; max-width: 650px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; }

.section { padding: 2.8rem 0; }
.section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 2.4vw, 1.95rem);
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1.12;
  text-transform: uppercase;
  margin: 0 0 .45rem;
}
.section-intro { color: var(--muted); margin: 0 0 1rem; }

.place-intro {
  text-align: center;
  max-width: 800px;
  padding-top: .65rem;
  padding-bottom: .7rem;
}
.place-intro h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 2.4vw, 1.95rem);
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1.12;
  text-transform: uppercase;
  margin-bottom: .45rem;
  color: #333;
}
.place-intro p {
  font-family: var(--font-main);
  margin: 0 auto;
  color: #4b4b4b;
  line-height: 1.34;
  font-size: .94rem;
  max-width: 760px;
}

.event-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .85rem;
}
.event-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  transition: transform .28s ease, box-shadow .28s ease;
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.event-card img { width: 100%; height: 300px; object-fit: cover; object-position: center center; transition: transform .35s ease; }
.event-card .body { padding: .62rem .62rem; text-align: center; }
.event-card .body h3 { margin: 0; font-size: .82rem; letter-spacing: .08em; color: #5a5a5a; text-transform: uppercase; }
.event-card.no-label .body { display: none; }
.event-card.no-label .body h3 {
  display: none;
}
.grouped-row {
  position: relative;
  padding-bottom: 50px;
}
.group-row-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border: 1px solid #efefef;
  border-radius: 0 0 8px 8px;
  text-align: center;
  padding: .62rem .62rem;
  font-size: .9rem;
  letter-spacing: .1em;
  color: #5a5a5a;
  text-transform: uppercase;
  font-weight: 600;
}
.event-card:hover { transform: translateY(-3px) scale(1.01); box-shadow: 0 10px 20px rgba(0, 0, 0, .12); z-index: 2; }
.event-card:hover img { transform: scale(1.08); }
.event-card.graduation { grid-column: span 1; }
.offsite-ribbon {
  position: absolute;
  top: 20px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  background: #111;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .1em;
  line-height: 1.25;
  text-transform: uppercase;
  text-align: center;
  padding: .45rem 1rem;
  border: 1px solid #2a2a2a;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .24);
  z-index: 3;
}
.event-program {
  display: grid;
  gap: .85rem;
}
.event-row-title {
  margin: .25rem 0 0;
  font-size: .84rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #4d4d4d;
}
.event-row {
  display: grid;
  gap: .85rem;
}
.event-row-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.event-row-full {
  grid-template-columns: 1fr;
}
.event-row-full .event-card img {
  height: 340px;
}
.event-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 42px;
  display: inline-flex;
  gap: .32rem;
  z-index: 4;
}
.event-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, .66);
  cursor: pointer;
  padding: 0;
}
.event-dot.is-active {
  background: #fff;
  width: 18px;
}

.ig-feed {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .35rem;
}
.ig-item {
  display: block;
  border: 1px solid #e6e6e6;
  overflow: hidden;
  background: #f7f7f7;
  aspect-ratio: 1 / 1;
}
.ig-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.ig-item:hover img {
  transform: scale(1.05);
}
.ig-msg {
  color: #666;
  margin: 0;
}

.moving-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: .6rem 0 2rem;
}
.moving-banner img {
  width: 100%;
  height: 36vh;
  object-fit: cover;
  object-position: center center;
  animation: panBanner 20s ease-in-out infinite alternate;
}
.moving-banner-title {
  position: absolute;
  left: 50%;
  bottom: 1.15rem;
  transform: translateX(-50%);
  color: #fff;
  font-size: clamp(1.1rem, 2.4vw, 1.8rem);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-shadow: 0 6px 22px rgba(0, 0, 0, .62);
  text-align: center;
  width: min(92%, 1000px);
}

.calendar-callout {
  display: inline-flex;
  align-items: center;
  gap: .68rem;
  border: 0;
  border-radius: 10px;
  padding: .72rem .95rem;
  background: #fff;
  color: #111;
  text-decoration: none;
  box-shadow: 0 7px 16px rgba(0, 0, 0, .08);
  transition: transform .18s ease, box-shadow .18s ease;
}
.calendar-callout-wrap {
  text-align: center;
  padding-top: 1.15rem;
  padding-bottom: 1.15rem;
}
.calendar-callout:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .14);
}
.calendar-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #111;
  color: #fff;
  flex-shrink: 0;
}
.calendar-icon svg {
  width: 24px;
  height: 24px;
}
.calendar-text {
  font-weight: 800;
  letter-spacing: .04em;
  font-size: .88rem;
}

.features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
}
.feature {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-soft);
  padding: .95rem;
}
.feature strong { display: block; margin-bottom: .2rem; }

.services-showcase {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
}
.svc-item {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 1rem;
  align-items: center;
}
.svc-item.reverse {
  grid-template-columns: 1.1fr .9fr;
}
.svc-item.reverse img {
  order: 2;
}
.svc-item.reverse .svc-copy {
  order: 1;
}
.svc-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center center;
  border-radius: 8px;
  border: 1px solid #dfdfdf;
}
.svc-copy h3 {
  margin: 0 0 .55rem;
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: .01em;
}
.svc-copy p {
  margin: 0 0 .4rem;
  color: #3e3e3e;
  line-height: 1.5;
}

.cta {
  background: #1f1f1f;
  color: #ffffff;
  border-radius: 8px;
  padding: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .8rem;
  flex-wrap: wrap;
}
.cta p { margin: .2rem 0 0; color: #d6d6d6; }

.mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .95rem;
}
.mosaic img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  transition: transform .35s ease;
}
.mosaic img:hover {
  transform: scale(1.05);
}

.photo-story {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: .35rem;
}
.photo-story img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 6px;
  border: 1px solid #e2e2e2;
  transition: transform .32s ease;
  cursor: zoom-in;
}
.photo-story img:hover {
  transform: scale(1.03);
}
.photo-story .ps-1,
.photo-story .ps-2,
.photo-story .ps-3 {
  min-height: 230px;
  grid-column: span 2;
}
.photo-story .ps-4,
.photo-story .ps-5 {
  min-height: 320px;
  grid-column: span 3;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: .9rem;
}
.panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: .95rem;
}
.contact-list { margin: .6rem 0 0; padding: 0; list-style: none; color: var(--muted); }
.contact-list li { margin-bottom: .42rem; }

.advisor-hero {
  padding-top: 1.8rem;
  padding-bottom: .55rem;
}
.advisor-hero h1 {
  margin: 0 0 .28rem;
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  line-height: 1.08;
  font-weight: 700;
}
.advisor-hero .section-intro {
  margin-bottom: .95rem;
  font-size: .98rem;
}
.advisor-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: .95rem;
}
.advisor-chips span {
  border: 1px solid #dedede;
  border-radius: 999px;
  padding: .34rem .66rem;
  font-size: .78rem;
  background: #fff;
  color: #3b3b3b;
  font-weight: 600;
}
.advisor-flow {
  padding-top: 1rem;
  padding-bottom: 1.4rem;
}
.advisor-flow h2 {
  margin-bottom: .35rem;
}
.advisor-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .8rem;
}
.advisor-steps article {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .9rem .95rem;
  background: #fff;
}
.advisor-steps strong {
  display: block;
  margin-bottom: .35rem;
  font-size: .94rem;
}
.advisor-steps p {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.38;
}
.advisor-grid .panel.advisor-card {
  border-radius: 10px;
  background: #fff;
}
.advisor-soon-banner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .38rem .68rem;
  margin: 0 0 .9rem;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid #d7d7d7;
  color: #474747;
  background: #fff;
}
.advisor-card {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.advisor-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, .08);
  border-color: #d8d8d8;
}
.advisor-card-disabled {
  cursor: default;
}
.advisor-card-disabled:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--line);
}
.advisor-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .6rem;
  margin-bottom: .7rem;
}
.advisor-card-head strong {
  font-size: .94rem;
}
.advisor-card-head span {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .2rem .45rem;
  border-radius: 999px;
  border: 1px solid #d6e8da;
  color: #2f6b3d;
  background: #f6fcf7;
}
.advisor-summary-list li {
  padding-left: .85rem;
  position: relative;
  margin-bottom: .3rem;
}
.advisor-summary-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #7b7b7b;
  position: absolute;
  left: 0;
  top: .48rem;
}
.advisor-open-link {
  display: inline-block;
  margin-top: .35rem;
  font-size: .74rem;
  font-weight: 700;
  color: #1c1c1c;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.advisor-open-link-disabled {
  color: #696969;
}
.advisor-summary-list .muted {
  display: block;
  text-align: justify;
  line-height: 1.28;
  font-size: .88rem;
}
.advisor-cta {
  border-radius: 12px;
}
.advisor-detail-head {
  padding-bottom: 1.3rem;
}
.advisor-back-link {
  display: inline-block;
  font-size: .86rem;
  color: #4e4e4e;
  margin-bottom: .55rem;
  font-weight: 700;
}
.advisor-back-link:hover {
  color: #161616;
}
.advisor-provider-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
}
.advisor-provider-card h3 {
  margin: 0 0 .45rem;
  font-size: 1.08rem;
}
.advisor-provider-card p {
  margin: 0 0 .55rem;
  color: #444;
}
.advisor-provider-card ul {
  margin: 0;
  padding-left: 1.05rem;
  display: grid;
  gap: .28rem;
  color: #3d3d3d;
}

.access-section {
  background: linear-gradient(180deg, #f8f8f8 0%, #f1f1f1 100%);
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}
.access-head h2 {
  margin-bottom: .25rem;
}
.access-head p {
  margin: 0 0 .9rem;
  color: #575757;
}
.access-grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: .8rem;
  align-items: stretch;
}
.access-map {
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  min-height: 360px;
}
.access-map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}
.access-routes {
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  background: #fff;
  padding: .72rem;
  display: grid;
  gap: .5rem;
  align-content: start;
}
.route-btn {
  display: block;
  border: 1px solid #dfdfdf;
  border-radius: 8px;
  padding: .62rem .68rem;
  background: #fff;
  color: #242424;
}
.route-sep {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  transform: translateY(-.02em);
}
.route-btn:hover {
  background: #f7f7f7;
}
.route-cta {
  display: block;
  margin-top: .3rem;
  border: 1px solid #25d366;
  border-radius: 8px;
  padding: .68rem .7rem;
  background: #25d366;
  color: #fff;
  text-align: center;
  font-weight: 700;
}

footer {
  border-top: 1px solid var(--line);
  margin-top: 1.4rem;
  padding: .85rem 0 1.25rem;
  color: #776f65;
  font-size: .86rem;
}
footer .wrap {
  display: flex;
  gap: .7rem;
  flex-wrap: wrap;
  align-items: center;
}
footer a {
  color: #1f1f1f;
  text-decoration: underline;
  text-underline-offset: 2px;
}
footer .ig-footer {
  text-decoration: none;
}

.guide-open {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  border: 1px solid #25d366;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  width: 56px;
  height: 56px;
  padding: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .25);
  transition: transform .16s ease, box-shadow .16s ease;
}
.guide-open svg {
  width: 30px;
  height: 30px;
}
.guide-open:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 26px rgba(0, 0, 0, .3);
}
.guide-panel {
  position: fixed;
  right: 20px;
  bottom: 72px;
  z-index: 80;
  width: min(360px, calc(100vw - 28px));
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, .18);
  overflow: hidden;
}
.guide-head {
  background: #1f1f1f;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .6rem;
  padding: .75rem .85rem;
}
.guide-head button {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 1.15rem;
  cursor: pointer;
}
.guide-body {
  padding: .85rem;
  display: grid;
  gap: .55rem;
}
.guide-msg {
  margin: 0;
  color: #333;
  font-size: .9rem;
  line-height: 1.35;
}
.guide-options {
  display: grid;
  gap: .45rem;
}
.guide-option {
  border: 1px solid #d8d8d8;
  background: #fff;
  color: #202020;
  border-radius: 8px;
  padding: .55rem .6rem;
  text-align: left;
  cursor: pointer;
}
.guide-option:hover {
  background: #f7f7f7;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(0, 0, 0, .86);
  display: grid;
  place-items: center;
  padding: 18px;
}
.lightbox[hidden] {
  display: none;
}
.lightbox img {
  max-width: min(92vw, 1320px);
  max-height: 82vh;
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .35);
}
.lightbox-close {
  position: fixed;
  top: 16px;
  right: 20px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .55);
  background: rgba(0, 0, 0, .4);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox-caption {
  color: #fff;
  margin: .55rem 0 0;
  font-size: .92rem;
  text-align: center;
}

@media (max-width: 900px) {
  .brand { margin-bottom: 0; gap: .4rem; }
  .brand img { width: 86px; }
  .brand-text strong { font-size: .98rem; }
  .brand-text small { font-size: .64rem; letter-spacing: .01em; }
  .topbar .wrap {
    justify-content: center;
    text-align: center;
    gap: .25rem .75rem;
  }
  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }
  .menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    background: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 12px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, .12);
    padding: .7rem;
    gap: .45rem;
    z-index: 60;
  }
  .menu.open {
    display: grid;
  }
  .menu a {
    display: block;
    width: 100%;
    padding: .62rem .7rem;
    border: 1px solid #ececec;
    border-radius: 8px;
    background: #fff;
  }
  .menu .ig-link {
    justify-content: center;
  }
  .menu .btn.primary {
    text-align: center;
    border-color: #1f1f1f;
  }
  .hero-banner img { height: 28vh; }
  .hero-banner { min-height: 28vh; }
  .hero-overlay { padding-bottom: 2rem; }
  .event-gallery { grid-template-columns: 1fr; }
  .event-row-3 { grid-template-columns: 1fr; }
  .advisor-steps { grid-template-columns: 1fr; }
  .advisor-provider-grid { grid-template-columns: 1fr; }
  .grouped-row { padding-bottom: 0; }
  .group-row-label { position: static; margin-top: -.2rem; border-radius: 8px; }
  .event-row-full .event-card img { height: 280px; }
  .event-card img { height: 280px; }
  .calendar-callout {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .calendar-text {
    font-size: .84rem;
  }
  .ig-feed { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .features { grid-template-columns: 1fr; }
  .services-showcase {
    gap: .85rem;
  }
  .svc-item,
  .svc-item.reverse {
    grid-template-columns: 1fr;
    gap: .55rem;
  }
  .svc-item.reverse img,
  .svc-item.reverse .svc-copy {
    order: initial;
  }
  .svc-item img {
    height: 220px;
  }
  .svc-copy h3 {
    font-size: 1.35rem;
  }
  .access-grid { grid-template-columns: 1fr; }
  .access-map,
  .access-map iframe { min-height: 300px; }
  .mosaic { grid-template-columns: 1fr; }
  .mosaic img { height: 340px; }
  .photo-story {
    grid-template-columns: 1fr;
  }
  .photo-story .ps-1,
  .photo-story .ps-2,
  .photo-story .ps-3,
  .photo-story .ps-4,
  .photo-story .ps-5 {
    grid-column: auto;
    min-height: 250px;
  }
  .moving-banner img { height: 30vh; }
  .guide-panel {
    right: 10px;
    bottom: 66px;
  }
  .guide-open {
    right: 10px;
    bottom: 12px;
  }
}

@keyframes slowZoom {
  from { transform: scale(1) translateY(0); }
  to { transform: scale(1.12) translateY(-8px); }
}


@keyframes panBanner {
  from { transform: scale(1.06) translateX(-2.2%); }
  to { transform: scale(1.06) translateX(2.2%); }
}
