:root {
  --primary: #862630;
  --primary-dark: #4f141b;
  --primary-soft: #f4e4e6;
  --gold: #efbd54;
  --green: #0f6e62;
  --ink: #201719;
  --muted: #706164;
  --paper: #fffaf4;
  --white: #ffffff;
  --line: rgba(134, 38, 48, 0.16);
  --shadow: 0 24px 70px rgba(79, 20, 27, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  font-size: clamp(48px, 7vw, 88px);
}

h2 {
  font-size: clamp(30px, 4vw, 52px);
}

h3 {
  font-size: 22px;
  line-height: 1.18;
}

.container {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 52px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(79, 20, 27, 0.88), rgba(79, 20, 27, 0));
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header--solid,
.site-header.is-solid {
  padding-top: 10px;
  padding-bottom: 10px;
  background: rgba(134, 38, 48, 0.98);
  box-shadow: 0 12px 30px rgba(32, 23, 25, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--white);
  text-decoration: none;
}

.brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 17px;
  line-height: 1.1;
}

.brand small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  border-radius: 999px;
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-active {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.home-hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--primary);
}

.home-hero__image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(79, 20, 27, 0.96) 0%, rgba(79, 20, 27, 0.72) 44%, rgba(79, 20, 27, 0.1) 80%),
    linear-gradient(0deg, rgba(79, 20, 27, 0.82), rgba(79, 20, 27, 0.04) 55%),
    url("assets/site/home-group.jpg") center center / cover;
}

.home-hero__content {
  position: relative;
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 150px 0 70px;
}

.home-hero h1,
.page-hero h1,
.visual-page h1,
.detail-hero h1 {
  max-width: 820px;
  margin-bottom: 20px;
}

.home-hero p,
.page-hero p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
}

.visual-page p {
  max-width: 620px;
  color: var(--muted);
  font-size: 19px;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section .eyebrow,
.rich-text .eyebrow {
  color: var(--primary);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--primary);
  border-radius: 999px;
  padding: 11px 18px;
  color: var(--white);
  background: var(--primary);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(134, 38, 48, 0.2);
}

.button--light {
  border-color: var(--white);
  color: var(--primary);
  background: var(--white);
}

.button--outline-light {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.section {
  padding: clamp(62px, 8vw, 108px) 0;
}

.section--cream {
  background: var(--primary-soft);
}

.intro-panel,
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.rich-text {
  color: var(--muted);
  font-size: 17px;
}

.rich-text h2 {
  margin-top: 34px;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 38px);
}

.rich-text--large {
  max-width: 760px;
  color: #574a4d;
  font-size: 18px;
}

.rich-text ul {
  padding-left: 20px;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-link {
  position: relative;
  min-height: 330px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--primary);
  box-shadow: var(--shadow);
  text-decoration: none;
}

.feature-link img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 250ms ease;
}

.feature-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(79, 20, 27, 0.86), rgba(79, 20, 27, 0.08));
}

.feature-link span,
.feature-link strong {
  position: relative;
  z-index: 1;
}

.feature-link > span {
  padding: 22px;
  font-size: 24px;
  font-weight: 950;
}

.feature-link:hover img {
  transform: scale(1.04);
}

.feature-link--text {
  min-height: 190px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 24px;
  background:
    linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.feature-link--text::after {
  display: none;
}

.feature-link--text strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
}

.feature-link--text span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.banner-band {
  position: relative;
  min-height: 360px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--primary-dark);
}

.banner-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
}

.banner-band div {
  position: relative;
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.banner-band h2 {
  max-width: 760px;
}

.page {
  padding-top: 74px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(79, 20, 27, 0.98), rgba(134, 38, 48, 0.92)),
    var(--primary);
  padding: clamp(64px, 9vw, 120px) 0;
}

.page-hero--hoogheden {
  min-height: clamp(430px, 58vh, 620px);
  display: grid;
  align-items: end;
  padding: clamp(88px, 12vw, 150px) 0 clamp(46px, 7vw, 78px);
}

