/* Pixel Clouds Research — static (HTML/CSS/JS) */

:root {
  --stone-900: #1c1917;
  --stone-800: #292524;
  --stone-500: #78716c;
  --stone-200: #e7e5e4;
  --body-bg: #b8c29a;
  --page-article-bg: #f7f7f5;
  --max: 72rem;
  --wide: 90rem;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Bebas Neue", Impact, system-ui, sans-serif;
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  font-family: var(--font-sans);
  color: var(--stone-900);
  background: var(--body-bg);
  overflow-x: hidden;
}

.skip-link {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 200;
  padding: 0.65rem 1rem;
  border-radius: 9999px;
  background: #061a3a;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid #f4d77a;
  outline-offset: 2px;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  opacity: 0.85;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* —— Site header + nav —— */
.site-header {
  position: relative;
  z-index: 50;
  width: 100%;
}

.site-header--transparent {
  position: sticky;
  top: 0;
  left: 0;
  background: transparent;
  padding-top: 0.75rem;
  margin-bottom: calc(-1 * (68px + 0.75rem));
  transition:
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    backdrop-filter 0.25s ease,
    padding-top 0.25s ease;
}

.site-header--transparent.is-scrolled,
.site-header--transparent.nav-open {
  background: rgba(244, 244, 244, 0.92);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-top: 0.625rem;
}

@media (min-width: 640px) {
  .site-header--transparent {
    padding-top: 0.85rem;
    margin-bottom: calc(-1 * (68px + 0.85rem));
  }
}

@media (min-width: 1024px) {
  .site-header--transparent {
    margin-bottom: calc(-1 * (84px + 1.5rem));
  }
}

@media (min-width: 1280px) {
  .site-header--transparent {
    margin-bottom: calc(-1 * (88px + 1.5rem));
  }
}

.site-header--solid {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: rgba(250, 250, 249, 0.95);
  border-bottom: 1px solid rgba(28, 25, 23, 0.1);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .nav-row {
    padding: 0 1.5rem;
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .nav-row {
    padding: 0 2.5rem;
  }
}

.site-header--solid .nav-row {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border-radius: 9999px;
  flex-shrink: 0;
}

.nav-logo {
  display: block;
  width: 68px;
  height: 68px;
  object-fit: contain;
}

@media (min-width: 1024px) {
  .nav-logo {
    width: 84px;
    height: 84px;
  }
}

@media (min-width: 1280px) {
  .nav-logo {
    width: 88px;
    height: 88px;
  }
}

.nav-brand__word {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(28, 25, 23, 0.8);
}

@media (min-width: 640px) {
  .nav-brand__word {
    display: block;
  }
}

.nav-list {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0.25rem 0.5rem;
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.15rem 0;
}

@media (min-width: 1024px) {
  .nav-list {
    display: flex;
  }
}

.nav-list a {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #292524;
  white-space: nowrap;
}

.nav-list a.is-active {
  font-weight: 700;
  color: #1c1917;
}

.nav-sep {
  user-select: none;
  color: rgba(28, 25, 23, 0.25);
  margin: 0 0.65rem;
}

.nav-item {
  position: relative;
}

.nav-item--has-dropdown::after {
  content: "";
  position: absolute;
  left: -0.5rem;
  right: -0.5rem;
  top: 100%;
  height: 0.9rem;
}

.nav-item--has-dropdown > a::after {
  content: "";
  display: inline-block;
  width: 0.35rem;
  height: 0.35rem;
  margin-left: 0.35rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-0.12rem) rotate(45deg);
}

.nav-submenu {
  position: absolute;
  left: 50%;
  top: calc(100% + 0.35rem);
  z-index: 20;
  display: grid;
  min-width: 16rem;
  margin: 0;
  padding: 0.55rem;
  list-style: none;
  border: 1px solid rgba(28, 25, 23, 0.1);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 50px rgba(23, 19, 33, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.nav-item--has-dropdown:hover .nav-submenu,
.nav-item--has-dropdown:focus-within .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-submenu a {
  display: block;
  padding: 0.65rem 0.75rem;
  border-radius: 0.7rem;
  font-size: 12px;
  line-height: 1.25;
  white-space: normal;
}

.nav-submenu a:hover,
.nav-submenu a:focus-visible {
  background: rgba(184, 194, 154, 0.22);
  opacity: 1;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  margin-left: auto;
}

@media (min-width: 640px) {
  .nav-actions {
    gap: 0.75rem;
  }
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 14px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  padding: 0.25rem 0;
  line-height: 1;
  color: #292524;
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

@media (min-width: 640px) {
  .nav-phone {
    display: inline-flex;
  }
}

.nav-phone--brand {
  flex-shrink: 0;
}

.nav-menu-btn {
  display: flex;
  height: 2.5rem;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid rgba(28, 25, 23, 0.15);
  background: transparent;
  color: #1c1917;
  cursor: pointer;
  padding: 0;
}

@media (min-width: 1024px) {
  .nav-menu-btn {
    display: none;
  }
}

.nav-menu-bars {
  display: flex;
  height: 0.6rem;
  width: 1rem;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.nav-menu-bars span {
  display: block;
  height: 2px;
  border-radius: 9999px;
  background: currentColor;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
  transform-origin: center;
}

.nav-menu-btn[aria-expanded="true"] .nav-menu-bars {
  justify-content: center;
}

.nav-menu-btn[aria-expanded="true"] .nav-menu-bars span {
  position: absolute;
  left: 0;
  width: 100%;
}

.nav-menu-btn[aria-expanded="true"] .nav-menu-bars span:nth-child(1) {
  transform: rotate(45deg);
}

.nav-menu-btn[aria-expanded="true"] .nav-menu-bars span:nth-child(2) {
  opacity: 0;
}

.nav-menu-btn[aria-expanded="true"] .nav-menu-bars span:nth-child(3) {
  transform: rotate(-45deg);
}

#nav-mobile-panel {
  max-width: 1400px;
  margin: 0.75rem 1rem 0;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(28, 25, 23, 0.1);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
}

#nav-mobile-panel[hidden] {
  display: none;
}

@media (min-width: 1024px) {
  #nav-mobile-panel {
    display: none !important;
  }
}

.nav-mobile-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-mobile-list a {
  display: block;
  padding: 0.85rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #1c1917;
  border-top: 1px solid rgba(28, 25, 23, 0.08);
}

.nav-mobile-list li:first-child a {
  border-top: 0;
}

.nav-mobile-list a.is-active {
  font-weight: 700;
}

.nav-mobile-list a[href^="tel"] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.nav-mobile-sublist {
  margin: 0;
  padding: 0 0 0.45rem;
  list-style: none;
  background: rgba(184, 194, 154, 0.14);
}

.nav-mobile-sublist a {
  min-height: auto;
  padding: 0.65rem 1rem 0.65rem 1.8rem;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: none;
}

/* —— Hero —— */
@keyframes hero-heading-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-fig-in {
  from {
    opacity: 0;
    transform: translate3d(-50%, 28px, 0) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translate3d(-50%, 0, 0) scale(1);
  }
}

@keyframes hero-fig-in-overlap {
  from {
    opacity: 0;
    transform: translate3d(-50%, 28px, 0) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translate3d(-50%, -8%, 0) scale(1);
  }
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section.hero,
#home.hero {
  position: relative;
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  flex-direction: column;
  overflow: visible;
  color: var(--stone-900);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(
    ellipse 72% 68% at 50% 52%,
    #fffdf8 0%,
    #f8f1e4 32%,
    #f2dbb8 68%,
    #e8d4a8 100%
  );
  transition: background 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero__vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 1;
  transition: background 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero__grain {
  display: none;
}

.hero__inner {
  position: relative;
  z-index: 10;
  display: flex;
  width: 100%;
  max-width: 90rem;
  margin: 0 auto;
  flex: 1;
  flex-direction: column;
  padding: 4.25rem 1.25rem 4.25rem;
}

@media (min-width: 640px) {
  .hero__inner {
    padding: 4.35rem 2rem 4.5rem;
  }
}

@media (min-width: 1024px) {
  .hero__inner {
    padding: 4.5rem 3rem 4rem;
  }
}

#home .hero__inner {
  padding-top: clamp(6.5rem, 12vw, 8.5rem);
}

@media (min-width: 1024px) {
  #home .hero__inner {
    padding-top: 8.75rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-content: start;
  }

  #home .hero__text-stack,
  #home .hero__stage {
    grid-row: 1;
    grid-column: 1;
  }

  #home .hero__text-stack {
    position: relative;
    justify-self: center;
    align-self: start;
    width: max-content;
    max-width: min(100vw - 2rem, 76rem);
    margin-inline: auto;
    pointer-events: none;
  }

  #home .hero__header {
    position: relative;
    z-index: 10;
  }

  #home .hero__stage {
    z-index: 30;
    align-self: start;
  }
}

#home .hero__text-stack {
  position: relative;
  width: max-content;
  max-width: 100%;
  margin-inline: auto;
  pointer-events: none;
}

#home .hero__header {
  position: relative;
  display: flex;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  margin: 0;
  padding: 0;
  pointer-events: none;
}

#home .hero__heading {
  position: relative;
  z-index: 1;
  width: max-content;
  max-width: 100%;
  margin: 0;
  text-align: center;
  pointer-events: none;
}

#home #hero-phrase {
  position: relative;
  z-index: 1;
  display: block;
  width: max-content;
  max-width: 100%;
  margin: 0;
  font-size: clamp(5rem, 18.5vw, 14.5rem);
  line-height: 0.8;
  letter-spacing: 0.06em;
  text-align: center;
  white-space: nowrap;
}

#home .hero__stage {
  position: relative;
  z-index: 30;
  width: 100%;
  max-width: min(100vw - 2rem, 76rem);
  margin-left: auto;
  margin-right: auto;
  margin-top: -3rem;
}

@media (min-width: 640px) {
  #home #hero-phrase {
    font-size: clamp(5.75rem, 17.8vw, 15rem);
    letter-spacing: 0.07em;
  }

  #home .hero__stage {
    margin-top: -4.5rem;
  }
}

