

/*Local fonts: Rocky (headings) + Avenir LT Pro (body) */
@font-face {
  font-family: 'Rocky';
  src: url('fonts/rocky/Rocky.woff2') format('woff2'),
       url('fonts/rocky/Rocky.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Rocky';
  src: url('fonts/rocky/Rocky-Bold.woff2') format('woff2'),
       url('fonts/rocky/Rocky-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Rocky Fanciful';
  src: url('fonts/rocky/Rocky-FancifulBold.woff2') format('woff2'),
       url('fonts/rocky/Rocky-FancifulBold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Avenir LT Pro';
  src: url('fonts/avenir/AvenirLTProRoman.woff2') format('woff2'),
       url('fonts/avenir/AvenirLTProRoman.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Avenir LT Pro';
  src: url('fonts/avenir/AvenirLTProOblique.woff2') format('woff2'),
       url('fonts/avenir/AvenirLTProOblique.woff') format('woff');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Avenir LT Pro';
  src: url('fonts/avenir/AvenirLTProMedium.woff2') format('woff2'),
       url('fonts/avenir/AvenirLTProMedium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Avenir LT Pro';
  src: url('fonts/avenir/AvenirLTProHeavy.woff2') format('woff2'),
       url('fonts/avenir/AvenirLTProHeavy.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Design tokens */
:root {
  --navy: #203e74;
  --dark-navy: #1a325d;
  --coral: #f36e43;
  --cream: #f8f2e4;
  --off-white: #ebe6e6;

  --font-heading: 'Rocky', serif;
  --font-body: 'Avenir LT Pro', sans-serif;

--hero-overlay: linear-gradient(to top, rgba(13,25,46,0.95) 0%, rgba(13,25,46,0.7) 40%, rgba(13,25,46,0.2) 100%),rgba(32,62,116,0.35);
}

/* Reset & base */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-body);
  background-color: var(--navy);
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
}
button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}

.page-body {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: var(--navy);
}

/* Simple page router: only the active page is shown*/
.page {
  display: none;
}
.page.active {
  display: block;
}

/* Buttons */
.btn-cta {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 1rem;
  font-size: 1rem;
  font-weight: 500;
  background-color: var(--coral);
  color: var(--cream);
  transition: filter 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}
.btn-cta:hover {
  filter: brightness(1.1);
  transform: scale(1.05);
}
.btn-cta:active {
  transform: scale(0.95);
}
@media (min-width: 640px) {
  .btn-cta { padding: 0.75rem 2rem; font-size: 1.125rem; }
}

/*Navbar*/
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  padding: 0.75rem 0.75rem 0.5rem;
}
@media (min-width: 640px) {
  .navbar { padding: 1.25rem 1rem 0.5rem; }
}
.navbar__inner {
  width: 100%;
  max-width: 64rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem 1rem;
  border-radius: 9999px;
  border: 1px solid var(--cream);
  background-color: var(--navy);
}
@media (min-width: 640px) {
  .navbar__inner { padding: 0.75rem 1.5rem; }
}
@media (min-width: 768px) {
  .navbar__inner { padding: 0.75rem 2rem; }
}
.navbar__logo {
  flex-shrink: 0;
}
.navbar__logo img {
  height: 1.75rem;
  width: auto;
  object-fit: contain;
}
@media (min-width: 640px) {
  .navbar__logo img { height: 2.25rem; }
}
@media (min-width: 768px) {
  .navbar__logo img { height: 2.5rem; }
}
.navbar__links {
  display: none;
  align-items: center;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .navbar__links { display: flex; }
}
@media (min-width: 1024px) {
  .navbar__links { gap: 2rem; }
}
.navbar__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: white;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.navbar__link:hover {
  opacity: 0.9;
  transform: scale(1.1);
}
.navbar__link--active {
  color: var(--coral);
}
@media (min-width: 1024px) {
  .navbar__link { font-size: 1rem; }
}
.navbar__hamburger {
  color: white;
  padding: 0.25rem;
}
.navbar__hamburger .icon-close {
  display: none;
}
.navbar__hamburger.open .icon-menu {
  display: none;
}
.navbar__hamburger.open .icon-close {
  display: block;
}
@media (min-width: 768px) {
  .navbar__hamburger { display: none; }
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0.75rem;
  right: 0.75rem;
  margin-top: 0.375rem;
  border-radius: 1rem;
  border: 1px solid var(--cream);
  background-color: var(--navy);
  overflow: hidden;
}
.mobile-menu.open {
  display: block;
}
@media (min-width: 768px) {
  .mobile-menu { display: none !important; }
}
.mobile-menu__link {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.875rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: white;
  border-bottom: 1px solid rgba(248,242,228,0.15);
  transition: opacity 0.2s ease;
}
.mobile-menu__link:last-child {
  border-bottom: none;
}
.mobile-menu__link:hover {
  opacity: 0.75;
}
.mobile-menu__link--active {
  color: var(--coral);
}

/*Hero section (every page)*/
.hero {
  position: relative;
  width: 100%;
  min-height: 75vw;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
@media (min-width: 640px) {
  .hero { min-height: 65vh; }
}
@media (min-width: 768px) {
  .hero { min-height: 100vh; }
}
.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px);
  transform: scale(1.03);
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
}
.hero__content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1.25rem 2.5rem;
}
@media (min-width: 640px) {
  .hero__content { padding: 0 2rem 4rem; }
}
@media (min-width: 768px) {
  .hero__content { padding: 0 2.5rem 6rem; }
}
.hero__inner {
  max-width: 32rem;
}
@media (min-width: 640px) {
  .hero__inner { max-width: 36rem; }
}
.hero__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.25rem;
  margin: 0 0 1rem;
  line-height: 1.2;
  color: var(--cream);
}
@media (min-width: 640px) { .hero__title { font-size: 3rem; } }
@media (min-width: 768px) { .hero__title { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero__title { font-size: 4.5rem; } }

.hero__text {
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0 0 1.75rem;
  color: var(--cream);
  font-weight: 700;
}
@media (min-width: 640px) { .hero__text { font-size: 1rem; } }
@media (min-width: 768px) { .hero__text { font-size: 1.125rem; } }
@media (min-width: 1024px) { .hero__text { font-size: 1.25rem; } }

.hero__badge {
  display: inline-block;
  font-family: var(--font-heading);
  padding: 0.375rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--coral);
  color: var(--coral);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
@media (min-width: 640px) {
  .hero__badge { padding: 0.5rem 1.25rem; font-size: 1.5rem; }
}

/*section wrapper*/
.section {
  width: 100%;
  padding: 3rem 1.25rem;
}
@media (min-width: 640px) { .section { padding: 4rem 2rem; } }
@media (min-width: 1024px) { .section { padding: 5rem 2rem; } }

.section--cream    { background-color: var(--cream); }
.section--navy     { background-color: var(--navy); }
.section--dark-navy{ background-color: var(--dark-navy); }
.section--coral    { background-color: var(--coral); }

.container {
  max-width: 56rem;
  margin: 0 auto;
}
.container--wide {
  max-width: 72rem;
  margin: 0 auto;
}
.container--narrow-inner {
  max-width: 64rem;
  margin: 0 auto;
}

.heading-lg {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.35;
  margin: 0 0 1.25rem;
}
@media (min-width: 640px) { .heading-lg { font-size: 1.875rem; margin-bottom: 1.5rem; } }
@media (min-width: 768px) { .heading-lg { font-size: 2.25rem; } }
@media (min-width: 1024px) { .heading-lg { font-size: 3rem; } }

.body-text {
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 700;
  margin: 0 0 1.75rem;
}
@media (min-width: 640px) { .body-text { font-size: 1.125rem; margin-bottom: 2rem; } }
@media (min-width: 768px) { .body-text { font-size: 1.25rem; } }

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

/*Home page*/
.quote-banner {
  width: 100%;
  padding: 3.5rem 1.25rem;
  background-color: var(--coral);
}
@media (min-width: 640px) { .quote-banner { padding: 5rem 2rem; } }

.quote-banner__text {
  font-family: var(--font-heading);
  color: var(--cream);
  font-size: 1.25rem;
  line-height: 1.6;
  margin: 0 0 1rem;
}
@media (min-width: 640px) { .quote-banner__text { font-size: 1.5rem; } }
@media (min-width: 768px) { .quote-banner__text { font-size: 1.875rem; } }
@media (min-width: 1024px) { .quote-banner__text { font-size: 2.25rem; } }

.quote-banner__attribution {
  font-family: var(--font-body);
  color: var(--cream);
  font-size: 1rem;
}
@media (min-width: 640px) { .quote-banner__attribution { font-size: 1.125rem; } }
@media (min-width: 768px) { .quote-banner__attribution { font-size: 1.25rem; } }

/*About Page*/
.purpose-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.purpose-section__bg-wrap {
  position: absolute;
  inset: 0;
}
.purpose-section__bg-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.purpose-section__scrim {
  position: absolute;
  inset: 0;
  background-color: rgba(13,25,46,0.55);
}
.purpose-section__content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 3rem 1.25rem;
}
@media (min-width: 640px) { .purpose-section__content { padding: 4rem 2rem; } }
@media (min-width: 1024px) { .purpose-section__content { padding: 5rem 2rem; } }

