:root {
  --navy: #001f4c;
  --navy-dark: #001533;
  --sky: #00aaff;
  --sky-light: #e8f6fc;
  --white: #ffffff;
  --gray-50: #f7f9fb;
  --gray-100: #eef2f6;
  --gray-400: #94a3b8;
  --gray-600: #64748b;
  --gray-800: #334155;
  --shadow: 0 4px 24px rgba(30, 58, 95, 0.08);
  --shadow-lg: 0 12px 48px rgba(30, 58, 95, 0.15);
  --radius: 12px;
  --header-h: 252px;
  --font: "DM Sans", system-ui, sans-serif;
  --font-display: "Outfit", system-ui, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  position: relative;
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

/* Watermerk: volledige paginahoogte, van boven naar beneden */
.page-shell {
  position: relative;
}

.page-watermark {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 1rem 3rem;
  box-sizing: border-box;
  pointer-events: none;
  overflow: hidden;
}

.page-watermark__mark {
  width: min(380px, 72vw);
  height: auto;
  opacity: 0.08;
  flex-shrink: 0;
  object-fit: contain;
}

.page-shell main,
.page-shell .site-footer {
  position: relative;
  z-index: 1;
}

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

a {
  color: var(--navy);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--sky);
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--header-h);
  padding: 0.65rem 1.25rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(30, 58, 95, 0.06);
  transition: box-shadow var(--transition);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow);
}

.logo-link {
  grid-column: 2;
  justify-self: center;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo {
  height: 198px;
  width: auto;
  max-width: min(720px, 85vw);
  object-fit: contain;
}

/* Hamburger */
.menu-toggle {
  grid-column: 3;
  justify-self: end;
  position: relative;
  z-index: 110;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  padding: 10px;
  border: none;
  border-radius: 10px;
  background: var(--gray-50);
  cursor: pointer;
  transition: background var(--transition);
}

.menu-toggle:hover {
  background: var(--sky-light);
}

.menu-toggle__bar {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* Nav overlay */
.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(21, 42, 69, 0.45);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.nav-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.site-nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 95;
  width: min(340px, 88vw);
  height: 100dvh;
  padding: calc(var(--header-h) + 2rem) 2rem 2rem;
  background: var(--white);
  box-shadow: -8px 0 40px rgba(30, 58, 95, 0.12);
  transform: translateX(100%);
  transition: transform var(--transition);
  overflow-y: auto;
}

.site-nav.is-open {
  transform: translateX(0);
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__link {
  display: block;
  padding: 1rem 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--gray-100);
}

.site-nav__link:hover {
  color: var(--sky);
  padding-left: 0.5rem;
}

.site-nav__contact {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--sky-light);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.site-nav__contact a {
  font-weight: 500;
}

/* Hero */
.hero {
  position: relative;
}

.hero__banner {
  position: relative;
  min-height: min(58svh, 560px);
  margin-top: var(--header-h);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 100%);
}

.hero__bg--photo {
  background-size: cover;
  background-position: center;
}

.hero__overlay--photo {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(21, 42, 69, 0.25) 0%,
    rgba(255, 255, 255, 0.15) 55%,
    var(--white) 100%
  );
}

.hero__intro {
  position: relative;
  background: rgba(255, 255, 255, 0.94);
  padding: 3.5rem 1.25rem 4.5rem;
}

.hero__content {
  position: relative;
  width: min(640px, 92vw);
  margin-inline: auto;
  text-align: center;
  color: var(--navy);
}

.hero__eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--sky-light);
  border: 1px solid rgba(62, 184, 232, 0.35);
  border-radius: 100px;
}

.hero__title {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.hero__text {
  margin: 0 0 2rem;
  font-size: 1.15rem;
  color: var(--gray-600);
  max-width: 32ch;
  margin-inline: auto;
  margin-bottom: 2rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.75rem;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn--primary {
  background: var(--sky);
  color: var(--navy-dark);
  box-shadow: 0 4px 20px rgba(62, 184, 232, 0.4);
}

.btn--primary:hover {
  background: #33bbff;
  color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(62, 184, 232, 0.5);
}

.btn--block {
  width: 100%;
  margin-top: 1.25rem;
}

/* Sections */
.section {
  padding: 5rem 0;
  background: rgba(255, 255, 255, 0.94);
}

.section--alt {
  background: rgba(247, 249, 251, 0.94);
}

.section--contact {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(232, 246, 252, 0.94) 100%);
}

.section__label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky);
}