@media (min-width: 1024px) {
  #home #hero-phrase {
    font-size: clamp(7.5rem, 18.2vw, 16.25rem);
    line-height: 0.76;
    letter-spacing: 0.085em;
  }

  #home .hero__stage {
    margin-top: 0;
    padding-top: clamp(5.5rem, 10vw, 7.5rem);
  }
}

.hero__header {
  position: relative;
  z-index: 14;
  flex-shrink: 0;
  padding: 0;
}

.hero__heading {
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  font-weight: inherit;
}

#hero-phrase {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.84;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: clamp(4.5rem, 15.2vw, 11.25rem);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

#home.is-hero-ready #hero-phrase {
  animation: hero-heading-in 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@media (min-width: 640px) {
  #hero-phrase {
    font-size: clamp(5rem, 14.8vw, 11.5rem);
    letter-spacing: 0.032em;
  }
}

@media (min-width: 1024px) {
  #hero-phrase {
    font-size: clamp(6.25rem, 13.6vw, 11.75rem);
    line-height: 0.82;
    letter-spacing: 0.035em;
  }
}

.hero__stage {
  position: relative;
  z-index: 20;
  display: flex;
  width: 100%;
  flex: 1;
  flex-direction: column;
  justify-content: flex-start;
  margin-top: -3.25rem;
}

@media (min-width: 640px) {
  .hero__stage {
    margin-top: -4.25rem;
  }
}

@media (min-width: 1024px) {
  .hero__stage {
    margin-top: -5.5rem;
  }
}

.hero__carousel {
  position: relative;
  margin: 0 auto;
  min-height: clamp(28rem, 64vh, 46rem);
  width: 100%;
  max-width: min(100vw - 2rem, 76rem);
  overflow: visible;
}

@media (min-width: 640px) {
  .hero__carousel {
    min-height: clamp(30rem, 68vh, 48rem);
  }
}

@media (min-width: 1024px) {
  .hero__carousel {
    min-height: clamp(34rem, 72vh, 52rem);
  }
}

.hero__pics {
  position: absolute;
  inset: 0;
  overflow: visible;
  z-index: 8;
  pointer-events: none;
}

.hero__pics--front {
  z-index: 18;
}

.hero-fig {
  position: absolute;
  bottom: 0;
  left: 50%;
  will-change: transform, opacity, filter;
  pointer-events: none;
}

.hero-fig__img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center bottom;
  -webkit-user-drag: none;
  user-select: none;
}

/* Back row — blurred depth characters */
.hero-fig--back {
  bottom: 4%;
  width: min(42vw, 260px);
  height: min(32vh, 280px);
  transform-origin: 50% 100%;
  z-index: 10;
  transition:
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  filter: blur(14px);
  opacity: 0.55;
}

@media (min-width: 640px) {
  .hero-fig--back {
    bottom: 6%;
    width: min(34vw, 290px);
    height: min(34vh, 300px);
  }
}

@media (min-width: 1024px) {
  .hero-fig--back {
    bottom: 8%;
    width: min(18rem, 300px);
    height: min(36vh, 320px);
    filter: blur(16px);
    opacity: 0.5;
  }
}

.hero-fig--back.is-off {
  opacity: 0;
  filter: blur(24px);
  transform: translate3d(-50%, 10%, 0) scale(0.38);
  visibility: hidden;
}

.hero-fig--back.is-left {
  visibility: visible;
  filter: blur(14px);
  opacity: 0.58;
  transform: translate3d(calc(-50% - min(22rem, 34vw)), 2%, 0) scale(0.7);
}

.hero-fig--back.is-right {
  visibility: visible;
  filter: blur(14px);
  opacity: 0.58;
  transform: translate3d(calc(-50% + min(22rem, 34vw)), 2%, 0) scale(0.7);
}

@media (min-width: 1024px) {
  .hero-fig--back.is-left {
    transform: translate3d(calc(-50% - 24rem), 0, 0) scale(0.72);
  }

  .hero-fig--back.is-right {
    transform: translate3d(calc(-50% + 24rem), 0, 0) scale(0.72);
  }
}

/* Center / spotlight */
.hero-fig--center {
  bottom: 0;
  width: min(96vw, 38rem);
  height: clamp(26rem, 68vh, 46rem);
  transform-origin: 50% 100%;
  z-index: 18;
  transition:
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    width 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    height 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (min-width: 640px) {
  .hero-fig--center {
    width: min(84vw, 42rem);
    height: clamp(28rem, 70vh, 48rem);
  }
}

@media (min-width: 1024px) {
  .hero-fig--center {
    width: min(54vw, 50rem);
    height: clamp(32rem, 72vh, 52rem);
  }
}

#home .hero-fig--center.is-spotlight {
  width: min(98vw, 40rem);
  height: clamp(28rem, 70vh, 48rem);
}

@media (min-width: 1024px) {
  #home .hero-fig--center.is-spotlight {
    width: min(56vw, 52rem);
    height: clamp(34rem, 74vh, 54rem);
  }
}

.hero-fig--center .hero-fig__img {
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.14));
}

.hero-fig--back .hero-fig__img {
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.12));
}

.hero-fig--center.is-dim {
  z-index: 8;
  opacity: 0;
  filter: blur(18px);
  transform: translate3d(-50%, 8%, 0) scale(0.4);
  pointer-events: none;
}

.hero-fig--center.is-spotlight {
  z-index: 22;
  opacity: 1;
  filter: blur(0);
  transform: translate3d(-50%, 0, 0) scale(1);
}

#home .hero-fig--center.is-spotlight {
  z-index: 34;
  transform: translate3d(-50%, -8%, 0) scale(1);
}

@media (min-width: 1024px) {
  #home .hero-fig--center.is-spotlight {
    transform: translate3d(-50%, -18%, 0) scale(1);
  }
}

#home.is-hero-ready .hero-fig--center.is-spotlight {
  animation: hero-fig-in-overlap 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

@media (min-width: 1024px) {
  @keyframes hero-fig-in-overlap {
    from {
      opacity: 0;
      transform: translate3d(-50%, 28px, 0) scale(0.94);
    }
    to {
      opacity: 1;
      transform: translate3d(-50%, -18%, 0) scale(1);
    }
  }
}

.hero__copy--desktop {
  display: none;
  position: relative;
  z-index: 45;
  width: 15.75rem;
  max-width: 100%;
  padding-right: 0;
  transform: none;
  text-align: right;
  align-items: flex-end;
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

#home.is-hero-ready .hero__copy--desktop {
  animation: hero-copy-in 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.28s both;
}

#home.is-copy-fading .hero__copy--desktop,
#home.is-copy-fading .hero__copy--mobile {
  opacity: 0;
}

@media (min-width: 1024px) {
  .hero__copy--desktop {
    display: flex;
    flex-direction: column;
  }

  #home .hero__copy--desktop {
    position: absolute;
    top: calc(100% + 0.35rem);
    right: 0;
    left: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
    max-width: 100%;
    margin-top: 0;
    z-index: 45;
    text-align: right;
    pointer-events: auto;
  }

  #home .hero__copy--desktop p {
    width: min(15.75rem, 100%);
    max-width: 100%;
    margin: 0;
    text-align: right;
  }

  #home .hero__copy--desktop .hero__explore {
    margin-top: 0.35rem;
    align-self: flex-end;
    text-align: right;
  }
}

.hero__copy p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0;
  color: #1c1917;
  max-width: 15.75rem;
  text-wrap: pretty;
}

@media (min-width: 640px) {
  .hero__copy p {
    font-size: 12px;
    line-height: 1.65;
  }
}

.hero__copy a,
.hero__copy .hero__explore {
  margin-top: 0.35rem;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-underline-offset: 3px;
  color: #1c1917;
  background: none;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  padding: 0;
  box-shadow: none;
}

.hero__copy a:hover,
.hero__copy .hero__explore:hover {
  text-decoration: underline;
  opacity: 1;
}

.hero__copy--stacked p {
  max-width: 34rem;
  text-align: center;
  margin: 0 auto;
  color: #444444;
}

.hero__copy--stacked {
  text-align: center;
}

@media (min-width: 1024px) {
  .hero__copy--mobile {
    display: none;
  }
}

@media (max-width: 1023.98px) {
  .hero__copy--mobile {
    position: relative;
    z-index: 30;
    max-width: 34rem;
    margin: 0.85rem auto 0;
    padding: 0 0.5rem;
  }

  .hero__copy--mobile .hero__explore {
    display: none;
  }

  #home.is-hero-ready .hero__copy--mobile {
    animation: hero-copy-in 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.28s both;
  }
}

.hero__controls {
  position: absolute;
  left: 50%;
  bottom: 3.75rem;
  z-index: 56;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  pointer-events: auto;
}

.hero__dots {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  transform: none;
}

#home {
  --hero-arrow-accent: #061a3a;
}

.hero__arrow {
  position: absolute;
  top: 50%;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.35rem;
  height: 2.35rem;
  border: 2px solid var(--hero-arrow-accent);
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--hero-arrow-accent);
  padding: 0;
  cursor: pointer;
  pointer-events: auto;
  transform: translateY(-50%);
  transition:
    background 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.22s ease,
    box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow:
    0 4px 14px rgba(28, 25, 23, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.55) inset;
}

.hero__arrow--prev {
  left: clamp(0.15rem, 2vw, 1rem);
}

.hero__arrow--next {
  right: clamp(0.15rem, 2vw, 1rem);
}

.hero__arrow svg {
  display: block;
  width: 1rem;
  height: 1rem;
}

.hero__arrow svg path {
  stroke: currentColor;
}