.purpose-grid {
  max-width: 64rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .purpose-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}

.purpose-card {
  border-radius: 1rem;
  padding: 1.5rem;
  background-color: rgba(243,110,67,0.6);
  backdrop-filter: blur(6px);
}
@media (min-width: 640px) { .purpose-card { padding: 2rem; } }
@media (min-width: 768px) { .purpose-card { padding: 2.5rem; } }

.purpose-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--cream);
  font-size: 1.5rem;
  margin: 0 0 0.75rem;
}
@media (min-width: 640px) { .purpose-card__title { font-size: 1.875rem; margin-bottom: 1rem; } }
@media (min-width: 768px) { .purpose-card__title { font-size: 2.25rem; } }

.purpose-card__text {
  color: var(--cream);
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}
@media (min-width: 640px) { .purpose-card__text { font-size: 1rem; } }
@media (min-width: 768px) { .purpose-card__text { font-size: 1.125rem; } }

/*Featured Works page*/
.welcome-banner {
  width: 100%;
  padding: 2.5rem 1.25rem;
  background-color: var(--coral);
}
@media (min-width: 640px) { .welcome-banner { padding: 3rem 2rem; } }
@media (min-width: 768px) { .welcome-banner { padding: 3.5rem 2rem; } }

.welcome-banner__text {
  font-family: var(--font-heading);
  color: var(--cream);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}
