:root {
  --navy: #0d3b4c;
  --navy-light: #15566b;
  --gold: #c9a227;
  --gold-soft: #e8d48a;
  --coral: #d45d3a;
  --cream: #faf8f5;
  --sand: #f0ebe3;
  --white: #ffffff;
  --ink: #1a1a2e;
  --muted: #5c6470;
  --radius: 12px;
  --shadow: 0 8px 30px rgba(13, 59, 76, 0.08);
  --shadow-lg: 0 12px 40px rgba(13, 59, 76, 0.12);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
}

body.nav-open {
  overflow: hidden;
}

main {
  flex: 1;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  padding: 0.75rem 1rem;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

a {
  color: var(--navy-light);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--coral);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: max(1.25rem, env(safe-area-inset-left, 0px));
  padding-right: max(1.25rem, env(safe-area-inset-right, 0px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
  position: relative;
}

.site-header__end {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-brand {
  flex-shrink: 0;
  line-height: 0;
}

.site-brand img {
  height: 64px;
  width: auto;
  max-width: min(240px, 42vw);
  display: block;
  object-fit: contain;
}

.site-nav-wrap {
  display: flex;
  justify-content: center;
  flex: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  display: block;
  padding: 0.55rem 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}

.site-nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.site-nav a.is-active {
  color: var(--navy);
  background: var(--gold);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-header__email {
  font-size: 0.8rem;
  color: var(--gold-soft);
  display: none;
}

@media (min-width: 1000px) {
  .site-header__email {
    display: block;
  }
}

.site-header__email a {
  color: var(--gold-soft);
}

.site-header__email a:hover {
  color: var(--white);
}

.btn--header {
  padding: 0.5rem 1.1rem;
  font-size: 0.88rem;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: var(--white);
  font-size: 1.35rem;
  cursor: pointer;
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
  line-height: 1;
  min-width: 44px;
  min-height: 44px;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Quick navigation (home) */
.nav-quick {
  background: var(--white);
  border-bottom: 1px solid rgba(13, 59, 76, 0.08);
  padding: 1.25rem 0;
  margin-top: -1px;
}

.nav-quick__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
}

.nav-quick__item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.1rem 0.75rem;
  border-radius: var(--radius);
  background: var(--cream);
  border: 1px solid transparent;
  color: var(--ink);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.nav-quick__item:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  color: var(--navy);
}

.nav-quick__item.is-active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.nav-quick__item.is-active:hover {
  color: var(--white);
}

.nav-quick__label {
  font-size: 0.92rem;
  font-weight: 700;
}

/* Breadcrumbs */
.breadcrumb {
  padding: 1rem 0 0;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.88rem;
}

.breadcrumb li + li::before {
  content: "/";
  margin-right: 0.35rem;
  opacity: 0.5;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb [aria-current="page"] {
  color: var(--gold-soft);
  font-weight: 600;
}

/* Gallery cards */
.gallery-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg, 0 12px 36px rgba(13, 59, 76, 0.12));
}

.gallery-item .media-placeholder {
  border-radius: 0;
}

/* Footer nav highlight */
.site-footer__nav a {
  display: inline-block;
  padding: 0.2rem 0;
}

.site-footer__nav a.is-active {
  color: var(--gold);
  font-weight: 600;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.site-nav__mobile-cta {
  display: none;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.site-nav__mobile-cta .btn {
  width: 100%;
  text-align: center;
}

.hero {
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 20%, rgba(201, 162, 39, 0.25) 0%, transparent 45%),
    radial-gradient(circle at 10% 80%, rgba(212, 93, 58, 0.15) 0%, transparent 40%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 4rem 0 5rem;
  min-height: 420px;
}

.hero__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 1rem;
}

.hero__lead {
  font-size: 1.15rem;
  opacity: 0.92;
  max-width: 32rem;
  margin-bottom: 1.75rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__visual-box {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 3;
  background: rgba(255, 255, 255, 0.06);
  border: 2px dashed rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Large association logo (home hero, gallery page) */
.hero__logo,
.logo-prominent {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.hero__logo img,
.logo-prominent img {
  width: min(400px, 100%);
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
}

.hero__wave {
  display: block;
  width: 100%;
  height: 48px;
  margin-bottom: -1px;
}

.hero__wave path {
  fill: var(--cream);
}

.btn {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  font-family: var(--font-body);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--coral);
  color: var(--white);
}

.btn--primary:hover {
  background: #b84e2f;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(212, 93, 58, 0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.btn--outline {
  background: var(--white);
  color: var(--navy);
  border-color: var(--navy);
}

.btn--outline:hover {
  background: var(--sand);
  color: var(--navy);
}

.section {
  padding: 4.5rem 0;
}

.section--sand {
  background: var(--sand);
}

.section--alt {
  background: var(--white);
}

.section__head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.5rem;
}

.section__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: var(--navy);
}

.section__intro {
  color: var(--muted);
  margin: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.about-grid h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--navy);
  margin: 0 0 1rem;
}

.about-grid p {
  color: var(--muted);
  margin: 0 0 1rem;
}

.event-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.event-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1.25rem;
  align-items: stretch;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border-left: 4px solid var(--gold);
  transition: transform 0.2s, box-shadow 0.2s;
}

.event-card:hover {
  transform: translateX(4px);
  box-shadow: 0 12px 36px rgba(13, 59, 76, 0.12);
}

.event-card__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
  padding: 1rem 0.5rem;
  text-align: center;
}