.hero__arrow:hover,
.hero__arrow:focus-visible {
  background: var(--hero-arrow-accent);
  border-color: var(--hero-arrow-accent);
  color: #fff;
  transform: translateY(-50%) scale(1.06);
  outline: none;
  box-shadow:
    0 8px 22px color-mix(in srgb, var(--hero-arrow-accent) 38%, transparent),
    0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.hero__arrow:active {
  transform: translateY(-50%) scale(0.96);
  box-shadow:
    0 4px 12px color-mix(in srgb, var(--hero-arrow-accent) 28%, transparent),
    0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}

@media (min-width: 1024px) {
  .hero__arrow {
    width: 2.65rem;
    height: 2.65rem;
  }

  .hero__arrow--prev {
    left: clamp(0.5rem, 3vw, 2rem);
  }

  .hero__arrow--next {
    right: clamp(0.5rem, 3vw, 2rem);
  }

  .hero__arrow svg {
    width: 1.1rem;
    height: 1.1rem;
  }
}

.hero__bottom-links {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.35rem;
  z-index: 55;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

#home .hero__bottom-link {
  pointer-events: auto;
  display: inline;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  color: #1c1917;
  text-shadow: none;
  text-decoration: none;
  transform: none;
  transition: opacity 0.2s ease;
}

#home .hero__bottom-link:last-child {
  letter-spacing: 0.04em;
}

#home .hero__bottom-link:hover {
  opacity: 0.72;
  transform: none;
  box-shadow: none;
  text-decoration: none;
}

@media (min-width: 640px) {
  #home .hero__bottom-link {
    font-size: 15px;
  }
}

@media (min-width: 1024px) {
  .hero__bottom-links {
    left: 3rem;
    right: 2.25rem;
    bottom: 1.5rem;
  }

  #home .hero__bottom-link {
    font-size: 16px;
  }
}

.hero__dot {
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  border: 1.5px solid rgba(28, 25, 23, 0.35);
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.6);
  padding: 0;
  cursor: pointer;
  transition:
    width 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease;
}

.hero__dot.is-active {
  width: 1.6rem;
  background: #1c1917;
  border-color: #1c1917;
}

.hero__dot:hover,
.hero__dot:focus-visible {
  transform: scale(1.08);
  border-color: rgba(28, 25, 23, 0.6);
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  #home.is-hero-ready #hero-phrase,
  #home.is-hero-ready .hero-fig--center.is-spotlight,
  #home.is-hero-ready .hero__copy--desktop,
  #home.is-hero-ready .hero__copy--mobile {
    animation: none;
  }

  .hero__bg,
  .hero__vignette,
  #hero-phrase,
  .hero-fig,
  .hero__copy--desktop,
  .hero__copy--mobile {
    transition: none;
  }
}

/* —— Inner page layout —— */
.page-article {
  border-bottom: 1px solid rgba(28, 25, 23, 0.1);
  background: var(--page-article-bg);
}

.page-article--light {
  background: #fff;
}

.page-hero {
  border-bottom: 1px solid rgba(28, 25, 23, 0.1);
  background: #fff;
  padding: 2.5rem 1rem 2.5rem;
}

.page-hero--tint {
  background: #fafaf8;
}

.page-article .page-hero h1,
.page-article h1 {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin: 0.75rem 0 0;
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  color: #1c1917;
}

@media (min-width: 640px) {
  .page-hero {
    padding: 2.5rem 1.5rem 2.5rem;
  }
}

@media (min-width: 1024px) {
  .page-hero {
    padding: 3.25rem 2.5rem 3.25rem;
  }
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  background: #1c1917;
  color: #e7e5e4;
}

.foot {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 2.5rem 1rem;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .foot {
    padding: 2.75rem 2.5rem;
    grid-template-columns: 4fr 5fr 3fr;
    align-items: start;
    gap: 1.5rem 2rem;
  }
}

.foot-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0 0 0.5rem;
}

.foot-muted {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #a8a29e;
  max-width: 22rem;
  margin: 0;
}

.foot-label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #78716c;
  margin: 0 0 0.35rem;
}

.foot a {
  color: #d6d3d1;
}

.foot ul a {
  text-transform: capitalize;
}

.foot a:hover {
  color: #fff;
}

.foot ul {
  list-style: none;
  margin: 0.3rem 0 0;
  padding: 0;
  font-size: 0.9rem;
}

.foot li + li {
  margin-top: 0.3rem;
}

.foot .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.3rem;
}

.foot .tags span,
.foot .tags a {
  border: 1px solid #57534e;
  border-radius: 9999px;
  font-size: 0.7rem;
  color: #a8a29e;
  padding: 0.2rem 0.5rem;
}

.foot .tags--icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border-radius: 9999px;
  color: #e7e5e4;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
}

.foot .tags--icons a:hover {
  border-color: #a8a29e;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.foot .copy {
  font-size: 0.65rem;
  color: #78716c;
  margin: 0.25rem 0 0;
}

.whatsapp-float {
  position: fixed;
  right: clamp(1rem, 3vw, 1.5rem);
  bottom: calc(1rem + env(safe-area-inset-bottom, 0));
  z-index: 10001;
  display: grid;
  place-items: center;
  overflow: hidden;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 9999px;
  border: 1.5px solid rgba(214, 165, 41, 0.72);
  background: linear-gradient(135deg, #075e54, #128c7e);
  color: #fff;
  padding: 0;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 18px 36px rgba(6, 26, 58, 0.22);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.whatsapp-float:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.whatsapp-float__icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  color: #fff;
}

.whatsapp-float__icon svg {
  display: block;
  width: 2rem;
  max-width: 2rem;
  height: 2rem;
  max-height: 2rem;
  fill: currentColor;
}

.whatsapp-float__text {
  display: none !important;
}

@media (max-width: 520px) {
  .whatsapp-float {
    right: 0.85rem;
    bottom: calc(0.85rem + env(safe-area-inset-bottom, 0));
    width: 2.9rem;
    height: 2.9rem;
  }

  .whatsapp-float__icon,
  .whatsapp-float__icon svg {
    width: 1.8rem;
    max-width: 1.8rem;
    height: 1.8rem;
    max-height: 1.8rem;
  }
}

.page-center h1 {
  text-align: center;
}

.page-center {
  text-align: center;
}

/* Reference-style inner sections */
.site-header--solid {
  background: #f4f4f4;
  border-bottom: 0;
  box-shadow: none;
}

.screen-page {
  min-height: calc(100vh - 96px);
  background: #f4f4f4;
  color: #070707;
  overflow: visible;
}

.site-main {
  background: #f4f4f4;
  color: #070707;
}

.section-label {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
}

.about-screen,
.mission-screen,
.affiliation-screen,
.facilities-screen {
  width: min(100%, 90rem);
  margin: 0 auto;
  padding: 1.8rem 5.25rem 4rem;
}

.about-screen {
  padding-top: 0.9rem;
}

.team-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5.5rem;
  align-items: start;
  margin: 1.6rem auto 2.7rem;
  max-width: 50rem;
}

.team-card {
  text-align: center;
}

.team-photo {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 1rem;
  border-radius: 9999px;
  display: grid;
  place-items: end center;
  overflow: hidden;
}

.team-card--purple .team-photo {
  background: #8d5df4;
}

.team-card--yellow .team-photo {
  background: #ffe85e;
}

.team-card--pink .team-photo {
  background: #f59aad;
}

.team-photo img {
  width: 100%;
  height: 112%;
  object-fit: contain;
  object-position: bottom center;
}

.team-card h2 {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
}

.team-card p {
  margin: 0.25rem 0 0;
  font-size: 12px;
}

.about-copy {
  margin: 0;
  max-width: 72rem;
  font-size: 12px;
  line-height: 1.55;
  text-align: justify;
}

.mission-screen,
.affiliation-screen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2.5rem;
  min-height: calc(100vh - 96px);
  padding-top: 0.75rem;
  padding-bottom: 0;
}

.mission-screen__image img {
  width: min(45vw, 540px);
  max-width: none;
  height: auto;
  max-height: min(72vh, 620px);
  object-fit: contain;
  object-position: center bottom;
  margin-left: -1.5rem;
}

.mission-screen__copy,
.affiliation-screen__copy {
  max-width: 31rem;
}

.mission-screen h1,
.affiliation-screen h1 {
  margin: 0 0 0.9rem;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 800;
}

.mission-screen p,
.affiliation-screen p {
  margin: 0 0 1.35rem;
  font-size: 12px;
  line-height: 1.65;
}

.affiliation-screen__image img {
  width: min(44vw, 540px);
  max-width: none;
  height: auto;
  max-height: min(72vh, 620px);
  object-fit: contain;
  object-position: center bottom;
  margin-left: 3.5rem;
}

.affiliation-logos {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.1rem;
}

.affiliation-logo {
  display: grid;
  place-items: center;
  width: 86px;
  height: 68px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  color: #3a2462;
  font-size: 13px;
  font-weight: 800;
  overflow: hidden;
}

.affiliation-logo--image {
  padding: 0.35rem;
  border-radius: 0.9rem;
}

.affiliation-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.facilities-screen {
  position: relative;
  min-height: calc(100vh - 96px);
  padding-top: 0.9rem;
}

.facility-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 2rem;
}

.facility-panel img {
  width: 100%;
  aspect-ratio: 1.54 / 1;
  object-fit: cover;
  border-radius: 0.7rem;
}

.facility-panel h2 {
  margin: 0.85rem 0 0.7rem;
  font-size: 16px;
  font-weight: 500;
}

.facility-panel p {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  text-align: left;
}

.facility-fox {
  position: absolute;
  right: -0.5rem;
  bottom: -0.8rem;
  width: 145px;
}

.contact-screen {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: 4rem;
  align-items: center;
  width: min(100%, 90rem);
  min-height: calc(100vh - 96px);
  margin: 0 auto;
  padding: 1.8rem 5.25rem 4rem;
}

.contact-screen__copy {
  max-width: 39rem;
}

.contact-lead {
  margin: 1.25rem 0 2rem;
  max-width: 41rem;
  font-size: 15px;
  line-height: 1.7;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem 2rem;
}

.contact-info-grid h2,
.contact-panel h2 {
  margin: 0 0 0.45rem;
  font-size: 14px;
  font-weight: 800;
}

.contact-info-grid a,
.contact-info-grid p {
  margin: 0;
  color: #070707;
  font-size: 13px;
  line-height: 1.5;
}