@media (min-width: 640px) { .welcome-banner__text { font-size: 1.125rem; } }
@media (min-width: 768px) { .welcome-banner__text { font-size: 1.25rem; } }
@media (min-width: 1024px) { .welcome-banner__text { font-size: 1.5rem; } }

.exhibition-intro {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}
@media (min-width: 1024px) {
  .exhibition-intro { flex-direction: row; gap: 3rem; margin-bottom: 3rem; }
}
.exhibition-intro__text {
  flex: 1;
}
.exhibition-intro__image {
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
@media (min-width: 1024px) {
  .exhibition-intro__image { width: 45%; }
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .card-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}

.card {
  border-radius: 0.75rem;
  padding: 1.25rem;
  border: 0.5px solid var(--navy);
  background-color: var(--off-white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}
@media (min-width: 640px) { .card { padding: 1.5rem; } }

.card--dark {
  border-color: rgba(235,230,230,0.3);
  background-color: var(--dark-navy);
}

.card--centered {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 10rem;
}

.card__title {
  font-family: var(--font-heading);
  color: var(--coral);
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}
@media (min-width: 640px) { .card__title { font-size: 1.5rem; } }
@media (min-width: 768px) { .card__title { font-size: 1.875rem; } }

.card__text {
  color: var(--navy);
  font-size: 0.875rem;
  margin: 0 0 1rem;
}
@media (min-width: 640px) { .card__text { font-size: 1rem; } }

.card--dark .card__title { color: var(--coral); }
.card--dark .card__text { color: var(--cream); opacity: 0.75; }

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
@media (min-width: 640px) {
  .showcase-grid { grid-template-columns: repeat(4, 1fr); }
}
.showcase-grid .hover-zoom-wrap {
  aspect-ratio: 1 / 1;
  border-radius: 0.5rem;
}

.doc-intro {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}
@media (min-width: 1024px) {
  .doc-intro { flex-direction: row; gap: 3rem; margin-bottom: 3rem; }
}
.doc-intro__image {
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .doc-intro__image { width: 40%; }
}
.doc-intro__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.doc-intro__title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--cream);
  font-size: 1.5rem;
  margin: 0 0 0.75rem;
}
@media (min-width: 640px) { .doc-intro__title { font-size: 1.875rem; } }
@media (min-width: 768px) { .doc-intro__title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .doc-intro__title { font-size: 3rem; } }