.section__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.section__intro {
  margin: 0 0 2.5rem;
  max-width: 52ch;
  color: var(--gray-600);
  font-size: 1.1rem;
}

.lead {
  font-size: 1.15rem;
  color: var(--navy);
}

/* About */
.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.about-grid__text p {
  margin: 0 0 1rem;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--gray-800);
}

.about-grid__text p:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}

.about-grid__image {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-grid__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-facts {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.about-facts li {
  display: flex;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: var(--gray-50);
  border-radius: 8px;
  font-weight: 500;
}

.about-facts span {
  min-width: 6rem;
  color: var(--gray-400);
  font-weight: 400;
  font-size: 0.9rem;
}

.about-disambig {
  margin-top: 1.25rem;
  padding: 1rem 1.15rem;
  background: var(--gray-50);
  border-radius: 8px;
  border-left: 3px solid var(--cyan, #2bb8e8);
  font-size: 0.98rem;
  color: var(--gray-600);
}

.seo-keywords {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
  max-width: 56ch;
}

.seo-keywords li {
  padding: 0.65rem 1rem;
  background: var(--white, #fff);
  border-radius: 8px;
  border: 1px solid var(--gray-200, #e5e7eb);
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.45;
}

.seo-tip {
  margin: 1.5rem 0 0;
  max-width: 56ch;
  font-size: 0.95rem;
  color: var(--navy);
  line-height: 1.55;
  padding: 1rem 1.25rem;
  background: var(--sky-light);
  border-radius: var(--radius);
  border-left: 4px solid var(--sky);
}

/* Services */
.services {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .services {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .services {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  padding: 1.75rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.section--alt .service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  padding: 10px;
  background: var(--sky-light);
  border-radius: 10px;
  color: var(--sky);
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
}

.service-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.55;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .gallery {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
}

.gallery__item {
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: var(--gray-100);
  aspect-ratio: 4 / 3;
  transition: transform var(--transition), box-shadow var(--transition);
}

.gallery__item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
  z-index: 1;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery__item:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 2px;
}

.gallery__empty {
  margin: 0;
  text-align: center;
  color: var(--gray-600);
  font-size: 1rem;
}

.gallery__item--pdf {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  text-decoration: none;
  color: var(--navy);
  background: linear-gradient(145deg, var(--sky-light) 0%, var(--white) 100%);
  border: 1px solid rgba(62, 184, 232, 0.35);
}

.gallery__item--pdf:hover {
  color: var(--navy);
}

.gallery__pdf-icon {
  width: 48px;
  height: 48px;
  color: var(--sky);
}

.gallery__pdf-icon svg {
  width: 100%;
  height: 100%;
}

.gallery__pdf-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
}

.gallery__pdf-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-600);
}

.sponsors {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 2rem;
  align-items: start;
  justify-items: center;
  width: 100%;
}

.sponsors__card {
  margin: 0;
  width: 100%;
  max-width: 360px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.sponsors__media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 180px;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid rgba(30, 58, 95, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  box-sizing: border-box;
  overflow: hidden;
}

.sponsors__media--logo {
  aspect-ratio: 4 / 3;
  max-height: 260px;
}

.sponsors__media--photo {
  aspect-ratio: 16 / 10;
  max-height: 280px;
}

a.sponsors__media:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

button.sponsors__media {
  border: none;
  font: inherit;
  cursor: pointer;
  width: 100%;
}

button.sponsors__media:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.sponsors__media--clickable:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 2px;
}

.sponsors__media img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 220px;
  object-fit: contain;
  object-position: center;
  border-radius: 6px;
}

.sponsors__media--photo img {
  max-height: 240px;
}

.sponsors__caption {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--navy);
  font-weight: 500;
  max-width: 36ch;
  overflow-wrap: break-word;
}

.sponsors__hint {
  margin: 0;
  font-size: 0.85rem;
  color: var(--gray-600);
}

.sponsors__thumbs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 0.25rem;
}

.sponsors__shirts {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.sponsors__shirts-label {
  margin: 0.25rem 0 0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-600);
}

.sponsors__thumbs--shirts {
  margin-top: 0;
}

.sponsors__thumb--shirt {
  width: 96px;
  height: 96px;
}