.contact-panel {
  position: relative;
  z-index: 2;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.72);
  padding: 1.35rem;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.08);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.contact-panel label {
  display: block;
  margin: 0 0 0.85rem;
  color: #171717;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-panel label span {
  color: #b91c1c;
}

.contact-panel input,
.contact-panel select,
.contact-panel textarea {
  display: block;
  width: 100%;
  margin-top: 0.35rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 0.75rem;
  background: #fff;
  color: #070707;
  font-family: inherit;
  font-size: 13px;
  padding: 0.72rem 0.8rem;
  outline: none;
}

.contact-panel input:focus,
.contact-panel select:focus,
.contact-panel textarea:focus {
  border-color: rgba(0, 0, 0, 0.42);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}

.contact-panel select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #111 50%),
    linear-gradient(135deg, #111 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 13px) 50%;
  background-size:
    5px 5px,
    5px 5px;
  background-repeat: no-repeat;
}

.contact-panel textarea {
  resize: vertical;
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 9999px;
  background: #070707;
  color: #fff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  padding: 0.75rem 1.75rem;
  cursor: pointer;
}

.contact-screen .status-msg {
  margin: 0.8rem 0 0;
  border-radius: 0.75rem;
  background: #ecfdf5;
  color: #065f46;
  font-size: 12px;
  font-weight: 600;
  padding: 0.65rem 0.8rem;
}

.contact-screen .status-msg--error {
  background: #fef2f2;
  color: #991b1b;
}

.contact-mascot {
  position: absolute;
  right: 1.3rem;
  bottom: -1.25rem;
  width: 165px;
  z-index: 0;
}

/* Complete-site reusable content sections */
.content-section {
  width: min(100%, 90rem);
  margin: 0 auto;
  padding: 5rem 5.25rem;
  background: #f4f4f4;
}

.content-section--intro,
.content-section--split,
.content-section--cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  gap: 3.5rem;
  align-items: center;
}

.content-section--split:nth-of-type(even) {
  background: #f8f8f7;
}

.content-section--cards {
  background: #fff;
}

.content-section--band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: #111;
  color: #fff;
}

.content-section--cta {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: #f0f0ee;
}

.section-copy {
  max-width: 42rem;
}

.eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6f6a62;
}

.content-section--band .eyebrow {
  color: #bbb;
}

.section-copy h2,
.section-head h2,
.content-section--band h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.section-copy p,
.section-head p {
  margin: 1rem 0 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #3f3d38;
}

.content-section--band h2 {
  max-width: 54rem;
}

.section-media {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  background: #e9e9e6;
}

.section-media img {
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

.section-media--mascot {
  display: grid;
  place-items: center;
  overflow: visible;
  min-height: clamp(320px, 40vw, 460px);
  padding: clamp(1.5rem, 4vw, 3rem);
  background: radial-gradient(circle, #fff 0%, #e8e2ce 62%, transparent 63%);
}

.section-media--mascot img {
  width: min(100%, 420px);
  min-height: 0;
  max-height: min(68vh, 520px);
  height: auto;
  object-fit: contain;
  object-position: center bottom;
}

.section-actions,
.band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.btn-dark,
.btn-light,
.btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  font-size: 0.86rem;
  font-weight: 800;
  padding: 0.8rem 1.3rem;
}

.btn-dark {
  background: #070707;
  color: #fff;
}

.btn-light {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}

.btn-link {
  color: #070707;
  padding-left: 0;
  padding-right: 0;
}

.section-head {
  max-width: 48rem;
  margin-bottom: 2rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.info-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card {
  display: block;
  min-height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1.25rem;
  background: #fff;
  padding: 1.35rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.04);
  color: inherit;
  text-decoration: none;
}

.info-card img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  margin-bottom: 0.85rem;
}

.info-card h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
}

.info-card p {
  margin: 0.6rem 0 0;
  color: #4a4741;
  font-size: 0.92rem;
  line-height: 1.55;
}

.info-card--text {
  padding: 1.6rem;
}

.check-list {
  margin: 1.25rem 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin: 0 0 0.7rem;
  padding-left: 1.5rem;
  color: #34312d;
  line-height: 1.55;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 9999px;
  background: #111;
}

.map-card {
  min-height: 260px;
  border-radius: 1.4rem;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.9), transparent 36%),
    linear-gradient(135deg, #d9d888, #94dcd7);
  display: grid;
  align-content: end;
  gap: 0.45rem;
  padding: 1.6rem;
  color: #070707;
}

.map-card strong {
  font-size: 1.2rem;
}