.doc-intro__subtitle {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--coral);
  font-size: 1.125rem;
  margin: 0 0 0.75rem;
}
@media (min-width: 640px) { .doc-intro__subtitle { font-size: 1.25rem; } }
@media (min-width: 768px) { .doc-intro__subtitle { font-size: 1.5rem; } }

.doc-intro__body {
  color: var(--cream);
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}
@media (min-width: 640px) { .doc-intro__body { font-size: 1rem; } }
@media (min-width: 768px) { .doc-intro__body { font-size: 1.125rem; } }

.video-card__link {
  display: block;
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
}
.video-card__link img {
  transition: transform 0.3s ease;
}
.video-card__link:hover img {
  transform: scale(1.08);
}
.video-card__play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0,0,0,0.3);
  transition: background-color 0.3s ease;
}
.video-card__link:hover .video-card__play-overlay {
  background-color: rgba(0,0,0,0.5);
}
.video-card__play-button {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--coral);
  transition: transform 0.3s ease;
}
@media (min-width: 640px) {
  .video-card__play-button { width: 4rem; height: 4rem; }
}
.video-card__link:hover .video-card__play-button {
  transform: scale(1.1);
}
.video-card__play-button svg {
  width: 1.5rem;
  height: 1.5rem;
  margin-left: 0.25rem;
}
@media (min-width: 640px) {
  .video-card__play-button svg { width: 1.75rem; height: 1.75rem; }
}

/*Contributors page*/
.lecturer-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}
@media (min-width: 1024px) {
  .lecturer-section { flex-direction: row; gap: 3rem; }
}
.lecturer-section__photo {
  width: 11rem;
  height: 11rem;
  border-radius: 9999px;
  overflow: hidden;
  flex-shrink: 0;
}
@media (min-width: 640px) { .lecturer-section__photo { width: 14rem; height: 14rem; } }
@media (min-width: 768px) { .lecturer-section__photo { width: 16rem; height: 16rem; } }
@media (min-width: 1024px) { .lecturer-section__photo { width: 18rem; height: 18rem; } }
.lecturer-section__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lecturer-section__text {
  text-align: center;
}
@media (min-width: 1024px) {
  .lecturer-section__text { text-align: left; }
}
.lecturer-section__eyebrow {
  color: var(--cream);
  opacity: 0.85;
  font-size: 0.875rem;
  margin: 0 0 0.25rem;
}
@media (min-width: 640px) { .lecturer-section__eyebrow { font-size: 1rem; } }
.lecturer-section__name {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--cream);
  text-transform: uppercase;
  font-size: 1.5rem;
  margin: 0 0 0.75rem;
}
@media (min-width: 640px) { .lecturer-section__name { font-size: 1.875rem; margin-bottom: 1rem; } }
@media (min-width: 768px) { .lecturer-section__name { font-size: 2.25rem; } }
@media (min-width: 1024px) { .lecturer-section__name { font-size: 3rem; } }
.lecturer-section__body {
  color: var(--cream);
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}
@media (min-width: 640px) { .lecturer-section__body { font-size: 1rem; } }

.team-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy);
  font-size: 1.875rem;
  margin: 0;
}
@media (min-width: 640px) { .team-heading { font-size: 2.25rem; } }
@media (min-width: 768px) { .team-heading { font-size: 3rem; } }