.page-hero__background {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(79, 20, 27, 0.98) 0%, rgba(79, 20, 27, 0.78) 42%, rgba(79, 20, 27, 0.16) 76%),
    linear-gradient(0deg, rgba(79, 20, 27, 0.7), rgba(79, 20, 27, 0.08) 56%),
    url("assets/site/hoogheden-foto.png") right center / auto 100% no-repeat;
}

.page-hero--compact {
  padding-bottom: clamp(54px, 7vw, 86px);
}

.page-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
}

.page-hero__grid img {
  width: 100%;
  border: 6px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
  box-shadow: var(--shadow);
}

.page-hero--hoogheden .page-hero__grid {
  display: block;
}

.royalty-list {
  display: grid;
  gap: 18px;
}

.royalty-teaser {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.royalty-teaser img {
  width: 100%;
  height: 280px;
  border-radius: 6px;
  object-fit: cover;
  object-position: center top;
}

.royalty-teaser h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 46px);
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1.14fr);
  min-height: calc(100vh - 74px);
  background: var(--white);
}

.detail-hero__media {
  position: sticky;
  top: 74px;
  height: calc(100vh - 74px);
  background: var(--primary-soft);
}

.detail-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.detail-hero--wide-image .detail-hero__media img {
  object-position: 45% top;
}

.detail-hero__content {
  padding: clamp(42px, 6vw, 82px);
}

.detail-hero__content h1 {
  color: var(--primary);
}

.back-link {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--primary);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.agenda-list {
  display: grid;
  gap: 12px;
}

.agenda-item {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(79, 20, 27, 0.08);
}

.agenda-item time {
  display: grid;
  justify-items: center;
  border-radius: 6px;
  padding: 16px;
  color: var(--white);
  background: var(--primary);
  text-align: center;
}

.agenda-item time strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  line-height: 1;
}

.agenda-item time span {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 900;
}

.agenda-item h2 {
  margin-bottom: 6px;
  font-size: clamp(26px, 3vw, 36px);
}

.agenda-item p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.visual-page {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: stretch;
  background: var(--white);
}

.visual-page--maroon {
  color: var(--white);
  background: var(--primary);
}

.visual-page > img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.visual-page > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(42px, 6vw, 86px);
}

.visual-page--maroon .rich-text {
  color: var(--white);
}

.visual-page--maroon .rich-text h1,
.visual-page--maroon .rich-text .eyebrow {
  color: var(--white);
}

.visual-page--maroon p,
.visual-page--maroon .rich-text p {
  color: var(--white);
}

.visual-page--poster > img {
  padding: clamp(12px, 2vw, 28px);
  background: #03f20f;
  object-fit: contain;
}

.contact-details {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  border-left: 5px solid var(--primary);
  padding: 18px 0 18px 22px;
  color: var(--muted);
  font-style: normal;
}

.contact-details strong {
  color: var(--ink);
  font-size: 20px;
}

.contact-details a {
  color: var(--primary);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.side-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 38px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.name-list {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.name-list li {
  border-bottom: 1px solid var(--line);
  padding-bottom: 9px;
  color: var(--muted);
  font-weight: 800;
}

.friend-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 30px;
  border: 1px solid rgba(134, 38, 48, 0.22);
  border-radius: var(--radius);
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(244, 228, 230, 0.86), rgba(255, 255, 255, 0.98)),
    var(--paper);
  box-shadow: 0 18px 42px rgba(79, 20, 27, 0.1);
}

.friend-form__header {
  margin: -24px -24px 2px;
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 20px 24px 18px;
  color: var(--white);
  background: var(--primary);
}

.friend-form__header .eyebrow {
  margin-bottom: 6px;
  color: var(--gold);
}

.friend-form__header h3 {
  margin: 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  line-height: 1;
}

.friend-form__trap {
  display: none;
}

.friend-form__field,
.friend-form fieldset {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  width: 100%;
}