.map-card a {
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.map-card--embed {
  overflow: hidden;
  align-content: stretch;
  gap: 0;
  padding: 0;
  background: #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.map-card--embed iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
}

.map-card__caption {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.1rem 1.15rem;
}

.map-card__caption span {
  color: #4a4741;
  font-size: 0.92rem;
  line-height: 1.45;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-list details {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1rem;
  background: #fff;
  padding: 1rem 1.2rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-list p {
  margin: 0.75rem 0 0;
  color: #4a4741;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .info-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .about-screen,
  .mission-screen,
  .affiliation-screen,
  .facilities-screen,
  .contact-screen {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .team-row,
  .facility-row,
  .mission-screen,
  .affiliation-screen,
  .contact-screen {
    grid-template-columns: 1fr;
  }

  .contact-form-grid,
  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .contact-mascot {
    position: relative;
    right: auto;
    bottom: auto;
    justify-self: end;
    width: min(46vw, 160px);
    margin: -1.25rem 0 0;
    z-index: 0;
  }

  .mission-screen__image img,
  .affiliation-screen__image img {
    position: relative;
    width: min(80vw, 360px);
    margin: 0 auto;
    right: auto;
    bottom: auto;
  }

  .content-section,
  .content-section--intro,
  .content-section--split,
  .content-section--cta {
    grid-template-columns: 1fr;
    padding: 3.25rem 1.25rem;
  }

  .content-section--band {
    align-items: center;
    flex-direction: column;
    padding: 3.25rem 1.25rem;
    text-align: center;
  }

  .info-grid,
  .info-grid--four {
    grid-template-columns: 1fr;
  }

  .section-media img {
    min-height: 220px;
  }
}

@media (max-width: 520px) {
  .contact-mascot {
    width: min(54vw, 145px);
    margin-top: -0.5rem;
  }
}

/* Creative institute polish */
:root {
  --pcr-ink: #061a3a;
  --pcr-purple: #061a3a;
  --pcr-cyan: #0b4e9b;
  --pcr-yellow: #d6a529;
  --pcr-orange: #f4d77a;
  --pcr-soft: #f8fafc;
  --pcr-glow: 0 22px 55px rgba(6, 26, 58, 0.16);
}

body {
  background:
    radial-gradient(circle at top left, rgba(11, 78, 155, 0.14), transparent 34rem),
    radial-gradient(circle at top right, rgba(214, 165, 41, 0.16), transparent 32rem),
    linear-gradient(135deg, #f8fafc 0%, #eef4ff 42%, #fff8e6 100%);
}

.site-header--solid {
  background: rgba(255, 255, 255, 0.88);
  border-bottom-color: rgba(214, 165, 41, 0.22);
  box-shadow: 0 12px 36px rgba(6, 26, 58, 0.08);
}

.site-header--transparent.is-scrolled,
.site-header--transparent.nav-open {
  background: rgba(255, 255, 255, 0.9);
}

.nav-list a,
.nav-mobile-list a {
  transition:
    color 0.2s ease,
    opacity 0.2s ease,
    transform 0.2s ease;
}

.nav-list a:hover,
.nav-mobile-list a:hover,
.nav-list a.is-active,
.nav-mobile-list a.is-active {
  color: var(--pcr-purple);
}

.nav-list a:hover,
.nav-mobile-list a:hover {
  transform: translateY(-1px);
}

.nav-phone svg {
  color: currentColor;
  flex-shrink: 0;
}

.nav-phone:hover,
.nav-phone:focus-visible {
  color: var(--pcr-purple);
  opacity: 1;
}

.section-label,
.eyebrow {
  background: linear-gradient(90deg, var(--pcr-purple), var(--pcr-cyan), var(--pcr-orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-label {
  position: relative;
}

.section-label::after {
  content: "";
  display: block;
  width: 5rem;
  height: 0.35rem;
  margin-top: 0.45rem;
  border-radius: 9999px;
  background: linear-gradient(90deg, var(--pcr-purple), var(--pcr-cyan), var(--pcr-yellow));
}

.content-section,
.about-screen,
.facilities-screen,
.affiliation-screen,
.mission-screen,
.contact-screen {
  position: relative;
  overflow: hidden;
}

.content-section::before,
.about-screen::before,
.facilities-screen::before,
.affiliation-screen::before,
.mission-screen::before,
.contact-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(11, 78, 155, 0.1), transparent 18rem),
    radial-gradient(circle at 88% 10%, rgba(214, 165, 41, 0.11), transparent 18rem);
}

.content-section > *,
.about-screen > *,
.facilities-screen > *,
.affiliation-screen > *,
.mission-screen > *,
.contact-screen > * {
  position: relative;
  z-index: 1;
}

.content-section--cards,
.content-section--intro,
.content-section--split,
.content-section--cta {
  background: rgba(255, 255, 255, 0.86);
}

.content-section--band {
  background:
    radial-gradient(circle at 15% 20%, rgba(244, 215, 122, 0.3), transparent 18rem),
    linear-gradient(135deg, var(--pcr-purple), #0b2f66 54%, var(--pcr-cyan));
  box-shadow: var(--pcr-glow);
}

.btn-dark,
.btn-light,
.contact-submit,
.hero__bottom-link {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    opacity 0.22s ease;
}

.btn-dark,
.contact-submit {
  border: 1.5px solid rgba(214, 165, 41, 0.72);
  background: linear-gradient(135deg, var(--pcr-purple), var(--pcr-cyan));
  box-shadow: 0 14px 30px rgba(6, 26, 58, 0.24);
  color: #f4d77a;
}

.btn-light {
  border: 1.5px solid rgba(244, 215, 122, 0.72);
  background: rgba(255, 255, 255, 0.14);
  color: #f4d77a;
  box-shadow: 0 12px 28px rgba(23, 19, 33, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero__bottom-link {
  border: 1.5px solid rgba(214, 165, 41, 0.72);
  background: rgba(255, 255, 255, 0.68);
  color: #061a3a;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
  box-shadow: 0 12px 28px rgba(6, 26, 58, 0.18);
}

#home .hero__bottom-link {
  border: 0;
  background: none;
  color: #1c1917;
  text-shadow: none;
  box-shadow: none;
  transform: none;
}

.btn-dark:hover,
.btn-light:hover,
.contact-submit:hover,
.hero__bottom-link:hover {
  opacity: 1;
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(6, 26, 58, 0.28);
}

#home .hero__bottom-link:hover {
  opacity: 0.72;
  transform: none;
  box-shadow: none;
}

.info-card,
.team-card,
.facility-panel,
.contact-panel,
.map-card {
  box-shadow: 0 18px 45px rgba(23, 19, 33, 0.1);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.info-card:hover,
.team-card:hover,
.facility-panel:hover,
.contact-panel:hover,
.map-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(6, 26, 58, 0.16);
}

.info-card,
.facility-panel,
.contact-panel {
  border: 1px solid rgba(214, 165, 41, 0.22);
}

.hero__heading,
.section-copy h2,
.section-head h2 {
  text-shadow: 0 10px 32px rgba(6, 26, 58, 0.1);
}

.pcr-reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.pcr-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes pcr-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .pcr-reveal {
    opacity: 1;
    transform: none;
  }
}

/* Alignment refinements across converted WordPress pages */
.content-section,
.about-screen,
.facilities-screen,
.affiliation-screen,
.mission-screen,
.contact-screen {
  overflow: visible;
}

.about-screen,
.mission-screen,
.affiliation-screen,
.facilities-screen,
.contact-screen,
.content-section {
  width: min(100%, var(--wide));
  padding-left: clamp(1.25rem, 5vw, 5.25rem);
  padding-right: clamp(1.25rem, 5vw, 5.25rem);
}

.section-label {
  display: inline-block;
}

.section-label::after {
  width: min(100%, 5rem);
}

.section-head {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-actions,
.band-actions {
  align-items: center;
}

.team-row,
.facility-row,
.info-grid {
  align-items: stretch;
}

.team-row {
  justify-items: center;
}

.team-card,
.facility-panel {
  width: 100%;
  border-radius: 1.25rem;
}

.team-card,
.facility-panel {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(214, 165, 41, 0.22);
  padding: 1rem;
}

.facility-panel {
  height: 100%;
}

.mission-screen__image,
.affiliation-screen__image,
.section-media--mascot {
  display: grid;
  place-items: center;
}

.mission-screen__copy,
.affiliation-screen__copy,
.contact-screen__copy {
  width: 100%;
}

.pcr-reveal.is-visible.info-card:hover,
.pcr-reveal.is-visible.team-card:hover,
.pcr-reveal.is-visible.facility-panel:hover,
.pcr-reveal.is-visible.contact-panel:hover,
.pcr-reveal.is-visible.map-card:hover {
  transform: translateY(-6px);
}

@media (max-width: 900px) {
  .about-screen,
  .facilities-screen,
  .mission-screen,
  .affiliation-screen,
  .contact-screen {
    padding-top: 2rem;
    padding-bottom: 3rem;
  }

  .team-row,
  .facility-row {
    gap: 1.5rem;
  }

  .team-card,
  .facility-panel {
    max-width: 28rem;
  }

  .mission-screen__copy,
  .affiliation-screen__copy {
    margin: 0 auto;
  }

  .mission-screen__image,
  .affiliation-screen__image {
    order: -1;
  }
}

@media (max-width: 640px) {
  .section-head,
  .about-screen,
  .facilities-screen {
    text-align: center;
  }

  .section-label::after {
    margin-left: auto;
    margin-right: auto;
  }

  .content-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

/* Courses page synced from current static courses.html */
.course-detail {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
  gap: clamp(1.5rem, 4vw, 3rem);
  min-height: auto;
  align-items: center;
  width: min(100%, var(--wide));
  margin: 0 auto;
  padding-top: clamp(1.5rem, 4vw, 3rem);
  padding-right: clamp(1.25rem, 5vw, 5.25rem);
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
  padding-left: clamp(1.25rem, 5vw, 5.25rem);
}

.course-detail__copy {
  max-width: 43rem;
  animation: course-copy-in 0.7s ease both;
}

.course-detail h1 {
  margin: 0 0 2rem;
  font-size: 24px;
  font-weight: 400;
}

.course-detail h2 {
  margin: 1.65rem 0 0.45rem;
  font-size: 15px;
  font-weight: 800;
}

.course-detail p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
}

.course-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.course-actions .btn-light {
  border: 1.5px solid rgba(214, 165, 41, 0.72);
  background: linear-gradient(135deg, #061a3a 0%, #0b4e9b 100%);
  color: #f4d77a;
  box-shadow: 0 12px 24px rgba(6, 26, 58, 0.22);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.course-actions .btn-light:hover {
  box-shadow: 0 18px 36px rgba(6, 26, 58, 0.28);
}

.course-info-grid {
  align-items: stretch;
}

.course-points {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding-left: 1.15rem;
  color: rgba(28, 25, 23, 0.82);
  font-size: 0.96rem;
  line-height: 1.65;
}

.course-points li::marker {
  color: #0f766e;
}

.course-detail__mascot {
  position: relative;
  align-self: center;
  display: grid;
  place-items: end center;
  min-height: clamp(22rem, 42vh, 32rem);
  overflow: visible;
}

.course-detail__mascot img {
  position: relative;
  right: auto;
  bottom: auto;
  z-index: 2;
  width: min(34vw, 420px);
  max-width: 420px;
  height: auto;
  max-height: min(68vh, 540px);
  object-fit: contain;
  object-position: center bottom;
  margin: 0 auto;
  animation:
    course-fox-in 0.75s ease both,
    course-fox-float 4.5s ease-in-out 0.8s infinite;
}

.course-career-mascot {
  animation:
    course-fox-in 0.75s ease both,
    course-fox-float 4.5s ease-in-out 0.8s infinite;
}

.pcr-feature-mascot {
  animation:
    course-fox-in 0.75s ease both,
    course-fox-float 4.8s ease-in-out 0.8s infinite;
  transform-origin: center bottom;
}

.course-blob {
  position: absolute;
  display: block;
  border-radius: 9999px;
  background: #94dcd7;
}

.course-blob--small {
  left: -3.2rem;
  top: 3.2rem;
  width: 88px;
  height: 88px;
  animation: course-small-blob 4s ease-in-out infinite;
}

.course-blob--large {
  left: 50%;
  right: auto;
  top: 50%;
  bottom: auto;
  z-index: 1;
  width: 290px;
  height: 390px;
  transform: translate(-50%, -50%);
  animation: course-large-blob 5s ease-in-out infinite;
}

@keyframes course-copy-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes course-fox-in {
  from {
    opacity: 0;
    transform: translateX(28px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes course-fox-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes course-small-blob {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.75;
  }
}

@keyframes course-large-blob {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.04);
  }
}

.courses-showcase {
  min-height: calc(100vh - 96px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 2rem;
}

.courses-showcase.pcr-reveal.is-visible {
  background:
    radial-gradient(circle at 18% 12%, rgba(11, 78, 155, 0.08), transparent 18rem),
    radial-gradient(circle at 82% 18%, rgba(214, 165, 41, 0.12), transparent 18rem),
    rgba(255, 255, 255, 0.78);
  border-radius: 1.75rem;
  box-shadow: 0 22px 60px rgba(6, 26, 58, 0.08);
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 2.4rem 4.25rem;
  width: min(100%, 56rem);
}

.course-slider {
  position: relative;
  width: min(100%, 72rem);
  margin: 0 auto;
  overflow: hidden;
  padding: 0.75rem 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.course-slider__track {
  display: flex;
  width: max-content;
  gap: clamp(1rem, 2.5vw, 2rem);
  animation: course-slider-scroll 28s linear infinite;
}

.course-slider:hover .course-slider__track,
.course-slider:focus-within .course-slider__track {
  animation-play-state: paused;
}

.course-slider .course-tile {
  flex: 0 0 clamp(170px, 18vw, 220px);
}

@keyframes course-slider-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - clamp(0.5rem, 1.25vw, 1rem)));
  }
}

.course-tile {
  position: relative;
  min-height: 250px;
  text-align: center;
  display: grid;
  align-content: start;
  justify-items: center;
  padding: 1rem 0.75rem;
  border-radius: 1.35rem;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    background-color 0.24s ease;
}

.course-tile.pcr-reveal.is-visible:hover {
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 40px rgba(6, 26, 58, 0.14);
  transform: translateY(-6px);
}

.course-tile__bubble {
  position: absolute;
  left: 50%;
  top: 1.2rem;
  width: 112px;
  height: 112px;
  border-radius: 9999px;
  transform: translateX(-50%);
  box-shadow: 0 14px 28px rgba(23, 19, 33, 0.12);
}

.course-tile img {
  position: relative;
  z-index: 2;
  width: auto;
  max-width: 155px;
  height: auto;
  max-height: 175px;
  object-fit: contain;
  object-position: center bottom;
  margin: 0 auto 0.75rem;
}

.course-tile--feature img {
  max-width: 170px;
  max-height: 190px;
}

.course-tile p {
  position: relative;
  z-index: 3;
  margin: 0;
  max-width: 11rem;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.32;
  color: #171321;
  overflow-wrap: anywhere;
}

.course-tile--feature p {
  font-weight: 800;
}

.course-ring--pink {
  background: #f4a0a7;
}

.course-ring--amber {
  background: linear-gradient(135deg, #fde68a, #fde047);
}

.course-ring--fuchsia {
  background: linear-gradient(135deg, #f5d0fe, #f9a8d4);
}

.course-ring--teal {
  background: linear-gradient(135deg, #99f6e4, #a5f3fc);
}

.course-ring--violet {
  background: linear-gradient(135deg, #ddd6fe, #d8b4fe);
}

.course-ring--sunset {
  background: linear-gradient(135deg, #fed7aa, #fecdd3);
}

@media (max-width: 900px) {
  .course-detail {
    grid-template-columns: 1fr;
  }

  .course-detail__copy {
    order: 1;
  }

  .course-detail__mascot {
    order: 2;
    min-height: 260px;
    margin-top: 1.75rem;
  }

  .course-detail__mascot img {
    width: min(68vw, 280px);
  }

  .course-actions {
    align-items: stretch;
    flex-direction: column;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 3;
  }

  .course-actions .btn-light {
    justify-content: center;
    width: 100%;
  }

  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

}

@media (prefers-reduced-motion: reduce) {
  .course-detail__copy,
  .course-detail__mascot img,
  .course-career-mascot,
  .pcr-feature-mascot,
  .course-blob--small,
  .course-blob--large,
  .course-slider__track {
    animation: none;
  }

  .course-slider {
    overflow-x: auto;
    mask-image: none;
  }
}

/* Final responsive and alignment pass for WordPress pages */
.screen-page {
  width: 100%;
  overflow-x: hidden;
}

.content-section,
.about-screen,
.facilities-screen,
.mission-screen,
.affiliation-screen,
.contact-screen,
.course-detail,
.courses-showcase {
  margin-left: auto;
  margin-right: auto;
}

.content-section--split {
  align-items: center;
  gap: clamp(1.75rem, 5vw, 4rem);
}

.section-copy {
  max-width: 42rem;
}

.section-copy p,
.about-copy,
.contact-lead,
.facility-panel p,
.info-card p {
  overflow-wrap: anywhere;
}

.section-media img,
.map-card--embed,
.contact-panel {
  max-width: 100%;
}

.section-media img {
  width: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
}

.section-media--mascot img,
.mission-screen__image img,
.affiliation-screen__image img {
  object-fit: contain;
}

.section-media--mascot {
  overflow: visible;
}

.section-media--mascot img,
.course-career-mascot,
.pcr-feature-mascot {
  max-height: none;
}

.info-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}

.info-card,
.facility-panel,
.team-card,
.contact-panel,
.map-card {
  min-width: 0;
}

.contact-screen {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 440px);
}

.contact-info-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
}

.contact-panel input,
.contact-panel select,
.contact-panel textarea {
  min-width: 0;
}

.courses-showcase {
  overflow: hidden;
}

.course-tile {
  min-width: 0;
}

@media (max-width: 1023.98px) {
  .site-header--solid .nav-row {
    min-height: 76px;
  }

  .content-section,
  .content-section--intro,
  .content-section--split,
  .content-section--cards,
  .content-section--cta,
  .about-screen,
  .facilities-screen,
  .mission-screen,
  .affiliation-screen,
  .contact-screen {
    padding-left: clamp(1rem, 5vw, 2rem);
    padding-right: clamp(1rem, 5vw, 2rem);
  }

  .team-row,
  .facility-row {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  }

  .contact-screen {
    align-items: start;
  }
}

@media (max-width: 767.98px) {
  .content-section,
  .content-section--intro,
  .content-section--split,
  .content-section--cards,
  .content-section--cta {
    border-radius: 0;
  }

  .section-copy,
  .contact-screen__copy,
  .mission-screen__copy,
  .affiliation-screen__copy {
    max-width: 100%;
  }

  .section-actions,
  .band-actions {
    justify-content: center;
  }

  .content-section--intro .section-copy {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .content-section--intro .section-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .content-section--intro .section-actions {
    justify-content: center;
  }

  .courses-grid {
    grid-template-columns: 1fr;
  }

  .foot-cols {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 520px) {
  .nav-logo {
    width: 58px;
    height: 58px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    padding: 1rem;
    border-radius: 1rem;
  }

  .section-actions,
  .band-actions {
    width: 100%;
    align-items: stretch;
  }

  .section-actions a,
  .band-actions a,
  .btn-dark,
  .btn-light {
    justify-content: center;
  }

  .section-copy > .btn-dark {
    display: flex;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Keep the main navigation visible while scrolling on every page. */
.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10000;
  isolation: isolate;
}

.admin-bar .site-header {
  top: 32px !important;
}

.site-header--solid + .screen-page,
.site-header--solid + .site-main {
  padding-top: 104px;
}

.admin-bar .site-header--solid + .screen-page,
.admin-bar .site-header--solid + .site-main {
  padding-top: 136px;
}

.site-header--transparent {
  background: transparent;
  margin-bottom: 0;
}

.screen-page > section:first-child {
  scroll-margin-top: 104px;
}

.site-header--solid + .screen-page > section:first-child,
.site-header--solid + .site-main > section:first-child {
  padding-top: clamp(0.75rem, 2vw, 1.25rem);
}

.site-header--solid + .screen-page > .course-detail:first-child {
  padding-top: clamp(0.75rem, 2vw, 1.25rem);
}

.site-header--solid + .screen-page > .contact-screen:first-child {
  padding-top: clamp(0.9rem, 2vw, 1.5rem);
}

.admin-bar .site-header--solid + .screen-page > section:first-child,
.admin-bar .site-header--solid + .site-main > section:first-child {
  padding-top: clamp(0.75rem, 2vw, 1.25rem);
}

.mission-screen__image,
.affiliation-screen__image,
.section-media--mascot,
.course-detail__mascot {
  position: relative;
  z-index: 1;
}

.mission-screen__image img,
.affiliation-screen__image img,
.section-media--mascot img,
.course-detail__mascot img,
.pcr-feature-mascot,
.course-career-mascot {
  position: relative;
  z-index: 1;
}

@media (max-width: 1023.98px) {
  .site-header--transparent,
  .site-header--solid {
    width: 100%;
  }

  .site-header--transparent {
    padding-top: 0.75rem;
    margin-bottom: 0;
  }

  .site-header--transparent.is-scrolled,
  .site-header--transparent.nav-open {
    padding-top: 0.5rem;
  }

  .nav-row {
    min-height: 64px;
    padding-left: clamp(0.875rem, 4vw, 1.5rem);
    padding-right: clamp(0.875rem, 4vw, 1.5rem);
  }

  .site-header--solid .nav-row {
    min-height: 68px;
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
  }

  .nav-logo {
    width: 62px;
    height: 62px;
  }

  .nav-menu-btn {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 24px rgba(23, 19, 33, 0.1);
  }

  #nav-mobile-panel {
    width: auto;
    max-height: calc(100dvh - 88px);
    margin: 0.45rem clamp(0.875rem, 4vw, 1.5rem) 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-mobile-list a {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 0.85rem 1rem;
  }

  .site-header--solid + .screen-page,
  .site-header--solid + .site-main {
    padding-top: 76px;
  }

  .admin-bar .site-header--solid + .screen-page,
  .admin-bar .site-header--solid + .site-main {
    padding-top: 122px;
  }

  .mission-screen,
  .affiliation-screen {
    padding-top: 0.9rem;
  }

  .site-header--solid + .screen-page > section:first-child,
  .site-header--solid + .site-main > section:first-child,
  .site-header--solid + .screen-page > .contact-screen:first-child {
    padding-top: 0.5rem;
  }

  .site-header--solid + .screen-page > .course-detail:first-child {
    padding-top: 0.5rem;
  }

  .admin-bar .site-header--solid + .screen-page > section:first-child,
  .admin-bar .site-header--solid + .site-main > section:first-child {
    padding-top: 0.5rem;
  }
}

@media (max-width: 520px) {
  .nav-phone--brand {
    gap: 0.3rem;
    font-size: 12px;
    padding: 0.2rem 0;
  }

  .nav-phone--brand svg {
    width: 14px;
    height: 14px;
  }

  .nav-row {
    min-height: 58px;
  }

  .site-header--solid .nav-row {
    min-height: 62px;
  }

  .nav-logo {
    width: 54px;
    height: 54px;
  }

  .nav-actions {
    gap: 0.4rem;
  }

  .nav-mobile-list a {
    font-size: 0.82rem;
    letter-spacing: 0.1em;
  }

  .site-header--solid + .screen-page,
  .site-header--solid + .site-main {
    padding-top: 70px;
  }

  .admin-bar .site-header--solid + .screen-page,
  .admin-bar .site-header--solid + .site-main {
    padding-top: 116px;
  }

  .mission-screen,
  .affiliation-screen {
    padding-top: 0.75rem;
  }

  .site-header--solid + .screen-page > section:first-child,
  .site-header--solid + .site-main > section:first-child,
  .site-header--solid + .screen-page > .contact-screen:first-child {
    padding-top: 0.45rem;
  }

  .site-header--solid + .screen-page > .course-detail:first-child {
    padding-top: 0.45rem;
  }

  .admin-bar .site-header--solid + .screen-page > section:first-child,
  .admin-bar .site-header--solid + .site-main > section:first-child {
    padding-top: 0.45rem;
  }
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px !important;
  }
}

/* Use one page scrollbar only. */
html {
  height: auto !important;
  min-height: 100%;
  overflow-x: hidden !important;
  overflow-y: auto !important;
}

body {
  height: auto !important;
  min-height: 100% !important;
  overflow-x: hidden !important;
  overflow-y: visible !important;
}

.screen-page,
.site-main {
  height: auto !important;
  overflow: visible !important;
}

/* Phone-first safety overrides kept last so earlier desktop rules cannot win. */
@media (max-width: 900px) {
  .contact-screen {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
  }

  .contact-screen__copy,
  .contact-panel {
    width: 100%;
    max-width: 100%;
  }

  .mission-screen,
  .affiliation-screen,
  .course-detail,
  .content-section--intro,
  .content-section--split,
  .content-section--cta {
    grid-template-columns: 1fr;
  }

  .courses-showcase {
    min-height: auto;
    padding: 2.5rem clamp(1rem, 5vw, 2rem);
  }
}

@media (max-width: 640px) {
  .about-screen,
  .facilities-screen,
  .mission-screen,
  .affiliation-screen,
  .contact-screen,
  .course-detail,
  .content-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .contact-screen {
    gap: 1.25rem;
  }

  .contact-screen__copy,
  .contact-info-grid,
  .contact-info-grid h2,
  .contact-info-grid a,
  .contact-info-grid p {
    text-align: center;
  }

  .contact-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-form-grid,
  .contact-info-grid,
  .courses-grid,
  .team-row,
  .facility-row,
  .info-grid,
  .info-grid--four {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    padding: 1rem;
    border-radius: 1rem;
  }

  .contact-panel h2 {
    font-size: clamp(1.15rem, 6vw, 1.55rem);
    line-height: 1.2;
  }

  .contact-panel input,
  .contact-panel select,
  .contact-panel textarea {
    font-size: 16px;
  }

  .section-label {
    max-width: 100%;
    font-size: clamp(1.4rem, 8vw, 2rem);
    line-height: 1.15;
    overflow-wrap: normal;
  }

  .about-copy,
  .contact-lead,
  .section-copy p,
  .facility-panel p,
  .info-card p,
  .foot-muted,
  .foot li {
    text-align: center;
    overflow-wrap: break-word;
  }

  .team-card,
  .facility-panel,
  .info-card {
    max-width: 100%;
  }

  .info-card {
    text-align: center;
  }

  .info-card img {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__bottom-links {
    left: 1rem;
    right: 1rem;
    bottom: 0.9rem;
    gap: 0.85rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero__bottom-link {
    font-size: 12px;
    padding: 0.55rem 0.75rem;
    border-radius: 9999px;
  }

  .course-detail__mascot {
    min-height: 230px;
  }

  .course-blob--small {
    left: 0;
  }

  .course-blob--large {
    width: min(66vw, 220px);
    height: min(78vw, 280px);
  }

  .foot {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 4rem;
    text-align: center;
  }

  .foot-title,
  .foot-label,
  .foot .copy {
    text-align: center;
  }

  .foot-muted {
    margin-left: auto;
    margin-right: auto;
  }

  .foot .tags--icons {
    justify-content: center;
  }

  .foot-cols > div:first-child ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(7rem, 1fr));
    gap: 0.35rem 1rem;
    width: min(100%, 18rem);
    margin-left: auto;
    margin-right: auto;
  }

  .foot-cols > div:first-child li + li {
    margin-top: 0;
  }
}

@media (max-width: 380px) {
  .nav-row {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .nav-logo {
    width: 48px;
    height: 48px;
  }

  .nav-menu-btn {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .contact-panel {
    padding: 0.85rem;
  }

  .content-section,
  .about-screen,
  .facilities-screen,
  .mission-screen,
  .affiliation-screen,
  .contact-screen,
  .course-detail {
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }
}

/* Mascot cutouts: let transparent PNGs define the visible outer shape. */
.section-media--mascot,
.course-detail__mascot,
.courses-showcase,
.course-tile,
.info-card,
.team-card {
  overflow: visible;
}

.section-media--mascot {
  isolation: isolate;
}

.section-media--mascot::after {
  content: "";
  position: absolute;
  inset: clamp(0.75rem, 4vw, 2.25rem);
  z-index: 0;
  border-radius: 9999px;
  background: radial-gradient(circle, #fff 0%, #e8e2ce 62%, transparent 63%);
  pointer-events: none;
}

.section-media--mascot img,
.course-detail__mascot img,
.course-tile img,
.info-card img {
  display: block;
  position: relative;
  z-index: 1;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 18px 30px rgba(23, 19, 33, 0.14));
}

.course-tile img {
  width: auto;
  max-width: min(100%, 160px);
  height: auto;
  max-height: 180px;
  margin-bottom: 1rem;
}

.course-tile--feature img {
  max-width: min(100%, 175px);
  max-height: 195px;
}

.info-card img {
  height: auto;
  max-height: 120px;
}

.course-tile__bubble,
.course-blob {
  z-index: 0;
}

@media (max-width: 640px) {
  #home #hero-phrase {
    font-size: clamp(2.5rem, 13.5vw, 4.75rem);
    letter-spacing: 0.04em;
  }

  #home .hero__carousel {
    min-height: clamp(10.5rem, 28svh, 14rem);
  }

  #home .hero-fig--center,
  #home .hero-fig--center.is-spotlight {
    width: min(86vw, 20rem);
    height: clamp(10rem, 26svh, 13.5rem);
  }

  .section-label,
  .course-detail h1,
  .mission-screen h1,
  .affiliation-screen h1,
  .contact-panel h2,
  .page-article .page-hero h1,
  .page-article h1 {
    line-height: 1.22;
  }

  .section-copy h2,
  .section-head h2,
  .content-section--band h2 {
    line-height: 1.18;
    text-align: center;
  }
}

/* Strategic affiliation logo alignment */
.affiliation-logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 1.5rem);
  align-items: stretch;
  width: min(100%, 32rem);
  margin-bottom: 2rem;
}

.affiliation-logo {
  position: relative;
  display: grid;
  grid-template-rows: minmax(140px, 1fr) auto;
  gap: 0.85rem;
  width: 100%;
  min-height: clamp(205px, 18vw, 250px);
  padding: clamp(0.9rem, 2vw, 1.2rem);
  border: 1px solid rgba(214, 165, 41, 0.24);
  border-radius: 1.35rem;
  background:
    radial-gradient(circle at 18% 12%, rgba(244, 215, 122, 0.28), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.82));
  box-shadow: 0 22px 50px rgba(6, 26, 58, 0.12);
  overflow: visible;
}

.affiliation-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 0.15rem;
  border-radius: 1rem;
  background: #fff;
  filter: drop-shadow(0 10px 18px rgba(6, 26, 58, 0.1));
}

.affiliation-logo span {
  display: block;
  align-self: end;
  min-height: 2.4em;
  color: #1c1917;
  font-size: clamp(0.72rem, 1vw, 0.82rem);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.affiliation-screen h1 {
  clear: both;
  margin-top: 0;
}

@media (max-width: 900px) {
  .affiliation-logos {
    justify-content: center;
    width: min(100%, 34rem);
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 520px) {
  .affiliation-logos {
    grid-template-columns: 1fr;
  }

  .affiliation-logo {
    min-height: 220px;
  }
}

/* Keep hero Register button away from WhatsApp floating button. */
@media (min-width: 768px) {
  .hero__bottom-links {
    right: 6rem;
  }
}

@media (max-width: 767px) {
  section.hero,
  #home.hero {
    min-height: auto;
  }

  .hero__inner,
  .hero__stage {
    flex: 0 0 auto;
  }

  .hero__inner {
    padding-bottom: 0.15rem;
  }
}

/* Final mobile hero spacing: keep slider characters from sitting under the copy. */
@media (max-width: 767px) {
  #home .hero__copy--mobile {
    margin-top: 0.2rem;
  }

  #home[data-active-slide="animation"] .hero__carousel {
    min-height: clamp(11.5rem, 30svh, 15rem);
  }
}

/* Final header proportion pass: logo slightly larger than the call link. */
.nav-logo {
  width: 78px;
  height: 78px;
}

.nav-phone--brand {
  font-size: 14px;
  font-weight: 900;
  padding: 0.25rem 0;
}

@media (min-width: 1024px) {
  .nav-logo {
    width: 92px;
    height: 92px;
  }
}

@media (max-width: 1023.98px) {
  .nav-row {
    justify-content: flex-start;
    gap: 0.55rem;
  }

  .nav-actions {
    margin-left: auto;
  }

  .nav-logo {
    width: 68px;
    height: 68px;
  }
}

@media (max-width: 520px) {
  .nav-row {
    gap: 0.45rem;
  }

  .nav-logo {
    width: 60px;
    height: 60px;
  }

  .nav-phone--brand {
    font-size: 11px;
    padding: 0.2rem 0;
  }
}

@media (max-width: 380px) {
  .nav-logo {
    width: 54px;
    height: 54px;
  }
}

/* Contact page mobile fit: prevent the form, email, and map from overflowing. */
@media (max-width: 767px) {
  .contact-screen {
    align-items: stretch;
    gap: 1.5rem;
    min-height: auto;
    padding-top: 1.5rem;
    padding-bottom: 2.5rem;
  }

  .contact-screen__copy,
  .contact-panel,
  .map-card {
    max-width: 100%;
    min-width: 0;
  }

  .contact-lead {
    margin-bottom: 1.5rem;
    font-size: 14px;
  }

  .contact-info-grid {
    gap: 1rem;
  }

  .contact-info-grid a,
  .contact-info-grid p,
  .map-card__caption {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .contact-panel {
    justify-self: stretch;
    width: 100%;
    padding: 1rem;
    border-radius: 1.1rem;
  }

  .contact-form-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .contact-panel input,
  .contact-panel select,
  .contact-panel textarea {
    min-width: 0;
    font-size: 16px;
  }

  .contact-submit {
    width: 100%;
  }

  .map-card--embed iframe {
    min-height: 240px;
  }
}

@media (max-width: 380px) {
  .contact-screen,
  .content-section {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .contact-panel {
    padding: 0.875rem;
  }

  .map-card__caption {
    padding: 0.9rem;
  }
}

/* UI polish pass: readable type, natural image fit, and premium form spacing. */
.section-label,
.eyebrow {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: var(--pcr-ink);
}

.content-section--band .eyebrow {
  color: #f4d77a;
}

.section-label {
  font-size: clamp(1.75rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.eyebrow {
  margin-bottom: clamp(0.7rem, 1.4vw, 0.95rem);
  font-size: clamp(0.72rem, 1vw, 0.8rem);
  letter-spacing: 0.16em;
}

.hero__heading {
  text-shadow: none;
}

#hero-phrase {
  text-wrap: balance;
}

.hero__copy p {
  font-size: 12px;
  line-height: 1.65;
}

.content-section {
  padding-top: clamp(3.5rem, 6vw, 5.75rem);
  padding-bottom: clamp(3.5rem, 6vw, 5.75rem);
}

.content-section--intro,
.content-section--split,
.content-section--cta {
  gap: clamp(2rem, 5vw, 4.75rem);
}

.section-copy h2,
.section-head h2,
.content-section--band h2 {
  color: var(--pcr-ink);
  font-size: clamp(1.9rem, 3.5vw, 3.35rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.content-section--band h2 {
  color: #fff;
}

.section-copy p,
.section-head p {
  margin-top: clamp(0.9rem, 1.6vw, 1.15rem);
  font-size: clamp(1rem, 1.25vw, 1.08rem);
  line-height: 1.75;
}

.section-actions,
.band-actions {
  gap: 0.9rem;
  margin-top: clamp(1.35rem, 2.4vw, 1.9rem);
}

.btn-dark,
.btn-light,
.btn-link,
.contact-submit,
.hero__bottom-link {
  min-height: 2.85rem;
  padding: 0.85rem 1.35rem;
  font-size: 0.9rem;
  line-height: 1.1;
}

.section-media {
  display: grid;
  place-items: center;
  min-height: clamp(18rem, 32vw, 28rem);
  padding: clamp(0.85rem, 2vw, 1.25rem);
}

.section-media img {
  width: 100%;
  height: auto;
  max-height: clamp(18rem, 36vw, 31rem);
  object-fit: contain;
  object-position: center;
}

.section-media--mascot {
  min-height: clamp(20rem, 36vw, 30rem);
  padding: clamp(1.75rem, 4vw, 3.5rem);
}

.section-media--mascot img {
  width: min(100%, 29rem);
  max-height: clamp(18rem, 34vw, 30rem);
  object-position: center bottom;
}

.info-grid {
  gap: clamp(1rem, 2vw, 1.5rem);
}

.info-card {
  padding: clamp(1.25rem, 2vw, 1.65rem);
  border-radius: 1.35rem;
}

.info-card h3 {
  font-size: clamp(1.02rem, 1.2vw, 1.14rem);
  line-height: 1.28;
}

.info-card p {
  margin-top: 0.7rem;
  line-height: 1.62;
}

.contact-screen {
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 500px);
  gap: clamp(2.25rem, 5vw, 5rem);
  align-items: center;
  padding-top: clamp(2rem, 4vw, 4rem);
  padding-bottom: clamp(3rem, 5vw, 5rem);
}

.contact-screen__copy {
  max-width: 43rem;
}

.contact-lead {
  margin: clamp(1rem, 2vw, 1.35rem) 0 clamp(1.75rem, 3vw, 2.4rem);
  max-width: 42rem;
  color: rgba(6, 26, 58, 0.78);
  font-size: clamp(1rem, 1.3vw, 1.08rem);
  line-height: 1.75;
}

.contact-info-grid {
  gap: clamp(1rem, 2.5vw, 1.75rem) clamp(1.2rem, 3vw, 2.25rem);
}

.contact-info-grid h2 {
  margin-bottom: 0.5rem;
  color: var(--pcr-ink);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-info-grid a,
.contact-info-grid p {
  color: rgba(6, 26, 58, 0.82);
  font-size: clamp(0.9rem, 1vw, 0.98rem);
  line-height: 1.58;
}

.contact-panel {
  border-radius: 1.65rem;
  background: rgba(255, 255, 255, 0.86);
  padding: clamp(1.35rem, 3vw, 2.1rem);
  box-shadow: 0 24px 70px rgba(6, 26, 58, 0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.contact-panel h2 {
  margin-bottom: 1.15rem;
  color: var(--pcr-ink);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.contact-form-grid {
  gap: 1rem;
}

.contact-panel label {
  margin-bottom: 1rem;
  color: rgba(6, 26, 58, 0.82);
  font-size: 0.73rem;
  letter-spacing: 0.09em;
}

.contact-panel input,
.contact-panel select,
.contact-panel textarea {
  min-height: 3.15rem;
  margin-top: 0.45rem;
  border: 1px solid rgba(6, 26, 58, 0.16);
  border-radius: 0.95rem;
  background-color: rgba(255, 255, 255, 0.96);
  color: var(--pcr-ink);
  font-size: 0.95rem;
  line-height: 1.35;
  padding: 0.9rem 1rem;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.contact-panel select {
  padding-right: 2.6rem;
  background-position:
    calc(100% - 20px) 50%,
    calc(100% - 14px) 50%;
}

.contact-panel textarea {
  min-height: 8rem;
}

.contact-panel input:focus,
.contact-panel select:focus,
.contact-panel textarea:focus {
  border-color: rgba(11, 78, 155, 0.55);
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(11, 78, 155, 0.1);
}

.contact-submit {
  width: auto;
  margin-top: 0.15rem;
  padding-right: 1.65rem;
  padding-left: 1.65rem;
}

@media (max-width: 1023.98px) {
  #home.hero {
    min-height: auto;
    overflow-x: clip;
    display: flex;
    flex-direction: column;
  }

  #home .hero__inner {
    order: 1;
    display: flex;
    flex-direction: column;
    padding-top: clamp(5rem, 13vw, 6.5rem);
    padding-left: clamp(0.875rem, 4vw, 1.25rem);
    padding-right: clamp(0.875rem, 4vw, 1.25rem);
    padding-bottom: 0.15rem;
  }

  #home .hero__text-stack {
    width: 100%;
    max-width: 100%;
    min-height: 0 !important;
  }

  #home .hero__header {
    width: 100%;
  }

  #home .hero__heading {
    width: 100%;
    max-width: 100%;
  }

  #home #hero-phrase {
    display: block;
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    white-space: normal;
    font-size: clamp(2.85rem, 14vw, 5.75rem);
    line-height: 0.92;
    letter-spacing: 0.045em;
    text-align: center;
  }

  #home .hero__copy--desktop {
    display: none !important;
  }

  #home .hero__stage {
    width: 100%;
    max-width: 100%;
    margin-top: -1.25rem;
    padding-top: 0;
    margin-bottom: -0.35rem;
  }

  #home .hero__carousel {
    min-height: clamp(11.5rem, 30svh, 15rem);
    max-width: 100%;
    width: 100%;
  }

  #home .hero-fig--center,
  #home .hero-fig--center.is-spotlight {
    bottom: 0;
    width: min(88vw, 22rem);
    height: clamp(11rem, 28svh, 14.5rem);
    transform: translate3d(-50%, 0, 0) scale(1);
  }

  #home.is-hero-ready .hero-fig--center.is-spotlight {
    animation: hero-fig-in 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
  }

  #home .hero-fig--back {
    width: min(34vw, 8.5rem);
    height: clamp(7.5rem, 20svh, 11rem);
    opacity: 0.42;
    filter: blur(12px);
  }

  #home .hero-fig--back.is-left {
    transform: translate3d(calc(-50% - min(7.5rem, 26vw)), 4%, 0) scale(0.52);
  }

  #home .hero-fig--back.is-right {
    transform: translate3d(calc(-50% + min(7.5rem, 26vw)), 4%, 0) scale(0.52);
  }

  #home .hero__copy--mobile {
    margin-top: 0.25rem;
    margin-bottom: 0;
    padding: 0 0.35rem;
    max-width: 20rem;
  }

  #home .hero__copy--mobile p {
    margin-bottom: 0;
    line-height: 1.5;
  }

  #home .hero__copy--mobile p {
    max-width: 100%;
    margin-inline: auto;
    text-align: center;
    color: #1c1917;
  }

  #home .hero__controls {
    order: 2;
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    margin: 0.15rem auto 0;
  }

  #home .hero__arrow {
    width: 2rem;
    height: 2rem;
  }

  #home .hero__arrow svg {
    width: 0.85rem;
    height: 0.85rem;
  }

  #home .hero__bottom-links {
    order: 3;
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 100%;
    margin-top: 0.1rem;
    padding: 0 1rem 0.45rem;
    justify-content: space-between;
    gap: 0.5rem;
    flex-wrap: nowrap;
    pointer-events: auto;
  }

  .contact-screen {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-panel {
    width: min(100%, 42rem);
    justify-self: center;
  }
}