.sponsors__thumb {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  width: 72px;
  height: 54px;
  cursor: pointer;
  background: var(--white);
  transition: border-color var(--transition), transform var(--transition);
}

.sponsors__thumb:hover,
.sponsors__thumb.is-active {
  border-color: var(--sky);
}

.sponsors__thumb.is-active {
  transform: scale(1.05);
}

.sponsors__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sponsors__empty {
  margin: 0;
  text-align: center;
  color: var(--gray-600);
  font-size: 1rem;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (min-width: 1100px) {
  .contact-grid {
    grid-template-columns: 1fr 1.1fr 1fr;
  }
}

.contact-card {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy);
}

.contact-name {
  margin: 0 0 1rem;
  font-weight: 600;
  color: var(--navy);
}

.text-muted {
  font-weight: 400;
  color: var(--gray-600);
}

address {
  font-style: normal;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

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

.contact-list li {
  margin-bottom: 1rem;
}

.contact-list__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-400);
  margin-bottom: 0.2rem;
}

.contact-list a {
  font-size: 1.1rem;
  font-weight: 500;
}

.business-details {
  margin: 0;
}

.business-details div {
  margin-bottom: 1.25rem;
}

.business-details dt {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-400);
  margin-bottom: 0.25rem;
}

.business-details dd {
  margin: 0;
  font-weight: 500;
  color: var(--navy);
  font-size: 1.05rem;
}

.contact-note {
  margin: 1.5rem 0 0;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font);
  font-size: 1rem;
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  background: var(--gray-50);
  color: var(--navy);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(62, 184, 232, 0.2);
  background: var(--white);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form__note {
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
  color: var(--gray-600);
  line-height: 1.45;
}

.contact-form button[disabled] {
  opacity: 0.7;
  cursor: wait;
}

/* Footer – lichte achtergrond zodat het logo (wit JPEG) scherp leesbaar blijft */
.site-footer {
  padding: 3rem 0 2.5rem;
  background: rgba(255, 255, 255, 0.94);
  border-top: 3px solid var(--sky-light);
  color: var(--gray-600);
  text-align: center;
  font-size: 0.95rem;
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.site-footer__logo {
  display: block;
  width: min(420px, 92vw);
  height: auto;
  margin-inline: auto;
  object-fit: contain;
}

.site-footer p {
  margin: 0;
  color: var(--navy);
  font-weight: 500;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  margin: 0;
  padding: 0;
  max-width: none;
  max-height: none;
  width: 100%;
  height: 100%;
  border: none;
  background: rgba(21, 42, 69, 0.95);
}

.lightbox::backdrop {
  background: transparent;
}

.lightbox__figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 4rem 3.5rem;
}

.lightbox__img {
  max-width: 100%;
  max-height: calc(100dvh - 8rem);
  object-fit: contain;
  border-radius: 4px;
}

.lightbox__caption {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  z-index: 10;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  cursor: pointer;
  border-radius: 50%;
  transition: background var(--transition);
}

.lightbox__close:hover,
.lightbox__nav:hover {
  background: rgba(62, 184, 232, 0.4);
}

.lightbox__close {
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  font-size: 2rem;
}

.lightbox__nav--prev {
  left: 1rem;
}

.lightbox__nav--next {
  right: 1rem;
}

/* Geo-blokkade (alleen Nederland) */
html.geo-checking body > :not(script) {
  visibility: hidden;
}

.geo-block {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: var(--navy-dark);
  color: var(--white);
  font-family: var(--font);
}

.geo-block__card {
  max-width: 28rem;
  text-align: center;
}

.geo-block__card h1 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin: 0 0 1rem;
}

.geo-block__card p {
  margin: 0 0 0.75rem;
  line-height: 1.6;
  opacity: 0.9;
}

.geo-block__muted {
  font-size: 0.9rem;
  opacity: 0.75;
}

.geo-block a {
  color: var(--sky);
}

body.is-geo-blocked {
  overflow: hidden;
}