.event-card__date strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1;
}

.event-card__date span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.85;
  margin-top: 0.25rem;
}

.event-card__body {
  padding: 1.25rem 1.25rem 1.25rem 0;
}

.event-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 0.35rem;
  color: var(--navy);
}

.event-card__body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.event-card__body a {
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  display: inline-block;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery-item figcaption {
  padding: 0.65rem 0.85rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.cta-strip {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius);
  color: var(--white);
}

.cta-strip h2 {
  font-family: var(--font-display);
  margin: 0 0 0.75rem;
  font-size: 1.75rem;
}

.cta-strip p {
  margin: 0 0 1.5rem;
  opacity: 0.9;
}

.cta-strip__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}

.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 2rem 0 2.75rem;
}

.page-hero .container {
  text-align: left;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0;
}

.page-hero p {
  margin: 0.75rem auto 0;
  max-width: 32rem;
  opacity: 0.85;
}

/* Photo gallery — prominent logo */
.page-hero--gallery {
  padding: 2.5rem 0 3rem;
}

.page-hero--gallery .container {
  text-align: center;
}

.page-hero--gallery .breadcrumb ol {
  justify-content: center;
}

.gallery-page-logo {
  margin: 0.5rem auto 1.75rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-info {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-info h2 {
  font-family: var(--font-display);
  color: var(--navy);
  margin: 0 0 1.25rem;
  font-size: 1.5rem;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--sand);
  color: var(--muted);
}

.contact-info li:last-child {
  border-bottom: none;
}

.contact-info strong {
  display: block;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.contact-form-panel {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
  color: var(--navy);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid #d0d5dc;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--navy-light);
  box-shadow: 0 0 0 3px rgba(21, 86, 107, 0.15);
}

.form-status {
  padding: 0.85rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  margin: 0 0 1rem;
}

.form-status--success {
  background: #e8f5e9;
  color: #1b5e20;
  border: 1px solid #a5d6a7;
}

.form-status--error {
  background: #ffebee;
  color: #b71c1c;
  border: 1px solid #ef9a9a;
}

.form-status a {
  color: inherit;
  font-weight: 700;
}

.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Executive committee */
.committee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.committee-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(13, 59, 76, 0.06);
}

.committee-card__photo {
  width: 120px;
  height: 120px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  min-height: 0;
  aspect-ratio: 1;
  font-size: 0.8rem;
}

.committee-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--gold);
  margin: 0 0 0.35rem;
  font-weight: 600;
}

.committee-card__name {
  margin: 0;
  color: var(--navy);
  font-weight: 600;
  font-size: 1.1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.membership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.perks {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.perks li {
  display: block;
  background: var(--white);
  padding: 1rem 1rem 1rem 1.15rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  border-left: 3px solid var(--gold);
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  padding: 3rem 0 0;
  margin-top: 4rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
}

.site-footer__brand img {
  height: 80px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  margin-bottom: 1rem;
  display: block;
}

.site-footer h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin: 0 0 1rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 0.5rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.75);
}