.team-grid {
  max-width: 64rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  justify-items: center;
}
@media (min-width: 640px) {
  .team-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (min-width: 1024px) {
  .team-grid { grid-template-columns: 1fr 1fr 1fr; gap: 3rem; }
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  width: 100%;
  max-width: 260px;
}
.team-member__photo {
  width: 9rem;
  height: 9rem;
  border-radius: 9999px;
  overflow: hidden;
}
@media (min-width: 640px) { .team-member__photo { width: 11rem; height: 11rem; } }
@media (min-width: 768px) { .team-member__photo { width: 13rem; height: 13rem; } }
@media (min-width: 1024px) { .team-member__photo { width: 12rem; height: 12rem; } }
.team-member__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-member__name {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--cream);
  font-size: 1.25rem;
  margin: 0;
}
@media (min-width: 640px) { .team-member__name { font-size: 1.5rem; } }
@media (min-width: 768px) { .team-member__name { font-size: 1.875rem; } }
.team-member__role {
  color: var(--cream);
  opacity: 0.6;
  font-size: 0.75rem;
  text-transform: capitalize;
  letter-spacing: 0.1em;
  margin: 0.25rem 0 0;
}
@media (min-width: 640px) { .team-member__role { font-size: 0.875rem; } }

/*Footer*/
.site-footer {
  width: 100%;
  padding: 2.5rem 1rem;
  background-color: var(--dark-navy);
}
@media (min-width: 768px) { .site-footer { padding: 3.5rem 1.5rem; } }

.site-footer__inner {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}
@media (min-width: 768px) { .site-footer__inner { gap: 2rem; } }

.site-footer__logo img {
  height: 2.5rem;
  width: auto;
  object-fit: contain;
  transition: opacity 0.2s ease;
}
.site-footer__logo:hover img { opacity: 0.8; }
@media (min-width: 640px) { .site-footer__logo img { height: 3rem; } }
@media (min-width: 768px) { .site-footer__logo img { height: 3.5rem; } }

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  column-gap: 1.5rem;
  row-gap: 0.5rem;
}
@media (min-width: 768px) { .site-footer__links { column-gap: 2rem; } }

.site-footer__label {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--cream);
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  width: 100%;
  text-align: center;
}
@media (min-width: 768px) { .site-footer__label { width: auto; } }

.site-footer__link {
  color: white;
  font-size: 0.875rem;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
@media (min-width: 640px) { .site-footer__link { font-size: 1rem; } }
.site-footer__link:hover {
  transform: scale(1.1);
  opacity: 0.9;
}

.site-footer__divider {
  width: 100%;
  height: 1px;
  background-color: rgba(248,242,228,0.15);
}

.site-footer__social-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 640px) { .site-footer__social-row { flex-direction: row; gap: 1.5rem; } }

.site-footer__social-icons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(248,242,228,0.25);
  background-color: rgba(248,242,228,0.07);
  color: white;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.social-icon:hover {
  transform: scale(1.1);
  filter: brightness(1.1);
}
.social-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

/*Hover-zoom images (gallery thumbnails)*/
.hover-zoom-wrap {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
}
.hover-zoom-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.hover-zoom-wrap:hover img {
  transform: scale(1.1);
}
.hover-zoom-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(32,62,116,0.45);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.hover-zoom-wrap:hover .hover-zoom-overlay {
  opacity: 1;
}

/*Lightbox modal*/
#lightbox-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  align-items: center;
  justify-content: center;
  background-color: rgba(0,0,0,0.92);
}
#lightbox-modal.open {
  display: flex;
}
.lightbox-close,
.lightbox-arrow {
  position: absolute;
  color: white;
  padding: 0.5rem;
  border-radius: 9999px;
  transition: background-color 0.2s ease;
}
.lightbox-close:hover,
.lightbox-arrow:hover {
  background-color: rgba(255,255,255,0.1);
}
.lightbox-close {
  top: 1rem;
  right: 1rem;
}
.lightbox-arrow--prev {
  left: 0.5rem;
}
@media (min-width: 768px) { .lightbox-arrow--prev { left: 1rem; } }
.lightbox-arrow--next {
  right: 0.5rem;
}
@media (min-width: 768px) { .lightbox-arrow--next { right: 1rem; } }

.lightbox-image-wrap {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-image-wrap img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
}

#lightbox-dots {
  position: absolute;
  bottom: 1.25rem;
  display: flex;
  gap: 0.5rem;
}
.lightbox-dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background-color: rgba(255,255,255,0.35);
  transition: background-color 0.2s ease;
}
.lightbox-dot.active {
  background-color: #ffffff;
}