@media (max-width: 767px) {
  .content-section {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }

  .content-section--intro,
  .content-section--split,
  .content-section--cta {
    gap: 1.8rem;
  }

  .section-label {
    font-size: clamp(1.75rem, 8vw, 2.45rem);
    line-height: 1.12;
  }

  .section-copy h2,
  .section-head h2,
  .content-section--band h2 {
    font-size: clamp(1.7rem, 7vw, 2.35rem);
    line-height: 1.16;
  }

  .section-media {
    min-height: auto;
    padding: 1rem;
  }

  .section-media img {
    max-height: 22rem;
  }

  .section-actions,
  .band-actions {
    justify-content: center;
  }

  .btn-dark,
  .btn-light,
  .btn-link,
  .contact-submit {
    width: 100%;
  }

  .contact-screen {
    gap: 1.6rem;
    padding-top: 1.75rem;
    padding-bottom: 3rem;
  }

  .contact-screen__copy,
  .contact-info-grid,
  .contact-info-grid h2,
  .contact-info-grid a,
  .contact-info-grid p {
    text-align: left;
  }

  .contact-lead {
    margin-bottom: 1.6rem;
    font-size: 1rem;
    text-align: left;
  }

  .contact-info-grid {
    gap: 1rem;
  }

  .contact-panel {
    padding: 1.15rem;
    border-radius: 1.25rem;
  }

  .contact-form-grid {
    gap: 0;
  }

  .contact-panel label {
    margin-bottom: 0.95rem;
  }

  .contact-panel input,
  .contact-panel select,
  .contact-panel textarea {
    min-height: 3.25rem;
    font-size: 16px;
    padding: 0.9rem 0.95rem;
  }
}

@media (max-width: 380px) {
  #home #hero-phrase {
    font-size: clamp(2.15rem, 12.5vw, 3.35rem);
    letter-spacing: 0.035em;
  }

  #home .hero__carousel {
    min-height: 10rem;
  }

  #home .hero-fig--center,
  #home .hero-fig--center.is-spotlight {
    width: min(84vw, 17rem);
    height: clamp(9.5rem, 24svh, 12.5rem);
  }

  #home .hero__copy--mobile {
    max-width: 17.5rem;
    font-size: 11px;
  }

  .contact-panel {
    padding: 1rem;
  }
}