.site-footer a:hover {
  color: var(--white);
}

.site-footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0 1.5rem;
  text-align: center;
  font-size: 0.85rem;
}

.site-footer__copy {
  margin: 0;
}

.site-footer__host {
  margin: 0.5rem 0 0;
  font-size: 0.75rem;
  opacity: 0.65;
}

.site-footer__bar a {
  color: var(--gold-soft);
}

.site-footer__host a {
  color: rgba(255, 255, 255, 0.7);
}

.site-footer__host a:hover {
  color: var(--white);
}

.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 2rem;
}

@media (max-width: 900px) {
  .hero__grid,
  .about-grid,
  .contact-layout,
  .membership-grid {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    gap: 1.75rem;
    padding: 2.5rem 0 3.5rem;
    min-height: 0;
    text-align: center;
  }

  .hero__logo {
    order: -1;
  }

  .hero__logo img,
  .logo-prominent img {
    width: min(360px, 88vw);
    margin: 0 auto;
  }

  .hero__lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav-quick__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .committee-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet & phone: hamburger nav (5 links don't fit in header) */
@media (max-width: 991px) {
  .site-nav-wrap {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-light);
    padding: 1rem max(1.25rem, env(safe-area-inset-right, 0px)) 1.25rem max(1.25rem, env(safe-area-inset-left, 0px));
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
    justify-content: stretch;
    flex: none;
    max-height: calc(100dvh - 76px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .site-header__actions {
    display: none;
  }

  .site-nav-wrap.is-open {
    display: block;
  }

  .site-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }

  .site-nav a {
    padding: 0.85rem 1rem;
    border-radius: 8px;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .site-nav__mobile-cta {
    display: block;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }

  .hero__logo img,
  .logo-prominent img {
    width: min(300px, 90vw);
  }

  .hero h1 {
    font-size: clamp(1.65rem, 6vw, 2.25rem);
  }

  .about-grid h2 {
    font-size: 1.65rem;
  }

  .nav-quick {
    padding: 1rem 0;
  }

  .nav-quick__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .nav-quick__item {
    padding: 0.9rem 0.5rem;
  }

  .nav-quick__label {
    font-size: 0.85rem;
  }

  .committee-grid {
    grid-template-columns: 1fr;
  }

  .event-card {
    grid-template-columns: 1fr;
  }

  .event-card__date {
    flex-direction: row;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1rem;
  }

  .event-card__date span {
    margin-top: 0;
  }

  .event-card__body {
    padding: 1rem 1.25rem 1.25rem;
  }

  .event-card:hover {
    transform: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 16px;
  }

  .btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .contact-form-panel,
  .contact-info {
    padding: 1.25rem;
  }

  .cta-strip {
    padding: 2rem 1.25rem;
  }

  .cta-strip h2 {
    font-size: 1.45rem;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .page-hero .container {
    text-align: center;
  }

  .page-hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .breadcrumb ol {
    justify-content: center;
  }

  .gallery-item:hover,
  .event-card:hover {
    transform: none;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 1rem;
  }

  .site-header__inner {
    min-height: 68px;
  }

  .site-brand img {
    height: 52px;
    max-width: 38vw;
  }

  .site-footer__brand img {
    height: 68px;
  }

  .nav-quick__grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .section__head {
    margin-bottom: 1.75rem;
  }

  .page-hero {
    padding: 1.5rem 0 2rem;
  }

  .page-hero h1 {
    font-size: 1.65rem;
  }

  .hero__logo img,
  .gallery-page-logo img,
  .logo-prominent img {
    width: min(280px, 92vw);
  }

  .page-hero--gallery {
    padding: 2rem 0 2.5rem;
  }
}

@media (hover: hover) and (pointer: fine) {
  .gallery-item:hover,
  .event-card:hover {
    transform: translateY(-3px);
  }

  .event-card:hover {
    transform: translateX(4px);
  }
}