/* Mobiel: leesbaarheid en touch-vriendelijk */
@media (max-width: 767px) {
  :root {
    --header-h: 171px;
  }

  .container {
    width: 100%;
    padding-inline: 1rem;
  }

  .site-header {
    padding: 0.45rem 0.85rem;
    padding-top: max(0.45rem, env(safe-area-inset-top));
  }

  .logo {
    height: 126px;
    max-width: min(495px, calc(100vw - 4.75rem));
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    padding: 9px;
  }

  .site-nav {
    width: min(340px, 100vw);
    padding: calc(var(--header-h) + 1.25rem) 1.25rem max(1.5rem, env(safe-area-inset-bottom));
  }

  .site-nav__link {
    font-size: 1.15rem;
    padding: 0.85rem 0;
  }

  .site-nav__contact {
    font-size: 0.9rem;
  }

  .site-nav__contact a {
    overflow-wrap: anywhere;
  }

  .hero__banner {
    min-height: min(40svh, 280px);
  }

  .hero__intro {
    padding: 2rem 0 2.75rem;
  }

  .hero__content {
    width: 100%;
    padding-inline: 0.25rem;
  }

  .hero__eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.07em;
    line-height: 1.45;
    padding: 0.35rem 0.85rem;
  }

  .hero__title {
    font-size: clamp(1.6rem, 7.5vw, 2.15rem);
    line-height: 1.2;
  }

  .hero__text {
    font-size: 1rem;
    max-width: none;
    margin-bottom: 1.5rem;
  }

  .section {
    padding: 3rem 0;
  }

  .section__title {
    font-size: clamp(1.45rem, 5.5vw, 1.85rem);
    line-height: 1.25;
  }

  .section__intro {
    font-size: 1rem;
    margin-bottom: 1.75rem;
    max-width: none;
    overflow-wrap: break-word;
  }

  .about-grid {
    gap: 1.75rem;
  }

  .service-card {
    padding: 1.35rem;
  }

  .service-card h3 {
    font-size: 1.05rem;
  }

  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .gallery__pdf-title {
    font-size: 0.85rem;
  }

  .sponsors {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
    justify-items: stretch;
  }

  .sponsors__card {
    max-width: none;
    align-items: stretch;
  }

  .sponsors__media {
    padding: 0.85rem;
    min-height: 160px;
  }

  .sponsors__media--logo {
    aspect-ratio: 4 / 3;
    max-height: 240px;
  }

  .sponsors__media--photo {
    aspect-ratio: 16 / 10;
    max-height: 260px;
  }

  .sponsors__media img {
    max-height: 200px;
  }

  .sponsors__media--photo img {
    max-height: 220px;
  }

  .sponsors__caption {
    font-size: 0.95rem;
    max-width: none;
    padding-inline: 0;
    text-align: center;
  }

  .contact-grid {
    gap: 1.25rem;
  }

  .contact-card {
    padding: 1.35rem;
  }

  .contact-card h3 {
    font-size: 1.15rem;
  }

  .contact-list a {
    font-size: 1rem;
    overflow-wrap: anywhere;
  }

  .business-details dd {
    font-size: 1rem;
    overflow-wrap: anywhere;
  }

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

  .contact-form__note {
    font-size: 0.78rem;
  }

  .btn {
    min-height: 48px;
    padding: 0.85rem 1.35rem;
  }

  .site-footer {
    padding: 2rem 0 calc(1.5rem + env(safe-area-inset-bottom));
    font-size: 0.875rem;
  }

  .site-footer__logo {
    width: min(260px, 82vw);
  }

  .site-footer p {
    line-height: 1.55;
    padding-inline: 0.25rem;
    overflow-wrap: anywhere;
  }

  .lightbox__figure {
    padding: 3.25rem 0.5rem 1rem;
  }

  .lightbox__img {
    max-height: calc(100dvh - 6.5rem);
  }

  .lightbox__close {
    top: max(0.65rem, env(safe-area-inset-top));
    right: 0.65rem;
    width: 44px;
    height: 44px;
    font-size: 1.75rem;
  }

  .lightbox__nav {
    width: 44px;
    height: 44px;
    font-size: 1.65rem;
  }

  .lightbox__nav--prev {
    left: 0.25rem;
  }

  .lightbox__nav--next {
    right: 0.25rem;
  }

  .lightbox__caption {
    font-size: 0.78rem;
    text-align: center;
    padding-inline: 0.5rem;
    line-height: 1.4;
  }

  .page-watermark {
    padding: 1.5rem 0.75rem 2rem;
  }

  .page-watermark__mark {
    width: min(240px, 62vw);
  }
}

@media (max-width: 380px) {
  .hero__title {
    font-size: 1.5rem;
  }

  .gallery {
    gap: 0.4rem;
  }

  .gallery__pdf-icon {
    width: 40px;
    height: 40px;
  }
}