.friend-form__field label,
.friend-form fieldset span,
.friend-form legend {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
}

.friend-form input[type="text"],
.friend-form input[type="email"],
.friend-form textarea {
  display: block;
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 11px 13px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transition: border-color 160ms ease, box-shadow 160ms ease, outline-color 160ms ease;
}

.friend-form input[type="text"]:focus,
.friend-form input[type="email"]:focus,
.friend-form textarea:focus {
  outline: 3px solid rgba(239, 189, 84, 0.34);
  border-color: var(--primary);
}

.friend-form textarea {
  min-height: 150px;
  resize: vertical;
}

.friend-form fieldset {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.74);
}

.friend-form legend {
  padding: 0 5px;
}

.friend-form__choices {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.friend-form fieldset label {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 13px;
  background: var(--white);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.friend-form fieldset label:hover,
.friend-form fieldset label:has(input:checked) {
  border-color: var(--primary);
  background: var(--primary-soft);
  box-shadow: 0 8px 18px rgba(134, 38, 48, 0.08);
}

.friend-form input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

.friend-form .button {
  width: 100%;
  margin-top: 2px;
  min-height: 50px;
  cursor: pointer;
}

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.sponsor-grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--white);
  object-fit: contain;
  object-position: center;
  box-shadow: 0 14px 34px rgba(79, 20, 27, 0.06);
}

.site-footer {
  color: var(--white);
  background: var(--primary-dark);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 0;
}

.footer-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.footer-credit {
  display: inline-block;
  margin-top: 6px;
  font-size: 13px;
}

.footer-credit a {
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
}

.footer-credit a:hover,
.footer-credit a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 1020px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 18px;
    display: none;
    width: min(340px, calc(100vw - 36px));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    padding: 8px;
    background: var(--primary);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    border-radius: 6px;
    padding: 12px;
  }

  .page-hero__grid,
  .detail-hero,
  .visual-page,
  .intro-panel,
  .two-column {
    grid-template-columns: 1fr;
  }

  .detail-hero__media {
    position: static;
    height: auto;
  }

  .detail-hero__media img {
    max-height: 720px;
  }

  .link-grid,
  .sponsor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .royalty-teaser {
    grid-template-columns: 220px minmax(0, 1fr);
  }
}

@media (max-width: 680px) {
  h1 {
    font-size: clamp(42px, 14vw, 58px);
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand small {
    display: none;
  }

  .home-hero {
    min-height: 82vh;
  }

  .home-hero__image {
    background:
      linear-gradient(0deg, rgba(79, 20, 27, 0.94) 0%, rgba(79, 20, 27, 0.34) 68%),
      url("assets/site/home-group.jpg") center top / cover;
  }

  .page-hero--hoogheden {
    min-height: 500px;
  }

  .page-hero__background {
    background:
      linear-gradient(0deg, rgba(79, 20, 27, 0.94) 0%, rgba(79, 20, 27, 0.46) 64%),
      linear-gradient(90deg, rgba(79, 20, 27, 0.92), rgba(79, 20, 27, 0.16)),
      url("assets/site/hoogheden-foto.png") right center / auto 100% no-repeat;
  }

  .home-hero__content {
    padding-bottom: 42px;
  }

  .home-hero p,
  .page-hero p,
  .visual-page p {
    font-size: 17px;
  }

  .actions,
  .button {
    width: 100%;
  }

  .link-grid,
  .sponsor-grid,
  .royalty-teaser,
  .agenda-item {
    grid-template-columns: 1fr;
  }

  .feature-link {
    min-height: 280px;
  }

  .feature-link--text {
    min-height: 160px;
  }

  .royalty-teaser img {
    height: 320px;
  }

  .agenda-item time {
    justify-items: start;
    text-align: left;
  }

  .visual-page > img {
    min-height: 320px;
  }

  .detail-hero__content,
  .visual-page > div {
    padding: 34px 18px;
  }

  .footer-inner {
    flex-direction: column;
  }
}
