:root {
  --ink: #25231f;
  --muted: #706b62;
  --line: #ded8cc;
  --paper: #f7f2e8;
  --surface: #fffaf0;
  --accent: #9b5f2c;
  --accent-dark: #713f1d;
  --green: #526b48;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Outfit", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 48px);
  margin-bottom: -76px;
  border-bottom: 1px solid rgba(255, 250, 240, 0.22);
  background:
    linear-gradient(90deg, rgba(13, 9, 6, 0.74), rgba(36, 22, 12, 0.58) 45%, rgba(13, 9, 6, 0.74)),
    url("../img/wood-menu-texture.jpg") center / cover no-repeat,
    #24160c;
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(15, 9, 5, 0.22);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-solid {
  border-bottom-color: rgba(255, 250, 240, 0.2);
  background:
    linear-gradient(90deg, rgba(13, 9, 6, 0.78), rgba(36, 22, 12, 0.62) 45%, rgba(13, 9, 6, 0.78)),
    url("../img/wood-menu-texture.jpg") center / cover no-repeat,
    #24160c;
  box-shadow: 0 12px 34px rgba(15, 9, 5, 0.28);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 148px;
}

.brand img {
  width: 142px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
}

.site-nav a,
.site-nav .nav-link {
  border-radius: 999px;
  padding: 9px 14px;
  color: #fff;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 8px rgba(24, 18, 12, 0.28);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  transition: background 180ms ease, color 180ms ease, text-shadow 180ms ease, transform 180ms ease;
}

.nav-item {
  position: relative;
}

.nav-item.has-dropdown::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
  content: "";
}

.site-nav .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.site-nav .nav-link::after {
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(45deg) translateY(-2px);
}

.site-nav a:hover,
.site-nav .nav-link:hover,
.site-nav a.active {
  background: rgba(255, 250, 240, 0.13);
  color: #fff;
  text-shadow: 0 1px 10px rgba(24, 18, 12, 0.22);
}

.site-nav a.nav-highlight,
.site-nav .nav-link.nav-highlight {
  border: 1px solid rgba(217, 182, 111, 0.5);
  background: rgba(166, 117, 41, 0.2);
  color: #fff3d1;
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 240, 0.12),
    0 8px 18px rgba(17, 10, 5, 0.12);
}

.site-nav a.nav-highlight:hover,
.site-nav a.nav-highlight.active,
.site-nav .nav-link.nav-highlight:hover,
.site-nav .nav-link.nav-highlight.active {
  border-color: rgba(236, 202, 133, 0.74);
  background: rgba(178, 126, 42, 0.32);
  color: #fff7df;
}

.nav-dropdown {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  z-index: 30;
  min-width: 220px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px;
  background: rgba(255, 250, 240, 0.96);
  box-shadow: 0 18px 46px rgba(68, 49, 26, 0.14);
  opacity: 0;
  transform: translateY(8px);
  visibility: hidden;
  transition:
    opacity 160ms ease 90ms,
    transform 160ms ease 90ms,
    visibility 0s linear 280ms;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition-delay: 0s;
}

.nav-dropdown a {
  display: block;
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--ink);
  background: transparent;
  font-weight: 800;
  text-shadow: none;
  white-space: nowrap;
}

.site-nav .nav-dropdown a:hover,
.site-nav .nav-dropdown a.active {
  background: rgba(155, 95, 44, 0.12);
  color: var(--accent-dark);
  text-shadow: none;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 8px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  border: 1px solid rgba(255, 250, 240, 0.26);
  border-radius: 999px;
  padding: 3px;
  background: rgba(255, 250, 240, 0.12);
}

.language-switch a {
  display: inline-flex;
  min-width: 32px;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fffaf4;
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.language-switch a.is-active {
  background: #fffaf4;
  color: var(--brown);
}

.icon-link {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 250, 240, 0.26);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.12);
  color: #fffaf4;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.icon-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.icon-link:hover {
  background: var(--ink);
  color: var(--surface);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 700;
  line-height: 1.1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.icon-link:hover {
  transform: translateY(-1px);
}

.button:active,
.icon-link:active {
  transform: translateY(1px) scale(0.99);
}

.button.primary {
  background: var(--accent);
  color: #fffaf4;
}

.button.secondary {
  background: var(--green);
  color: #fffaf4;
}

.button.ghost {
  border-color: var(--line);
  background: rgba(255, 250, 240, 0.62);
  color: var(--ink);
}

.button.compact {
  min-height: 38px;
  padding: 9px 13px;
  font-size: 0.84rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
}

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

.hero {
  position: relative;
  display: grid;
  height: min(100svh, 960px);
  min-height: min(620px, 100svh);
  max-height: 960px;
  align-items: end;
  overflow: hidden;
  padding: clamp(96px, 11vw, 150px) clamp(18px, 5vw, 72px) clamp(28px, 4.5vw, 56px);
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 700px;
  color: #fffaf4;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.25rem, 4.9vw, 5.05rem);
  max-width: 12.8ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.2rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
}

.hero p:not(.eyebrow),
.page-hero p,
.intro-band p,
.proof-points p,
.editorial p,
.text-columns p,
.contact-card p,
.empty-state p {
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
}

.hero .eyebrow {
  color: rgba(255, 226, 177, 0.92);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 50ch;
  margin: 18px 0 20px;
  color: rgba(255, 250, 244, 0.86);
}

.hero .button-row {
  gap: 12px;
}

.hero .button.ghost {
  border-color: rgba(255, 250, 244, 0.42);
  background: rgba(255, 250, 244, 0.16);
  color: #fffaf4;
  box-shadow: inset 0 1px 0 rgba(255, 250, 244, 0.14);
}

.hero .button.ghost:hover {
  border-color: rgba(255, 250, 244, 0.68);
  background: rgba(255, 250, 244, 0.24);
}

.hero-image {
  position: absolute;
  inset: 0;
  min-height: 100%;
  overflow: hidden;
  border-radius: 0;
}

.hero-image.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.hero-image img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: 54% 88%;
  border-radius: 0;
  box-shadow: none;
}

.hero-image::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(90deg, rgba(30, 24, 18, 0.68) 0%, rgba(30, 24, 18, 0.38) 34%, rgba(30, 24, 18, 0.04) 100%),
    linear-gradient(0deg, rgba(30, 24, 18, 0.4) 0%, rgba(30, 24, 18, 0.02) 58%);
}

.fire-glow {
  position: absolute;
  left: 84.9%;
  bottom: 4.4%;
  width: clamp(46px, 4.4vw, 76px);
  aspect-ratio: 0.9;
  overflow: visible;
  pointer-events: none;
  z-index: 2;
  background:
    radial-gradient(circle at 50% 76%, rgba(255, 221, 78, 0.22), transparent 46%),
    radial-gradient(circle at 50% 88%, rgba(255, 106, 18, 0.34), transparent 62%);
  filter: drop-shadow(0 0 18px rgba(255, 119, 28, 0.78));
  mix-blend-mode: screen;
  transform: translateX(-50%);
}

.fire-glow::before {
  position: absolute;
  left: 50%;
  bottom: -5%;
  width: 92%;
  height: 72%;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle at center, rgba(255, 126, 22, 0.28), rgba(255, 190, 54, 0.14) 38%, transparent 72%);
  z-index: 0;
  filter: blur(8px);
  transform: translateX(-50%);
}

.fire-glow::after {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 68%;
  height: 46%;
  border-radius: 50%;
  content: "";
  background:
    radial-gradient(circle at 34% 38%, rgba(255, 239, 118, 0.96) 0 8%, transparent 15%),
    radial-gradient(circle at 52% 58%, rgba(255, 106, 24, 0.98) 0 13%, transparent 21%),
    radial-gradient(circle at 66% 42%, rgba(255, 221, 82, 0.84) 0 8%, transparent 15%),
    radial-gradient(circle at center, rgba(255, 91, 21, 0.72), rgba(120, 43, 17, 0.3) 48%, transparent 74%);
  filter: blur(0.45px);
  z-index: 1;
  transform: translateX(-50%);
}

.flame {
  position: absolute;
  left: 50%;
  bottom: 18%;
  display: block;
  border-radius: 62% 38% 58% 42% / 68% 34% 66% 32%;
  transform-origin: 50% 100%;
  mix-blend-mode: screen;
  z-index: 2;
}

.flame.outer {
  display: none;
  width: 78%;
  height: 112%;
  background:
    radial-gradient(circle at 50% 76%, rgba(255, 246, 145, 0.84), transparent 18%),
    radial-gradient(ellipse at 56% 52%, rgba(255, 151, 30, 1), rgba(215, 49, 17, 0.82) 48%, transparent 72%),
    radial-gradient(ellipse at 34% 68%, rgba(255, 70, 18, 0.72), transparent 54%);
  filter: blur(0.55px);
  animation: flame-flicker 1.65s ease-in-out infinite alternate;
}

.flame.mid {
  display: none;
  bottom: 21%;
  width: 52%;
  height: 84%;
  background:
    radial-gradient(circle at 50% 78%, rgba(255, 252, 190, 0.92), transparent 23%),
    radial-gradient(ellipse at 43% 52%, rgba(255, 196, 48, 0.98), rgba(241, 83, 18, 0.72) 56%, transparent 77%);
  animation: flame-core 1.45s ease-in-out infinite alternate-reverse;
}

.flame.core {
  bottom: 24%;
  width: 52%;
  height: 70%;
  background:
    radial-gradient(ellipse at 50% 66%, rgba(255, 255, 222, 0.98), rgba(255, 215, 87, 0.9) 42%, transparent 72%),
    radial-gradient(ellipse at 56% 44%, rgba(255, 150, 38, 0.5), transparent 58%);
  filter: blur(0.2px);
  animation: flame-core 1.2s ease-in-out infinite alternate;
}

.flame.spark {
  bottom: 48%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 225, 116, 0.94);
  box-shadow: 0 0 12px rgba(255, 161, 44, 0.88);
  z-index: 3;
}

.spark-one {
  animation: ember-rise-left 1.85s ease-out infinite;
}

.spark-two {
  animation: ember-rise-right 2.1s 0.18s ease-out infinite;
}

.spark-three {
  width: 3px;
  height: 3px;
  animation: ember-rise-center 1.75s 0.4s ease-out infinite;
}

.spark-four {
  width: 3px;
  height: 3px;
  animation: ember-rise-left 2.25s 0.68s ease-out infinite;
}

.spark-five {
  width: 2px;
  height: 2px;
  animation: ember-rise-right 1.55s 0.86s ease-out infinite;
}

.spark-six {
  width: 3px;
  height: 3px;
  animation: ember-rise-center 2.35s 1.1s ease-out infinite;
}

.spark-seven {
  width: 2px;
  height: 2px;
  animation: ember-rise-left 1.55s 1.28s ease-out infinite;
}

.spark-eight {
  width: 3px;
  height: 3px;
  animation: ember-rise-right 2.55s 1.45s ease-out infinite;
}

@keyframes flame-flicker {
  0% {
    opacity: 0.78;
    border-radius: 58% 42% 62% 38% / 72% 30% 70% 28%;
    transform: translateX(-51%) rotate(-3deg) scaleX(0.96) scaleY(0.98);
  }
  38% {
    opacity: 0.93;
    border-radius: 42% 58% 48% 52% / 74% 36% 64% 26%;
    transform: translateX(-49%) rotate(2deg) scaleX(1.03) scaleY(1.04);
  }
  68% {
    opacity: 0.84;
    border-radius: 66% 34% 55% 45% / 66% 32% 68% 34%;
    transform: translateX(-52%) rotate(-1deg) scaleX(0.99) scaleY(1.08);
  }
  100% {
    opacity: 0.86;
    border-radius: 48% 52% 64% 36% / 78% 28% 72% 22%;
    transform: translateX(-48%) rotate(2deg) scaleX(1.02) scaleY(1.12);
  }
}

@keyframes flame-core {
  0% {
    opacity: 0.82;
    border-radius: 54% 46% 60% 40% / 72% 32% 68% 28%;
    transform: translateX(-50%) rotate(2deg) scale(0.96, 0.98);
  }
  100% {
    opacity: 0.98;
    border-radius: 44% 56% 52% 48% / 76% 28% 72% 24%;
    transform: translateX(-50%) rotate(-2deg) scale(1.04, 1.1);
  }
}

@keyframes ember-rise-left {
  0% {
    opacity: 0;
    transform: translate3d(-50%, 8px, 0) scale(0.7);
  }
  14% {
    opacity: 0.95;
  }
  54% {
    opacity: 0.68;
    transform: translate3d(calc(-50% - 22px), -112px, 0) scale(0.42);
  }
  100% {
    opacity: 0;
    transform: translate3d(calc(-50% - 42px), -248px, 0) scale(0.08);
  }
}

@keyframes ember-rise-right {
  0% {
    opacity: 0;
    transform: translate3d(-50%, 10px, 0) scale(0.72);
  }
  18% {
    opacity: 0.9;
  }
  58% {
    opacity: 0.58;
    transform: translate3d(calc(-50% + 24px), -126px, 0) scale(0.4);
  }
  100% {
    opacity: 0;
    transform: translate3d(calc(-50% + 50px), -258px, 0) scale(0.08);
  }
}

@keyframes ember-rise-center {
  0% {
    opacity: 0;
    transform: translate3d(-50%, 6px, 0) scale(0.65);
  }
  16% {
    opacity: 0.96;
  }
  100% {
    opacity: 0;
    transform: translate3d(calc(-50% + 8px), -286px, 0) scale(0.06);
  }
}

@media (max-width: 980px) {
  .hero .fire-glow {
    display: none;
  }
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(48px, 8vw, 104px) clamp(18px, 4vw, 40px);
}

.ornament {
  display: block;
  height: auto;
  pointer-events: none;
  user-select: none;
}

.section-ornament,
.page-ornament {
  width: min(150px, 38vw);
  margin: 0 0 18px;
  opacity: 0.72;
}

.riml-mark {
  width: 58px;
}

.next-courses-strip {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid var(--line);
  background: #ece2d2;
}

.next-courses-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-dark);
  font-size: 0.95rem;
  white-space: nowrap;
}

.next-courses-icon {
  width: 30px;
  filter: brightness(0) saturate(100%) invert(38%) sepia(23%) saturate(982%) hue-rotate(346deg) brightness(91%) contrast(84%);
}

.feature-label .feature-ornament {
  width: 70px;
  margin: 0;
  flex: 0 0 auto;
}

.next-course-list {
  display: flex;
  min-width: 0;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.next-course-item {
  display: grid;
  grid-template-columns: auto minmax(120px, 1fr) auto;
  gap: 8px;
  align-items: center;
  min-width: min(360px, 82vw);
  border-left: 1px solid rgba(113, 63, 29, 0.22);
  padding: 3px 10px;
  color: var(--ink);
  font-size: 0.9rem;
}

.next-course-item time {
  color: var(--accent-dark);
  font-weight: 800;
}

.next-course-item span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.next-course-item em {
  color: var(--green);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}

.next-course-empty {
  margin: 0;
  color: var(--muted);
}

.next-course-link {
  color: var(--accent-dark);
  font-size: 0.88rem;
  font-weight: 800;
  white-space: nowrap;
}

.home-feature-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(14px, 1.7vw, 22px);
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(18px, 2.2vw, 34px);
  border-bottom: 1px solid rgba(113, 63, 29, 0.12);
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 253, 247, 0.92), rgba(247, 241, 230, 0.86) 45%, rgba(236, 226, 210, 0.54)),
    linear-gradient(90deg, rgba(255, 250, 240, 0.94), rgba(247, 242, 232, 0.98)),
    var(--surface);
}

.home-feature-block {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: clamp(24px, 2.6vw, 42px);
  border: 1px solid rgba(155, 95, 44, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 252, 245, 0.88), rgba(244, 236, 222, 0.72)),
    rgba(255, 250, 240, 0.8);
  box-shadow: 0 18px 48px rgba(63, 44, 25, 0.08);
}

.home-feature-block + .home-feature-block {
  border-left: 1px solid rgba(155, 95, 44, 0.28);
}

.home-feature-block h2 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: clamp(1.45rem, 1.65vw, 1.95rem);
  line-height: 0.98;
}

.home-feature-block p:not(.eyebrow) {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.72;
}

.feature-heading,
.feature-label {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 12px;
}

.feature-heading .eyebrow,
.feature-label .eyebrow,
.home-feature-block > .eyebrow,
.home-feature-book .eyebrow {
  margin-bottom: 0;
}

.feature-ornament {
  width: 48px;
  opacity: 0.76;
  filter: brightness(0) saturate(100%) invert(38%) sepia(23%) saturate(982%) hue-rotate(346deg) brightness(91%) contrast(84%);
}

.feature-label .feature-ornament {
  width: 70px;
  margin: 0;
  flex: 0 0 auto;
}

.news-body {
  display: grid;
  flex: 1;
  grid-template-columns: minmax(150px, 0.34fr) minmax(0, 1fr);
  gap: clamp(18px, 2vw, 30px);
  align-items: start;
}

.news-body > div {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.home-feature-news {
  grid-row: span 2;
  min-height: clamp(560px, 48vw, 760px);
  padding: clamp(24px, 3.2vw, 48px);
}

.symposium-art-wrap {
  justify-content: flex-start;
  min-height: 100%;
  overflow: visible;
}

.symposium-feature-art {
  display: block;
  width: min(108%, 304px);
  max-width: none;
  height: auto;
  margin: clamp(68px, 5vw, 84px) 0 0;
  opacity: 0.82;
  filter: sepia(0.12) saturate(0.96) contrast(1.03);
}

.symposium-feature-copy {
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: clamp(64px, 5vw, 80px);
}

.symposium-feature-copy .feature-ornament {
  width: 70px;
  margin: 0;
}

.symposium-date {
  margin-bottom: 28px !important;
  color: var(--accent-dark) !important;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.3vw, 1.35rem) !important;
  line-height: 1.35 !important;
}

.home-feature-news h2 {
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 1.85vw, 1.7rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.02;
  white-space: normal;
}

.symposium-title-line {
  display: block;
  white-space: nowrap;
}

.home-feature-news .button-row {
  gap: 8px;
  margin-top: clamp(22px, 3vw, 36px);
}

.button.symposium-feature-button {
  min-height: 58px;
  padding-inline: 28px;
}

.symposium-feature-facts {
  display: grid;
  width: min(100%, 424px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
  margin: 2px 0 26px;
}

.symposium-feature-fact {
  min-height: 68px;
  border: 1px solid rgba(166, 117, 41, 0.28);
  border-radius: 7px;
  padding: 12px 14px 10px;
  background: rgba(255, 250, 240, 0.74);
  box-shadow: 0 10px 24px rgba(80, 53, 22, 0.045);
}

.symposium-feature-fact strong {
  display: block;
  margin-bottom: 4px;
  color: #6f3f23;
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.15;
}

.symposium-feature-fact span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
}

.home-feature-news .symposium-feature-actions {
  gap: 12px;
  margin-top: 0;
}

.symposium-program-button {
  min-height: 58px;
  padding-inline: 24px;
  border-color: rgba(155, 95, 44, 0.38);
  color: var(--accent-dark);
  font-size: 0.9rem;
}

.feature-button-icon,
.feature-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.feature-button-icon svg,
.feature-link-icon svg {
  width: 1.08em;
  height: 1.08em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.home-feature-book {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(190px, 0.58fr);
  grid-template-rows: auto auto minmax(0, 1fr);
  column-gap: clamp(18px, 2.5vw, 32px);
  row-gap: 16px;
  align-items: center;
  min-height: 286px;
}

.home-feature-book > .feature-label,
.home-feature-book > h2 {
  grid-column: 1 / -1;
}

.home-feature-book > h2 {
  max-width: 420px;
  font-family: var(--serif);
  font-size: clamp(2rem, 2.7vw, 3.3rem);
  font-weight: 600;
  line-height: 1.04;
  white-space: normal;
}

.feature-book-text {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.feature-book-text .button {
  margin-top: auto;
  align-self: flex-start;
}

.home-feature-book h2 {
  max-width: 430px;
}

.feature-book-cover img {
  width: 100%;
  max-height: 260px;
  object-fit: contain;
  object-position: center bottom;
  border: 0;
  border-radius: 6px;
  background: rgba(255, 250, 240, 0.56);
  box-shadow: 0 20px 44px rgba(68, 49, 26, 0.12);
}

.home-feature-courses {
  min-height: 286px;
}

.feature-course-list {
  display: grid;
  gap: 0;
}

.feature-course-item {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) auto;
  column-gap: 8px;
  row-gap: 2px;
  align-items: center;
  min-height: 44px;
  border-top: 1px solid rgba(113, 63, 29, 0.14);
  color: var(--ink);
  font-size: 0.87rem;
}

.feature-course-item:first-child {
  border-top: 0;
}

.feature-course-item time {
  color: var(--accent-dark);
  font-weight: 800;
  white-space: nowrap;
}

.feature-course-item span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.feature-course-item em {
  color: var(--green);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}

.feature-course-item em.is-full {
  color: #9a3425;
}

.feature-empty {
  margin: 0 0 12px;
  color: var(--muted);
}

.feature-all-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  color: var(--accent-dark);
  font-size: 0.86rem;
  font-weight: 800;
}

.feature-all-link::after {
  content: "→";
  font-size: 1.05rem;
}

.feature-arrow-button::after {
  content: "→";
  margin-left: 8px;
}

main > .intro-band,
main > .categories,
main > .proof {
  display: none;
}

.heritage-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(46px, 6vw, 78px) clamp(18px, 4vw, 48px) clamp(24px, 3vw, 42px);
  border-top: 1px solid rgba(113, 63, 29, 0.18);
  background:
    radial-gradient(circle at 50% 0, rgba(255, 250, 240, 0.94), rgba(247, 242, 232, 0.96) 58%, rgba(236, 226, 210, 0.74)),
    var(--surface);
}

.heritage-head {
  display: block;
  max-width: none;
  margin: 0 auto clamp(24px, 3vw, 34px);
  text-align: center;
}

.heritage-top-rule {
  display: grid;
  grid-template-columns: minmax(60px, 1fr) auto minmax(60px, 1fr);
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}

.heritage-top-rule::before,
.heritage-top-rule::after {
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(155, 95, 44, 0.7));
}

.heritage-top-rule::after {
  background: linear-gradient(90deg, rgba(155, 95, 44, 0.7), transparent);
}

.heritage-top-ornament {
  width: 54px;
  opacity: 0.82;
  filter: brightness(0) saturate(100%) invert(46%) sepia(26%) saturate(816%) hue-rotate(352deg) brightness(88%) contrast(87%);
}

.heritage-head h2 {
  color: #3a2418;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.6vw, 3.8rem);
  font-weight: 700;
  line-height: 1.02;
  margin-bottom: 14px;
}

.heritage-head h3 {
  margin: 0 auto 16px;
  max-width: 780px;
  color: var(--accent-dark);
  font-size: clamp(1.25rem, 2vw, 1.9rem);
  line-height: 1.12;
}

.heritage-line {
  width: min(420px, 72%);
  margin: 18px auto 14px;
  opacity: 0.74;
  filter: brightness(0) saturate(100%) invert(46%) sepia(26%) saturate(816%) hue-rotate(352deg) brightness(88%) contrast(87%);
}

.heritage-intro-copy {
  display: grid;
  gap: 14px;
  width: min(920px, 100%);
  max-width: 920px;
  margin: 0 auto;
}

.heritage-head p {
  max-width: none;
  margin: 0 auto;
  color: #5c4636;
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  line-height: 1.72;
}

.heritage-tiles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 22px);
  margin-bottom: clamp(30px, 5vw, 54px);
}

.heritage-tile {
  position: relative;
  aspect-ratio: 1.08 / 1;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(155, 95, 44, 0.48);
  border-radius: 6px;
  background: #2e241d;
  color: #fffaf4;
  box-shadow: 0 18px 44px rgba(68, 49, 26, 0.16);
}

.heritage-tile::before {
  position: absolute;
  inset: 12px;
  z-index: 2;
  border: 1px solid rgba(255, 250, 240, 0.54);
  border-radius: 3px;
  content: "";
  pointer-events: none;
}

.heritage-tile::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(37, 35, 31, 0.04) 12%, rgba(37, 35, 31, 0.22) 46%, rgba(37, 35, 31, 0.82) 100%),
    linear-gradient(90deg, rgba(37, 35, 31, 0.26), transparent 45%);
}

.heritage-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.heritage-tile:hover img {
  transform: scale(1.035);
}

.tile-number {
  position: absolute;
  left: 22px;
  top: 20px;
  z-index: 3;
  display: inline-flex;
  width: 32px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 250, 240, 0.72);
  border-radius: 0 0 999px 999px;
  background: rgba(155, 95, 44, 0.82);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.tile-label {
  position: absolute;
  left: 24px;
  right: 20px;
  bottom: 24px;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px;
  gap: 10px;
  align-items: end;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 1.55vw, 1.9rem);
  font-weight: 700;
  line-height: 1.02;
  overflow-wrap: normal;
  text-wrap: balance;
}

.tile-label.is-long {
  font-size: clamp(1.18rem, 1.32vw, 1.56rem);
  letter-spacing: 0;
}

.tile-label::after {
  content: "→";
  font-family: "Outfit", "Segoe UI", Arial, sans-serif;
  font-size: 1.3rem;
  line-height: 1;
  text-align: right;
}

.heritage-text-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(113, 63, 29, 0.22);
  border-bottom: 1px solid rgba(113, 63, 29, 0.22);
}

.heritage-text-grid article {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(22px, 3vw, 34px);
}

.heritage-text-grid article + article {
  border-left: 1px solid rgba(113, 63, 29, 0.2);
}

.heritage-topic-head {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-bottom: 12px;
}

.heritage-topic-head svg {
  width: 50px;
  height: 50px;
  color: #a7773e;
  stroke: currentColor;
  stroke-width: 2.15;
  fill: none;
  filter: drop-shadow(0 1px 0 rgba(255, 250, 240, 0.6));
}

.heritage-topic-head h3 {
  margin-bottom: 0;
}

.heritage-text-grid h3 {
  margin-bottom: 12px;
  color: var(--accent-dark);
  font-size: clamp(1.2rem, 1.4vw, 1.45rem);
}

.heritage-text-grid p {
  margin: 0 0 12px;
  color: #5f5145;
  font-size: 0.95rem;
  line-height: 1.62;
}

.heritage-text-grid p:last-child {
  margin-bottom: 0;
}

.heritage-topic-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
  color: var(--accent-dark);
  font-size: 0.86rem;
  font-weight: 800;
}

.heritage-topic-link::after {
  content: "→";
  font-size: 1.05rem;
}

.heritage-paths {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 34px);
  width: min(1320px, 100%);
  margin-top: clamp(30px, 4vw, 46px);
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 0;
  border-bottom: 0;
}

.heritage-path {
  display: grid;
  min-width: 0;
  grid-template-rows: auto minmax(68px, auto) auto auto;
  gap: 16px;
  border: 1px solid rgba(155, 95, 44, 0.18);
  border-radius: 8px;
  padding: clamp(18px, 2vw, 28px);
  background: rgba(255, 250, 240, 0.72);
  box-shadow: 0 18px 44px rgba(68, 49, 26, 0.08);
}

.heritage-path + .heritage-path {
  border-left: 1px solid rgba(155, 95, 44, 0.18);
}

.path-head {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.path-head svg {
  width: 58px;
  height: 58px;
  color: #a7773e;
  stroke: currentColor;
  stroke-width: 1.65;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.path-head h3 {
  color: #3a2418;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.42rem, 1.72vw, 1.86rem);
  line-height: 1.05;
  white-space: nowrap;
}

.path-head p {
  margin: 5px 0 0;
  color: var(--accent-dark);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
}

.heritage-path > p {
  margin: 0;
  color: #5f5145;
  font-size: 0.93rem;
  line-height: 1.5;
}

.heritage-path img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(113, 63, 29, 0.2);
  border-radius: 5px;
  box-shadow: 0 16px 34px rgba(68, 49, 26, 0.14);
}

.path-image.is-learning {
  object-position: 50% 64%;
}

.path-image.is-master {
  object-position: 50% 48%;
}

.path-image.is-order {
  object-position: 54% 52%;
}

.path-button {
  display: inline-flex;
  width: min(320px, 100%);
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  justify-self: center;
  border: 1px solid rgba(255, 250, 240, 0.28);
  border-radius: 999px;
  background: linear-gradient(180deg, #b7833f, #9a6429);
  color: #fffaf4;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.1;
  text-align: center;
  text-shadow: 0 1px 0 rgba(60, 34, 16, 0.24);
  white-space: nowrap;
  box-shadow: 0 14px 28px rgba(113, 63, 29, 0.18), inset 0 1px 0 rgba(255, 250, 240, 0.22);
  transition: border-color 180ms ease, box-shadow 180ms ease, filter 180ms ease, transform 180ms ease;
}

.path-button::after {
  content: "\203A";
  font-size: 1.15rem;
  line-height: 1;
  transform: translateY(-1px);
}

.path-button:hover {
  border-color: rgba(255, 250, 240, 0.42);
  box-shadow: 0 17px 32px rgba(113, 63, 29, 0.24), inset 0 1px 0 rgba(255, 250, 240, 0.28);
  filter: saturate(1.08) brightness(0.98);
  transform: translateY(-1px);
}

.path-button:active {
  transform: translateY(0);
}

.heritage-quote {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: clamp(56px, 6vw, 86px);
  row-gap: 24px;
  align-items: center;
  max-width: 1120px;
  margin: clamp(24px, 4vw, 44px) auto 0;
  color: #5b3a27;
}

.heritage-quote blockquote {
  position: relative;
  margin: 0;
  padding: 0 54px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.55vw, 1.38rem);
  font-style: italic;
  line-height: 1.35;
  white-space: normal;
}

.heritage-quote blockquote::before {
  position: absolute;
  left: 0;
  top: -10px;
  color: #b3844f;
  content: "\201C";
  font-size: 4.3rem;
  line-height: 1;
}

.heritage-quote blockquote::after {
  position: absolute;
  right: 0;
  top: -10px;
  display: block;
  color: #b3844f;
  content: "\201D";
  font-size: 4.3rem;
  line-height: 1;
}

.heritage-quote figcaption {
  display: grid;
  gap: 2px;
  justify-items: center;
  align-items: center;
  color: var(--accent-dark);
  text-align: center;
  white-space: nowrap;
}

.heritage-quote figcaption img {
  display: block;
  margin-inline: auto;
  width: clamp(150px, 16vw, 230px);
  max-width: 100%;
  height: auto;
  filter: saturate(0.82) brightness(0.92);
}

.heritage-quote figcaption small {
  color: #b3844f;
  font-family: "Outfit", "Segoe UI", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.heritage-quote::after {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(320px, 42vw);
  height: 18px;
  margin-top: 0;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(155, 95, 44, 0.62), transparent);
  mask: linear-gradient(#000 0 0) center / 100% 1px no-repeat,
    radial-gradient(circle at center, transparent 0 5px, #000 6px 7px, transparent 8px);
}

.heritage-more {
  margin-top: 14px;
}

.heritage-more summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-dark);
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 800;
  list-style: none;
}

.heritage-more summary::-webkit-details-marker {
  display: none;
}

.heritage-more summary::after {
  content: "↓";
  font-size: 0.98rem;
  transform: translateY(-1px);
  transition: transform 180ms ease;
}

.heritage-more[open] summary {
  margin-bottom: 12px;
}

.heritage-more[open] summary::after {
  transform: translateY(1px) rotate(180deg);
}

.heritage-more p {
  animation: heritage-open 180ms ease;
}

@keyframes heritage-open {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.heritage-signature {
  color: var(--accent-dark) !important;
  font-size: 0.82rem !important;
  font-weight: 800;
  line-height: 1.35 !important;
}

.intro-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(20px, 5vw, 70px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.categories {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  grid-auto-rows: minmax(260px, auto);
  gap: 18px;
}

.category-tile {
  position: relative;
  display: flex;
  min-height: 300px;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  border-radius: 8px;
  padding: clamp(18px, 3vw, 34px);
  color: #fffaf4;
}

.category-tile:first-child {
  grid-row: span 2;
}

.category-tile img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.category-tile::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(180deg, rgba(37, 35, 31, 0.08), rgba(37, 35, 31, 0.76));
}

.category-tile:hover img {
  transform: scale(1.035);
}

.category-tile span {
  font-size: clamp(1.45rem, 3vw, 3.2rem);
  font-weight: 800;
  line-height: 1;
}

.category-tile p {
  max-width: 52ch;
  margin: 12px 0 0;
  color: rgba(255, 250, 244, 0.8);
}

.split {
  display: grid;
  grid-template-columns: 0.34fr 0.66fr;
  gap: clamp(24px, 5vw, 72px);
}

.course-grid {
  display: grid;
  gap: 22px;
  max-width: min(1380px, calc(100vw - 40px));
  margin: 0 auto;
}

.course-filter {
  position: sticky;
  top: 92px;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: min(1380px, calc(100vw - 40px));
  margin: 0 auto clamp(24px, 4vw, 42px);
  padding: 12px;
  border: 1px solid rgba(155, 95, 44, 0.16);
  border-radius: 999px;
  background: rgba(247, 242, 232, 0.9);
  box-shadow: 0 18px 48px rgba(68, 49, 26, 0.12);
  backdrop-filter: blur(16px);
}

.course-filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.course-filter button,
.course-filter-toggle {
  min-height: 40px;
  border: 1px solid rgba(155, 95, 44, 0.28);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.78);
  color: var(--accent-dark);
  font: 800 0.92rem/1 "Outfit", "Segoe UI", Arial, sans-serif;
}

.course-filter button {
  cursor: pointer;
  padding: 0 18px;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.course-filter button:hover,
.course-filter button.is-active {
  border-color: rgba(155, 95, 44, 0.54);
  background: var(--accent);
  color: var(--surface);
}

.course-filter button:hover {
  transform: translateY(-1px);
}

.course-filter-toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 16px;
  white-space: nowrap;
}

.course-filter-toggle input {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
}

.course-filter-empty {
  max-width: min(720px, calc(100vw - 40px));
  margin: 26px auto 0;
}

.course-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.32fr) minmax(0, 0.68fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.78);
  box-shadow: 0 18px 54px rgba(68, 49, 26, 0.08);
}

.course-card[hidden],
.course-group-heading[hidden],
.course-filter-empty[hidden] {
  display: none !important;
}

.course-group-heading {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  margin: clamp(14px, 3vw, 30px) 0 0;
  color: var(--ink);
}

.course-group-heading::before,
.course-group-heading::after {
  content: "";
  flex: 1 1 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(155, 95, 44, 0.36));
}

.course-group-heading::after {
  background: linear-gradient(90deg, rgba(155, 95, 44, 0.36), transparent);
}

.course-group-heading span {
  color: var(--accent-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.55rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.05;
  text-align: center;
  overflow-wrap: anywhere;
}

.course-card.is-full {
  border-color: rgba(159, 42, 32, 0.36);
  background: linear-gradient(90deg, rgba(159, 42, 32, 0.08), rgba(255, 250, 240, 0.68) 28%, rgba(255, 250, 240, 0.58));
  box-shadow: inset 5px 0 0 rgba(159, 42, 32, 0.78), 0 18px 54px rgba(68, 49, 26, 0.08);
}

.course-card.is-low {
  border-color: rgba(159, 42, 32, 0.22);
}

.course-media {
  position: relative;
  height: 100%;
  min-height: 0;
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  overflow: hidden;
}

.course-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.course-card:hover .course-media img {
  transform: scale(1.035);
}

.course-gallery-trigger {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.course-gallery-trigger img {
  pointer-events: none;
}

.course-gallery-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(16, 56, 76, 0.88);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  box-shadow: 0 8px 22px rgba(15, 35, 50, 0.2);
}

.course-media.has-gallery::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 54%, rgba(15, 35, 50, 0.32));
}

.course-image-modal[hidden]:not(.is-open) {
  display: none;
}

.course-image-modal {
  position: fixed;
  inset: 0;
  z-index: 82;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 46px);
}

.course-image-modal.is-open {
  display: grid;
}

.course-image-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(54, 42, 31, 0.38);
  backdrop-filter: blur(12px);
}

.course-image-modal-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: min(1180px, 100%);
  max-height: min(820px, calc(100svh - 40px));
  border: 1px solid rgba(113, 63, 29, 0.18);
  border-radius: 10px;
  padding: clamp(18px, 2.3vw, 34px);
  background: rgba(255, 250, 241, 0.98);
  box-shadow: 0 36px 120px rgba(39, 29, 20, 0.28);
}

.course-image-modal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 16px;
}

.course-image-modal-top h2 {
  margin: 0;
  color: #3a1f12;
  font-size: clamp(1.55rem, 2.4vw, 2.8rem);
  line-height: 1.05;
}

.course-image-stage {
  position: relative;
  min-height: 0;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #f3eadb;
  overflow: hidden;
}

.course-image-stage img {
  width: 100%;
  height: min(66svh, 640px);
  object-fit: contain;
  border-radius: 8px;
}

.course-image-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: clamp(42px, 4vw, 58px);
  height: clamp(42px, 4vw, 58px);
  border: 1px solid rgba(176, 128, 70, 0.34);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.88);
  color: #6f3d18;
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 14px 38px rgba(39, 29, 20, 0.2);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.course-image-nav:hover,
.course-image-nav:focus-visible {
  background: #a8662a;
  color: #fffaf1;
  transform: translateY(-50%) scale(1.04);
}

.course-image-nav.is-prev {
  left: clamp(10px, 2vw, 22px);
}

.course-image-nav.is-next {
  right: clamp(10px, 2vw, 22px);
}

.course-image-nav[hidden] {
  display: none;
}

.course-description-modal[hidden]:not(.is-open) {
  display: none;
}

.course-description-modal {
  position: fixed;
  inset: 0;
  z-index: 84;
  display: grid;
  place-items: center;
  padding: clamp(12px, 2vw, 28px);
}

.course-description-modal.is-open {
  display: grid;
}

.course-description-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(54, 42, 31, 0.42);
  backdrop-filter: blur(14px);
}

.course-description-modal-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: min(1500px, calc(100vw - 24px));
  height: min(900px, calc(100svh - 24px));
  border: 1px solid rgba(113, 63, 29, 0.18);
  border-radius: 10px;
  background: rgba(255, 250, 241, 0.98);
  box-shadow: 0 36px 120px rgba(39, 29, 20, 0.32);
  overflow: hidden;
}

.course-description-modal-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  padding: 10px clamp(14px, 2vw, 24px);
  border-bottom: 1px solid rgba(113, 63, 29, 0.16);
  background: rgba(255, 250, 241, 0.94);
}

.course-description-modal-top .eyebrow {
  margin-bottom: 6px;
}

.course-description-modal-top h2 {
  margin: 0;
  color: #3a1f12;
  font-size: clamp(1.35rem, 2.1vw, 2.35rem);
  line-height: 1.05;
}

.course-description-modal-actions {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
}

.course-description-print {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(113, 63, 29, 0.18);
  border-radius: 50%;
  background: rgba(183, 131, 63, 0.13);
  color: var(--accent-dark);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.course-description-print svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.course-description-print:hover {
  background: var(--accent-dark);
  color: var(--surface);
  transform: translateY(-1px);
}

.course-description-modal-content {
  min-height: 0;
  padding: clamp(18px, 2.6vw, 42px);
  background:
    radial-gradient(circle at 50% 0, rgba(183, 131, 63, 0.08), transparent 34%),
    #efe6d7;
  overflow: auto;
}

.course-description-loading {
  max-width: 760px;
  margin: 12vh auto 0;
  border: 1px solid rgba(113, 63, 29, 0.16);
  border-radius: 8px;
  padding: 28px;
  background: rgba(255, 250, 241, 0.92);
  color: var(--muted);
  text-align: center;
}

.course-description-loading.is-error {
  color: #9f2a20;
}

.course-description-document {
  position: relative;
  width: min(1120px, 100%);
  min-height: min(1260px, 100%);
  margin: 0 auto;
  border: 1px solid rgba(113, 63, 29, 0.18);
  border-radius: 6px;
  padding: clamp(28px, 4vw, 62px);
  background: #fffaf1;
  box-shadow: 0 24px 80px rgba(68, 49, 26, 0.18);
  overflow: hidden;
}

.course-description-document::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 17%;
  background: rgba(46, 84, 149, 0.045);
  content: "";
  pointer-events: none;
}

.course-description-document > * {
  position: relative;
  z-index: 1;
}

.course-description-document.is-empty {
  min-height: 0;
}

.course-description-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: clamp(28px, 4.5vw, 70px);
  align-items: start;
  margin-bottom: clamp(28px, 4vw, 54px);
}

.course-description-header h1 {
  max-width: 100%;
  margin: 0 0 12px;
  color: #2e5495;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3.15rem);
  line-height: 1.02;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.course-description-header.is-long-title h1 {
  font-size: clamp(1.72rem, 2.45vw, 2.58rem);
  line-height: 1.06;
}

.course-description-header p:not(.eyebrow) {
  max-width: 52ch;
  margin: 0;
  color: #bd8f2d;
  font-size: clamp(1.05rem, 1.4vw, 1.32rem);
  font-weight: 700;
  line-height: 1.35;
}

.course-description-header img {
  justify-self: end;
  width: 100%;
  max-height: 310px;
  object-fit: cover;
  border: 1px solid rgba(113, 63, 29, 0.18);
  border-radius: 5px;
  box-shadow: 0 18px 44px rgba(68, 49, 26, 0.16);
}

.course-description-section {
  max-width: 980px;
  margin-top: clamp(26px, 4vw, 48px);
}

.course-description-section h2 {
  margin: 0 0 18px;
  color: #2e5495;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.1;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.course-description-section p {
  max-width: 82ch;
  margin: 0;
  color: #2f2924;
  font-size: 1rem;
  line-height: 1.68;
}

.course-description-section.is-wide,
.course-description-section.is-wide p {
  max-width: none;
}

.course-description-data {
  display: grid;
  gap: 10px;
  margin: 0;
}

.course-description-data div {
  display: grid;
  grid-template-columns: minmax(120px, 0.22fr) minmax(0, 0.78fr);
  gap: 18px;
  align-items: baseline;
}

.course-description-data dt,
.course-description-data dd {
  margin: 0;
  color: #2f2924;
  font-size: 0.98rem;
  line-height: 1.55;
}

.course-description-data dt {
  font-weight: 800;
}

.course-description-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-top: clamp(38px, 6vw, 76px);
  color: #2f2924;
}

.course-description-footer p {
  margin: 0;
  font-weight: 700;
  line-height: 1.5;
}

.course-description-footer img {
  max-width: min(230px, 42vw);
  max-height: 92px;
  object-fit: contain;
  opacity: 0.58;
  mix-blend-mode: multiply;
}

.course-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(22px, 3vw, 34px);
}

.course-meta-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.course-meta-line .eyebrow {
  margin: 0;
}

.course-status {
  border: 1px solid rgba(155, 95, 44, 0.22);
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(255, 250, 240, 0.86);
  color: var(--accent-dark);
  font-size: 0.86rem;
  font-weight: 800;
  white-space: nowrap;
}

.course-status.has-seats {
  border-color: rgba(82, 107, 72, 0.34);
  color: var(--green);
}

.course-status.is-full {
  border-color: rgba(159, 42, 32, 0.58);
  background: #9f2a20;
  color: var(--surface);
}

.course-status.is-low {
  border-color: rgba(159, 42, 32, 0.4);
  background: rgba(159, 42, 32, 0.08);
  color: #9f2a20;
}

.course-body h3 {
  max-width: 22ch;
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.2vw, 2.35rem);
  line-height: 1.04;
}

.course-leader,
.course-date,
.course-note {
  margin: 0;
}

.course-leader {
  color: var(--ink);
  font-weight: 800;
}

.course-note {
  max-width: 64ch;
  color: var(--accent-dark);
  font-weight: 800;
}

.course-note.is-urgent {
  color: #9f2a20;
}

.course-date {
  color: var(--muted);
}

.course-details {
  color: var(--muted);
  font-size: 0.96rem;
}

.course-details ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 26px;
  margin: 4px 0 0;
  padding-left: 1.05rem;
}

.course-details p,
.course-details h5 {
  margin: 0;
}

.course-details a {
  color: var(--accent-dark);
  font-weight: 800;
}

.course-body > dl,
.course-body > .button-row {
  display: none;
}

.course-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.course-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.course-detail-icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: #a8662a;
  flex: 0 0 auto;
}

.course-detail-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.course-actions .button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.course-actions .button {
  min-width: 140px;
  width: auto;
  justify-content: center;
  padding-inline: 18px;
}

.book-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(52px, 8vw, 104px) clamp(18px, 4vw, 40px);
  border-top: 1px solid var(--line);
}

.book-feature-copy {
  max-width: 620px;
}

.book-feature-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
}

.book-ornament {
  width: min(190px, 46vw);
  margin-bottom: 20px;
  opacity: 0.66;
}

.book-cover {
  display: block;
}

.book-cover img {
  width: 100%;
  border: 1px solid rgba(113, 63, 29, 0.18);
  border-radius: 6px;
  box-shadow: 0 24px 70px rgba(68, 49, 26, 0.18);
}

.proof {
  display: grid;
  grid-template-columns: 0.9fr 270px 0.8fr;
  gap: clamp(22px, 5vw, 58px);
  align-items: center;
}

.proof img {
  align-self: end;
  max-height: 420px;
  object-fit: contain;
}

.proof-points ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.proof-points li {
  border-top: 1px solid var(--line);
  padding-top: 10px;
  font-weight: 800;
}

.page-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(54px, 9vw, 118px) clamp(18px, 4vw, 40px) clamp(26px, 5vw, 72px);
}

.page-hero.compact h1 {
  max-width: 12ch;
}

.page-hero.compact p:not(.eyebrow) {
  max-width: 62ch;
}

.contact-page-hero {
  padding-bottom: clamp(10px, 2vw, 22px);
}

.courses-page-hero {
  display: grid;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 0.72fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
  padding-top: clamp(86px, 10vw, 136px);
  padding-bottom: clamp(18px, 3.2vw, 42px);
}

.courses-page-mark {
  padding-top: 8px;
}

.courses-page-hero .page-ornament {
  width: min(190px, 42vw);
  margin-bottom: 24px;
  opacity: 0.58;
}

.courses-page-graphic {
  width: min(260px, 100%);
  aspect-ratio: 0.78 / 1;
  margin-top: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(113, 63, 29, 0.18);
  border-radius: 6px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 20px 52px rgba(68, 49, 26, 0.14);
}

.courses-page-hero.compact h1,
.courses-page-hero h1 {
  max-width: 760px;
  color: #2f1b10;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.55rem, 5.1vw, 5.15rem);
  line-height: 0.98;
  text-wrap: balance;
}

.courses-page-intro {
  position: relative;
  max-width: 940px;
}

.courses-page-intro::before {
  display: block;
  width: min(220px, 38vw);
  height: 1px;
  margin-bottom: clamp(18px, 2.6vw, 30px);
  background: rgba(113, 63, 29, 0.28);
  content: "";
}

.courses-page-hero.compact p:not(.eyebrow),
.courses-page-intro p {
  max-width: 82ch;
  margin-top: clamp(18px, 2.8vw, 30px);
  color: #5f5145;
  font-size: clamp(1rem, 1.22vw, 1.15rem);
  line-height: 1.78;
}

.courses-page-hero + .section {
  padding-top: clamp(24px, 4vw, 52px);
}

.page-hero.about {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: clamp(28px, 6vw, 88px);
  align-items: end;
}

.page-hero.about h1 {
  max-width: 13ch;
}

.page-hero.about img {
  max-height: 500px;
  object-fit: contain;
}

.page-hero.about .page-ornament {
  width: 82px;
  max-height: none;
  opacity: 1;
  filter: brightness(0) saturate(100%) invert(37%) sepia(39%) saturate(703%) hue-rotate(351deg) brightness(88%) contrast(88%);
}

.about-tradition {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
  padding-top: clamp(34px, 5vw, 72px);
}

.about-tradition .section-ornament {
  margin: 0 0 22px;
}

.about-tradition h2 {
  max-width: 12ch;
  margin: 12px 0 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.1rem, 3.7vw, 3.6rem);
  font-weight: 800;
  line-height: 1.02;
  overflow-wrap: anywhere;
}

.about-tradition-copy {
  color: #5f5145;
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  line-height: 1.82;
}

.about-tradition-copy p {
  margin: 0;
}

.about-tradition-copy p + p {
  margin-top: 1.2em;
}

.editorial,
.text-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(22px, 5vw, 68px);
}

.contact-layout {
  display: block;
  padding-top: 0;
  padding-bottom: clamp(10px, 2vw, 20px);
}

.editorial img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 14px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 24px clamp(18px, 4vw, 40px) 96px;
}

.gallery-grid figure {
  margin: 0;
}

.gallery-grid figure:nth-child(2n) {
  transform: translateY(44px);
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
}

.home-gallery-section {
  position: relative;
  max-width: 1460px;
  margin: 0 auto;
  padding: clamp(58px, 7vw, 92px) clamp(18px, 4vw, 40px) clamp(28px, 4vw, 48px);
  border-top: 1px solid rgba(219, 185, 132, 0.24);
  border-bottom: 1px solid rgba(219, 185, 132, 0.24);
  background:
    radial-gradient(circle at 50% -10%, rgba(184, 124, 58, 0.22), transparent 36%),
    linear-gradient(90deg, rgba(18, 11, 7, 0.78), transparent 16%, transparent 84%, rgba(18, 11, 7, 0.78)),
    linear-gradient(135deg, #1f120b 0%, #372013 42%, #24150d 100%);
  box-shadow: 0 0 0 100vmax #24150d;
  clip-path: inset(0 -100vmax);
}

.home-gallery-head {
  max-width: 1120px;
  margin: 0 auto clamp(34px, 4vw, 56px);
  text-align: center;
}

.home-gallery-head h2 {
  max-width: none;
  margin: 0;
  color: #fff8ea;
  font-size: clamp(2rem, 3.6vw, 3.7rem);
  line-height: 0.98;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.34);
  white-space: nowrap;
}

.home-gallery-head p {
  max-width: 640px;
  margin: 14px auto 0;
  color: rgba(255, 248, 234, 0.76);
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
  line-height: 1.55;
}

.home-gallery-divider {
  display: grid;
  grid-template-columns: minmax(40px, 1fr) auto minmax(40px, 1fr);
  gap: clamp(18px, 4vw, 48px);
  align-items: center;
  margin-bottom: clamp(22px, 4vw, 42px);
}

.home-gallery-divider::before,
.home-gallery-divider::after {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(219, 185, 132, 0.62));
  content: "";
}

.home-gallery-divider::after {
  background: linear-gradient(90deg, rgba(219, 185, 132, 0.62), transparent);
}

.home-gallery-ornament {
  width: 164px;
  height: 54px;
  margin: 0 auto;
  object-fit: contain;
  opacity: 0.9;
  filter: brightness(0) saturate(100%) invert(82%) sepia(19%) saturate(638%) hue-rotate(359deg) brightness(91%) contrast(86%) drop-shadow(0 4px 18px rgba(0, 0, 0, 0.3));
}

.home-gallery-cards {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: clamp(22px, 3vw, 34px);
}

.home-gallery-wall,
.gallery-overview {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 0;
}

.home-gallery-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(8, 64px);
  max-width: 1320px;
  margin: 0 auto;
  gap: 0;
}

.home-gallery-wall-item {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(219, 185, 132, 0.32);
  border-radius: 0;
  padding: 0;
  background: rgba(22, 13, 8, 0.86);
  cursor: pointer;
}

.home-gallery-wall-item::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(17, 10, 6, 0.02), rgba(17, 10, 6, 0.2));
  opacity: 0.64;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.home-gallery-wall-item:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
.home-gallery-wall-item:nth-child(2) { grid-column: 2; grid-row: 1 / 4; }
.home-gallery-wall-item:nth-child(3) { grid-column: 3; grid-row: 1 / 3; }
.home-gallery-wall-item:nth-child(4) { grid-column: 4; grid-row: 1 / 2; }
.home-gallery-wall-item:nth-child(5) { grid-column: 1; grid-row: 3 / 5; }
.home-gallery-wall-item:nth-child(6) { grid-column: 2; grid-row: 4 / 6; }
.home-gallery-wall-item:nth-child(7) { grid-column: 3; grid-row: 3 / 6; }
.home-gallery-wall-item:nth-child(8) { grid-column: 4; grid-row: 2 / 5; }
.home-gallery-wall-item:nth-child(9) { grid-column: 1; grid-row: 5 / 7; }
.home-gallery-wall-item:nth-child(10) { grid-column: 2; grid-row: 6 / 9; }
.home-gallery-wall-item:nth-child(11) { grid-column: 3; grid-row: 6 / 7; }
.home-gallery-wall-item:nth-child(12) { grid-column: 4; grid-row: 5 / 7; }
.home-gallery-wall-item:nth-child(13) { grid-column: 1; grid-row: 7 / 9; }
.home-gallery-wall-item:nth-child(14) { grid-column: 3; grid-row: 7 / 9; }
.home-gallery-wall-item:nth-child(15) { grid-column: 4; grid-row: 7 / 8; }
.home-gallery-wall-item:nth-child(16) { grid-column: 4; grid-row: 8 / 9; }

.home-gallery-wall-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.home-gallery-wall-item:hover img,
.home-gallery-wall-item:focus-visible img {
  transform: scale(1.035);
}

.home-gallery-wall-item:hover::after,
.home-gallery-wall-item:focus-visible::after {
  opacity: 0.32;
}

.home-gallery-actions {
  display: flex;
  justify-content: center;
  margin-top: clamp(30px, 4vw, 52px);
}

.home-gallery-actions a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(219, 185, 132, 0.44);
  border-radius: 999px;
  padding: 0 24px;
  color: #fff8ea;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  background: rgba(255, 250, 240, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 250, 240, 0.12);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.home-gallery-actions a::after {
  content: "\203A";
  margin-left: 10px;
  font-size: 1.2rem;
  line-height: 1;
}

.home-gallery-actions a:hover {
  border-color: rgba(255, 250, 240, 0.62);
  background: rgba(255, 250, 240, 0.12);
  transform: translateY(-1px);
}

.google-trust-section {
  max-width: 1460px;
  margin: 0 auto;
  padding: clamp(42px, 6vw, 72px) clamp(18px, 4vw, 40px);
  background:
    radial-gradient(circle at 50% 0, rgba(255, 250, 240, 0.96), rgba(247, 242, 232, 0.98) 58%, rgba(236, 226, 210, 0.72)),
    var(--paper);
}

.google-trust-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  width: min(1320px, 100%);
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(155, 95, 44, 0.2);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.78);
  box-shadow: 0 26px 70px rgba(68, 49, 26, 0.12);
}

.google-trust-panel {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(22px, 3vw, 36px);
}

.google-trust-panel:first-child {
  grid-template-columns: minmax(150px, 0.5fr) minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  column-gap: clamp(20px, 2.6vw, 34px);
  row-gap: 14px;
}

.google-trust-panel:first-child .google-trust-points,
.google-trust-panel:first-child .google-trust-link {
  grid-column: 1 / -1;
}

.google-trust-panel:first-child .google-trust-link {
  width: 100%;
  align-self: end;
}

.voucher-panel {
  grid-template-columns: minmax(0, 1fr) minmax(170px, 0.58fr);
  grid-template-rows: auto auto auto 1fr;
  align-items: start;
  column-gap: clamp(22px, 3vw, 40px);
  row-gap: 14px;
  border-left: 1px solid rgba(155, 95, 44, 0.2);
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.66), rgba(244, 233, 216, 0.38)),
    rgba(255, 250, 240, 0.36);
}

.voucher-panel .eyebrow,
.voucher-panel h2,
.voucher-panel p:not(.eyebrow),
.voucher-panel .voucher-link {
  grid-column: 1;
}

.voucher-image {
  grid-column: 2;
  grid-row: 1 / span 4;
  width: 100%;
  aspect-ratio: 4 / 5;
  align-self: center;
  border: 1px solid rgba(113, 63, 29, 0.18);
  border-radius: 7px;
  object-fit: cover;
  object-position: 50% 62%;
  box-shadow: 0 24px 54px rgba(68, 49, 26, 0.16);
}

.google-trust-rating {
  display: grid;
  gap: 0;
  justify-items: start;
  color: var(--accent-dark);
}

.google-trust-rating strong {
  color: #3a2418;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  line-height: 0.95;
}

.star-row {
  color: #b27a34;
  font-size: clamp(1.35rem, 1.6vw, 1.55rem);
  letter-spacing: 0.045em;
  line-height: 1;
}

.google-trust-rating small {
  margin-top: 4px;
  color: #6b5847;
  font-size: 0.88rem;
  font-weight: 700;
}

.google-trust-copy h2,
.voucher-panel h2 {
  margin: 0 0 6px;
  color: #3a2418;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 1.65vw, 1.9rem);
  line-height: 1.1;
}

.google-trust-copy p:last-child,
.voucher-panel p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
  color: #5c4636;
  font-size: 1rem;
  line-height: 1.72;
}

.voucher-panel p:not(.eyebrow) {
  max-width: 520px;
}

.google-trust-points {
  display: grid;
  gap: 8px;
  margin-top: 20px;
  color: #4b3425;
  font-size: 0.92rem;
  font-weight: 800;
}

.google-trust-points span {
  display: flex;
  gap: 10px;
  align-items: center;
}

.google-trust-points span::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b27a34;
  content: "";
}

.google-trust-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(113, 63, 29, 0.22);
  border-radius: 999px;
  padding: 0 28px;
  background: linear-gradient(180deg, rgba(255, 250, 240, 0.74), rgba(246, 236, 220, 0.62));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 10px 24px rgba(68, 49, 26, 0.06);
  color: var(--accent-dark);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.012em;
  white-space: nowrap;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.google-trust-link:hover {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
  box-shadow: 0 14px 30px rgba(68, 49, 26, 0.16);
  color: #fffaf0;
  transform: translateY(-1px);
}

.voucher-link {
  grid-row: 4;
  align-self: end;
  justify-self: start;
  margin-top: 2px;
}

.voucher-page-hero {
  padding-bottom: clamp(34px, 5vw, 62px);
}

.voucher-page-hero h1 {
  max-width: 13ch;
}

.voucher-page-hero p:not(.eyebrow) {
  max-width: 54ch;
}

.voucher-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding-top: clamp(24px, 4vw, 58px);
}

.voucher-intro-image {
  position: relative;
}

.voucher-intro-image::before {
  position: absolute;
  inset: 18px -18px -18px 18px;
  z-index: -1;
  content: "";
  border: 1px solid rgba(113, 63, 29, 0.18);
  background: rgba(236, 221, 193, 0.35);
}

.voucher-intro-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 18px 46px rgba(62, 43, 24, 0.18);
}

.voucher-intro-copy h2,
.voucher-flow h2,
.voucher-final h2 {
  max-width: 16ch;
  margin-bottom: 12px;
}

.voucher-type-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.voucher-type-grid div {
  min-height: 136px;
  border-top: 2px solid rgba(132, 88, 45, 0.42);
  padding: 16px 0 0;
}

.voucher-type-grid strong,
.voucher-flow li strong {
  display: block;
  color: var(--ink);
  font-family: "Outfit", "Segoe UI", Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
}

.voucher-flow li strong,
.voucher-flow li span {
  grid-column: 2;
}

.voucher-type-grid span,
.voucher-flow li span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  line-height: 1.6;
}

.voucher-type-actions {
  margin-top: 26px;
  gap: 12px;
}

.voucher-type-actions .button {
  min-width: 152px;
}

.voucher-flow {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding-top: clamp(20px, 4vw, 52px);
}

.voucher-validity-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin-top: 22px;
  border-left: 3px solid rgba(132, 88, 45, 0.52);
  padding: 13px 16px;
  background: rgba(255, 250, 240, 0.66);
  color: var(--ink);
}

.voucher-validity-note strong {
  color: var(--accent-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.voucher-validity-note span {
  color: #5c4636;
  font-size: 0.95rem;
  line-height: 1.55;
}

.voucher-flow ol {
  counter-reset: voucher-step;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.voucher-flow li {
  counter-increment: voucher-step;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.voucher-flow li::before {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(132, 88, 45, 0.36);
  border-radius: 50%;
  color: var(--accent-dark);
  content: counter(voucher-step);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 800;
}

.voucher-final {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(22px, 4vw, 54px);
  border-top: 1px solid var(--line);
  padding-top: clamp(32px, 5vw, 68px);
}

.voucher-final h2 {
  margin-bottom: 8px;
}

.voucher-final p {
  max-width: 48ch;
  margin: 0;
}

@media (max-width: 860px) {
  .voucher-intro,
  .voucher-flow {
    grid-template-columns: 1fr;
  }

  .voucher-intro-image::before {
    inset: 14px -10px -14px 10px;
  }

  .voucher-final {
    display: grid;
    justify-content: stretch;
  }

  .voucher-validity-note {
    max-width: 620px;
  }

  .voucher-order-summary {
    grid-template-columns: 1fr;
  }

  .voucher-order-summary div {
    min-height: 0;
  }

  .voucher-order-summary div + div {
    border-top: 1px solid rgba(155, 95, 44, 0.18);
    border-left: 0;
  }
}

@media (max-width: 560px) {
  .voucher-type-grid {
    grid-template-columns: 1fr;
  }

  .voucher-type-grid div {
    min-height: 0;
  }

  .voucher-flow li {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
  }

  .voucher-flow li::before {
    width: 32px;
    height: 32px;
  }

  .voucher-validity-note {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .voucher-form-block {
    padding: 16px;
  }

  .site-form .voucher-form-block h2 {
    align-items: flex-start;
    font-size: 1.28rem;
  }

  .voucher-form-block h2 span {
    width: 30px;
    height: 30px;
  }
}

.gallery-overview {
  max-width: 1460px;
  margin: 0 auto;
  padding: 24px clamp(18px, 4vw, 40px) 96px;
}

.home-gallery-card {
  display: flex;
  flex: 0 1 calc((100% - (2 * clamp(22px, 3vw, 34px))) / 3);
  min-width: 0;
  max-width: 454px;
}

.gallery-open {
  display: grid;
  grid-template-rows: 1fr auto;
  width: 100%;
  min-height: 204px;
  overflow: hidden;
  border: 1px solid rgba(113, 63, 29, 0.14);
  border-radius: 6px;
  padding: 0;
  background: rgba(255, 250, 240, 0.82);
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 28px 82px rgba(68, 49, 26, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.gallery-open:hover,
.gallery-open:focus-visible {
  border-color: rgba(155, 95, 44, 0.38);
  box-shadow: 0 34px 92px rgba(68, 49, 26, 0.16);
  transform: translateY(-3px);
}

.gallery-card-image {
  position: relative;
  height: clamp(180px, 18vw, 260px);
  min-height: 0;
  overflow: hidden;
}

.gallery-card-image::after {
  position: absolute;
  inset: 32% 0 0;
  background: linear-gradient(180deg, rgba(30, 20, 13, 0), rgba(30, 20, 13, 0.7));
  content: "";
}

.gallery-card-image img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-open:hover .gallery-card-image img,
.gallery-open:focus-visible .gallery-card-image img {
  transform: scale(1.035);
}

.gallery-card-image strong {
  position: absolute;
  right: 24px;
  bottom: 16px;
  left: 24px;
  z-index: 1;
  color: #fffaf0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.2vw, 2.35rem);
  line-height: 0.95;
  text-shadow: 0 2px 18px rgba(20, 14, 9, 0.55);
}

.gallery-card-copy {
  display: flex;
  align-items: center;
  min-height: 74px;
  padding: 16px 24px 18px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.45;
}

.gallery-card-copy em {
  justify-self: start;
  border: 1px solid rgba(155, 95, 44, 0.34);
  border-radius: 999px;
  padding: 8px 22px;
  color: var(--accent-dark);
  font-style: normal;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.gallery-card-copy em::after {
  content: " ›";
}

.gallery-modal[hidden]:not(.is-open) {
  display: none;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(10px, 2vw, 28px);
}

.gallery-modal.is-open {
  display: grid;
}

.gallery-modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 24%, rgba(183, 131, 63, 0.18), transparent 34%),
    rgba(47, 36, 27, 0.48);
  backdrop-filter: blur(16px) saturate(0.9);
}

.gallery-modal-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(1500px, 100%);
  max-height: min(880px, calc(100svh - 24px));
  border: 1px solid rgba(183, 131, 63, 0.34);
  border-radius: 8px;
  padding: clamp(14px, 1.8vw, 28px);
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.98), rgba(246, 238, 224, 0.98));
  box-shadow: 0 34px 96px rgba(39, 29, 20, 0.26);
}

.gallery-modal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 12px;
}

.gallery-modal-top h2 {
  margin: 0;
  color: #3a1f12;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.65rem, 2.3vw, 2.55rem);
  font-weight: 800;
  line-height: 1.02;
}

.gallery-modal-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.gallery-counter {
  color: var(--accent-dark);
  font-size: 0.95rem;
  font-weight: 800;
  white-space: nowrap;
}

.gallery-close {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(113, 63, 29, 0.2);
  border-radius: 50%;
  background: rgba(255, 250, 241, 0.78);
  color: var(--accent-dark);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.gallery-close:hover {
  background: var(--accent-dark);
  color: var(--surface);
  transform: translateY(-1px);
}

.gallery-stage {
  position: relative;
  min-height: 0;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 0, rgba(255, 250, 241, 0.96), rgba(239, 226, 206, 0.82) 64%),
    #efe2ce;
  box-shadow: inset 0 0 0 1px rgba(113, 63, 29, 0.08);
  overflow: hidden;
}

.gallery-stage img {
  width: 100%;
  height: min(62svh, 640px);
  object-fit: contain;
  border-radius: 8px;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(113, 63, 29, 0.14);
  border-radius: 50%;
  background: rgba(255, 250, 241, 0.72);
  color: var(--accent-dark);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.74;
  transform: translateY(-50%);
  transition: background 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.gallery-arrow:hover {
  background: rgba(255, 250, 241, 0.98);
  opacity: 1;
  transform: translateY(-50%) scale(1.03);
}

.gallery-arrow.previous {
  left: 18px;
}

.gallery-arrow.next {
  right: 18px;
}

.gallery-thumbs {
  display: flex;
  gap: 9px;
  overflow-x: auto;
  padding-top: 12px;
}

.gallery-thumb {
  flex: 0 0 92px;
  border: 1px solid transparent;
  border-radius: 5px;
  padding: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0.62;
  transition: border-color 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.gallery-thumb.is-active {
  border-color: #b77a34;
  opacity: 1;
}

.gallery-thumb:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.gallery-thumb img {
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
  border-radius: 4px;
}

body.gallery-modal-open {
  overflow: hidden;
}

.contact-card,
.empty-state {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(16px, 2vw, 24px);
  background: rgba(255, 250, 240, 0.68);
}

.contact-card {
  max-width: min(760px, 100%);
  margin: 0 auto;
}

.contact-card a:not(.button) {
  display: table;
  margin-top: 7px;
  color: var(--accent-dark);
  font-weight: 800;
}

.contact-card .button {
  margin-top: 14px;
}

.legal-content {
  display: block;
  max-width: 980px;
  color: var(--muted);
  font-size: clamp(0.98rem, 1vw, 1.08rem);
  line-height: 1.72;
}

.legal-content p,
.legal-content ul,
.legal-content ol {
  margin: 0 0 1rem;
}

.legal-content strong {
  color: #351e12;
}

.legal-content a {
  color: var(--accent-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content hr {
  margin: 24px 0;
  border: 0;
  border-top: 1px solid rgba(113, 63, 29, 0.18);
}

.legal-content.legal-agb,
.legal-content.legal-widerruf {
  overflow-x: clip;
}

.legal-agb p,
.legal-agb li,
.legal-widerruf p,
.legal-widerruf li {
  overflow-wrap: anywhere;
}

.legal-agb h2,
.legal-widerruf h2 {
  max-width: 780px;
  padding-top: 0.15rem;
}

.legal-agb p:has(strong:first-child),
.legal-widerruf p:has(strong:first-child) {
  max-width: 760px;
  margin-top: clamp(26px, 4vw, 48px);
  margin-bottom: 0.7rem;
  color: #3b281d;
  font-size: clamp(1.04rem, 1.4vw, 1.22rem);
  line-height: 1.22;
}

.form-section {
  display: grid;
  gap: clamp(22px, 4vw, 42px);
  max-width: min(1180px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 40px) clamp(72px, 9vw, 120px);
}

.contact-form-section {
  padding-top: 0;
  padding-bottom: clamp(54px, 7vw, 86px);
}

.form-course-summary,
.site-form,
.form-message {
  border: 1px solid rgba(155, 95, 44, 0.18);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.82);
  box-shadow: 0 18px 54px rgba(68, 49, 26, 0.08);
}

.form-course-summary {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(20px, 4vw, 44px);
  overflow: hidden;
}

.form-course-summary > img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.form-course-summary > div,
.site-form,
.form-message {
  padding: clamp(24px, 4vw, 44px);
}

.voucher-order-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(155, 95, 44, 0.2);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.88);
  box-shadow: 0 18px 54px rgba(68, 49, 26, 0.08);
}

.voucher-order-summary div {
  display: grid;
  gap: 5px;
  min-height: 104px;
  align-content: center;
  padding: 22px clamp(18px, 3vw, 34px);
}

.voucher-order-summary div + div {
  border-left: 1px solid rgba(155, 95, 44, 0.18);
}

.voucher-order-summary strong {
  color: #3a2418;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.1rem, 1.5vw, 1.45rem);
  line-height: 1.12;
}

.voucher-order-summary span {
  color: #6a5340;
  font-size: 0.94rem;
  font-weight: 650;
  line-height: 1.45;
}

.form-course-summary h2,
.site-form h2,
.form-message h2 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 2.6rem);
}

.site-form {
  display: grid;
  gap: 22px;
}

.voucher-form-block {
  display: grid;
  gap: 18px;
  border: 1px solid rgba(155, 95, 44, 0.14);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 28px);
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.82), rgba(246, 238, 224, 0.52)),
    rgba(255, 250, 240, 0.56);
}

.site-form .voucher-form-block h2 {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 0;
  font-size: clamp(1.32rem, 2vw, 1.92rem);
}

.voucher-form-block h2 span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(132, 88, 45, 0.34);
  border-radius: 50%;
  color: var(--accent-dark);
  font-family: "Outfit", "Segoe UI", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 850;
}

.voucher-field-hint {
  margin: -6px 0 0;
  color: #75614e;
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.45;
}

.voucher-details-grid {
  align-items: end;
}

.voucher-details-grid .voucher-field-hint {
  margin-top: -6px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-grid .is-wide {
  grid-column: 1 / -1;
}

.site-form label {
  display: grid;
  gap: 7px;
  color: var(--accent-dark);
  font-weight: 800;
}

.site-form .symposium-workshop-field {
  gap: 5px;
}

.symposium-workshop-label-title {
  color: var(--accent-dark);
  font-weight: 800;
}

.symposium-workshop-label-meta {
  max-width: 100%;
  color: #75614e;
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.35;
}

.site-form input,
.site-form textarea,
.site-form select {
  width: 100%;
  border: 1px solid rgba(113, 63, 29, 0.2);
  border-radius: 8px;
  padding: 12px 13px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font: 600 1rem/1.35 "Outfit", "Segoe UI", Arial, sans-serif;
}

.site-form textarea {
  resize: vertical;
}

.spam-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.form-checks label,
.site-form .privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #5f5145;
  line-height: 1.55;
}

.site-form .privacy-check {
  border-top: 1px solid rgba(113, 63, 29, 0.14);
  padding-top: 18px;
  color: #66513f;
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.58;
}

.form-checks input,
.site-form .privacy-check input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
}

.voucher-form-note {
  border-left: 3px solid rgba(132, 88, 45, 0.52);
  padding: 13px 16px;
  background: rgba(255, 250, 240, 0.74);
  color: #4d3828;
  font-size: 0.96rem;
  font-weight: 750;
  line-height: 1.5;
}

@media (max-width: 860px) {
  .voucher-order-summary {
    grid-template-columns: 1fr;
  }

  .voucher-order-summary div {
    min-height: 0;
  }

  .voucher-order-summary div + div {
    border-top: 1px solid rgba(155, 95, 44, 0.18);
    border-left: 0;
  }
}

@media (max-width: 560px) {
  .voucher-form-block {
    padding: 16px;
  }

  .site-form .voucher-form-block h2 {
    align-items: flex-start;
    font-size: 1.28rem;
  }

  .voucher-form-block h2 span {
    width: 30px;
    height: 30px;
  }
}

.site-form .shop-legal-consent {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(113, 63, 29, 0.18);
  border-left: 4px solid rgba(179, 126, 54, 0.72);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.84);
  box-shadow: 0 16px 36px rgba(55, 31, 18, 0.06);
}

.site-form .shop-legal-consent input {
  width: 20px;
  min-width: 20px;
  height: 20px;
  margin-top: 3px;
}

.shop-legal-consent strong {
  display: block;
  margin-bottom: 5px;
  color: #351e12;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.shop-legal-consent em {
  display: block;
  color: #5f5145;
  font-style: normal;
  line-height: 1.55;
}

.shop-legal-consent a {
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.symposium-registration-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
}

.symposium-registration-summary h2 {
  margin: 0 0 8px;
}

.symposium-registration-summary p {
  margin: 0;
}

.symposium-registration-prices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.symposium-registration-prices p,
.symposium-registration-pricebox {
  border: 1px solid rgba(166, 125, 61, 0.26);
  border-radius: 8px;
  background: rgba(247, 234, 208, 0.52);
}

.symposium-registration-prices p {
  display: grid;
  gap: 3px;
  padding: 13px 14px;
}

.symposium-registration-prices strong,
.symposium-registration-pricebox strong {
  color: var(--accent-dark);
  font-family: Georgia, "Times New Roman", serif;
}

.symposium-registration-prices span {
  color: #5f5145;
  font-weight: 700;
}

.symposium-registration-form h2 {
  margin: 6px 0 -4px;
  color: #5a3f22;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

.site-form .symposium-companion-check {
  align-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 49px;
  padding: 12px 14px;
  border: 1px solid rgba(166, 125, 61, 0.24);
  border-radius: 8px;
  background: rgba(247, 234, 208, 0.34);
  color: #5f5145;
  font-weight: 750;
  line-height: 1.35;
}

.site-form .symposium-companion-check input {
  width: 19px;
  min-width: 19px;
  height: 19px;
  accent-color: var(--accent);
}

.symposium-companion-check span {
  display: grid;
  gap: 3px;
}

.symposium-companion-check em {
  color: #75614e;
  font-size: 0.88rem;
  font-style: normal;
  font-weight: 650;
}

.symposium-companion-name.is-inactive {
  opacity: 0.72;
}

.symposium-registration-pricebox {
  display: grid;
  gap: 8px;
  padding: 20px;
  box-shadow: none;
}

.symposium-registration-pricebox span {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: #5f5145;
  font-weight: 650;
}

.symposium-registration-pricebox em,
.symposium-registration-pricebox b {
  font-style: normal;
}

.symposium-registration-pricebox em {
  min-width: 0;
}

.symposium-registration-pricebox b {
  flex: 0 0 auto;
  color: #4b3522;
  font-weight: 800;
}

.symposium-registration-pricebox .is-total {
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px solid rgba(166, 125, 61, 0.28);
  color: #4b3522;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 800;
}

.symposium-registration-pricebox .is-total b {
  color: #4b3522;
}

.form-message {
  color: #5f5145;
}

.form-message.is-error {
  border-color: rgba(159, 42, 32, 0.28);
  background: rgba(159, 42, 32, 0.08);
  color: #6c1f18;
}

.form-message.is-success {
  border-color: rgba(76, 116, 65, 0.28);
  background: rgba(76, 116, 65, 0.1);
}

.form-message ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.muted {
  background: rgba(155, 95, 44, 0.08);
}

.legal a {
  color: var(--accent-dark);
  font-weight: 800;
}

.shop-hero {
  padding-top: clamp(82px, 8vw, 118px);
  padding-bottom: clamp(18px, 3vw, 34px);
}

.shop-section {
  display: grid;
  gap: clamp(20px, 3vw, 34px);
  width: min(1180px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 0 0 clamp(72px, 8vw, 110px);
}

.shop-product-card,
.shop-cart-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  border: 1px solid rgba(155, 95, 44, 0.18);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 46px);
  background: rgba(255, 250, 240, 0.82);
  box-shadow: 0 18px 54px rgba(68, 49, 26, 0.08);
}

.shop-product-card {
  align-items: start;
}

.shop-product-image {
  display: grid;
  gap: 14px;
}

.shop-image-trigger {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
}

.shop-image-trigger img {
  transition: transform 180ms ease, filter 180ms ease;
}

.shop-image-trigger:hover img,
.shop-image-trigger:focus-visible img {
  filter: brightness(1.03);
  transform: translateY(-1px);
}

.shop-product-image img,
.shop-cart-card img {
  width: 100%;
  border: 1px solid rgba(113, 63, 29, 0.2);
  border-radius: 5px;
  box-shadow: 0 20px 48px rgba(68, 49, 26, 0.18);
}

.shop-product-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.shop-product-gallery img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  box-shadow: none;
  opacity: 0.92;
}

.shop-product-copy {
  display: grid;
  gap: 18px;
}

.shop-product-copy h2,
.shop-cart-card h2,
.shop-order-summary h2 {
  color: #351e12;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
}

.shop-product-copy p:not(.eyebrow),
.shop-order-summary p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.14rem);
}

.shop-product-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin: 2px 0 4px;
}

.shop-product-notes span {
  border-left: 2px solid rgba(179, 126, 54, 0.38);
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.46);
  color: #5f4636;
  font-size: 0.95rem;
  line-height: 1.35;
}

.shop-book-description {
  display: grid;
  grid-template-columns: minmax(220px, 0.33fr) minmax(0, 0.67fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  border-top: 1px solid rgba(155, 95, 44, 0.18);
  padding-top: clamp(30px, 4vw, 52px);
}

.shop-book-description h2 {
  margin: 0;
  color: #351e12;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3.45rem);
  line-height: 1.02;
  text-wrap: balance;
}

.shop-book-intro {
  display: grid;
  gap: 20px;
}

.shop-author-figure {
  display: grid;
  gap: 12px;
  margin: 8px 0 0;
}

.shop-author-figure .shop-image-trigger {
  width: min(100%, 310px);
}

.shop-author-figure .shop-image-trigger > img {
  width: min(100%, 310px);
  border: 1px solid rgba(113, 63, 29, 0.16);
  border-radius: 6px;
  filter: saturate(0.9);
  box-shadow: 0 18px 46px rgba(68, 49, 26, 0.13);
}

.shop-author-figure figcaption {
  margin: 0;
}

.shop-author-figure figcaption img {
  width: min(190px, 70%);
  mix-blend-mode: multiply;
  opacity: 0.82;
}

.shop-book-text {
  display: grid;
  gap: 14px;
  max-width: 820px;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.04vw, 1.08rem);
  line-height: 1.72;
}

.shop-book-text p {
  margin: 0;
}

.shop-book-signature {
  color: var(--accent-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 700;
}

.shop-price {
  margin: 0;
  color: var(--accent-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 2.3vw, 2.4rem);
  font-weight: 800;
}

.shop-cart-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: end;
}

.shop-cart-form label {
  display: grid;
  gap: 6px;
  color: var(--accent-dark);
  font-weight: 800;
}

.shop-cart-form input {
  width: 110px;
  border: 1px solid rgba(113, 63, 29, 0.2);
  border-radius: 8px;
  padding: 11px 12px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font: 700 1rem/1.3 "Outfit", "Segoe UI", Arial, sans-serif;
}

.shop-cart-card {
  grid-template-columns: 150px minmax(0, 1fr) auto;
}

.shop-cart-card img {
  max-height: 130px;
  object-fit: cover;
}

.shop-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.shop-checkout-form {
  max-width: none;
}

.shop-order-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid rgba(113, 63, 29, 0.16);
  padding-bottom: 18px;
}

.shop-order-review {
  display: block;
  padding: 18px 20px;
  border: 1px solid rgba(113, 63, 29, 0.18);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 250, 240, 0.94), rgba(246, 237, 219, 0.72));
}

.shop-order-summary strong {
  color: var(--accent-dark);
  font-size: 1.35rem;
}

.shop-order-review h2 {
  margin: 0 0 14px;
  color: #351e12;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-review-lines {
  display: grid;
  gap: 0;
}

.shop-review-lines > div {
  display: grid;
  grid-template-columns: minmax(120px, 0.34fr) minmax(0, 0.66fr);
  gap: 18px;
  padding: 10px 0;
  border-top: 1px solid rgba(113, 63, 29, 0.12);
}

.shop-review-lines > div:first-child {
  border-top: 0;
}

.shop-review-lines span {
  color: var(--muted);
  font-size: 0.94rem;
}

.shop-review-lines strong {
  color: #351e12;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 800;
  text-align: right;
}

.shop-review-quantity {
  align-items: center;
}

.shop-review-quantity-control {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.shop-review-quantity-control input {
  width: 92px;
  border: 1px solid rgba(113, 63, 29, 0.2);
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.78);
  color: #351e12;
  font-weight: 800;
}

.shop-review-quantity-control .button {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.82rem;
}
.shop-review-total {
  align-items: center;
}

.shop-review-total span,
.shop-review-total strong {
  color: var(--accent-dark);
}

.shop-review-total strong {
  font-size: 1.35rem;
}

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

.shop-payment-card {
  position: relative;
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px !important;
  align-items: flex-start;
  min-height: 112px;
  border: 1px solid rgba(113, 63, 29, 0.18);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 250, 240, 0.72);
  color: var(--ink) !important;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.shop-payment-card:hover,
.shop-payment-card:has(input:checked) {
  border-color: rgba(155, 95, 44, 0.64);
  background: rgba(255, 250, 240, 0.96);
  transform: translateY(-1px);
}

.shop-payment-card.is-disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.shop-payment-card.is-disabled:hover {
  border-color: rgba(113, 63, 29, 0.18);
  background: rgba(255, 250, 240, 0.72);
  transform: none;
}

.shop-payment-card input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
}

.shop-payment-card em {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.88rem;
  font-style: normal;
  line-height: 1.35;
}

.shop-payment-card strong {
  display: block;
  color: #351e12;
  font-size: 1rem;
  line-height: 1.25;
}

.shop-payment-card.is-stripe {
  grid-column: span 1;
}

.shop-payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
  font-style: normal;
}

.shop-payment-logos b {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  border: 1px solid rgba(113, 63, 29, 0.16);
  border-radius: 5px;
  padding: 3px 8px;
  background: #fff;
  color: #3b2a20;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  box-shadow: 0 5px 14px rgba(68, 49, 26, 0.08);
}

.site-footer {
  padding: clamp(46px, 6vw, 76px) clamp(18px, 4vw, 54px) 26px;
  border-top: 1px solid rgba(219, 185, 132, 0.28);
  background:
    radial-gradient(circle at 18% 0, rgba(155, 95, 44, 0.2), transparent 34%),
    linear-gradient(135deg, #20120b 0%, #352013 48%, #1b100a 100%);
  color: rgba(255, 250, 240, 0.72);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(240px, 1.15fr) minmax(220px, 0.9fr) minmax(320px, 1.2fr);
  gap: clamp(30px, 5vw, 72px);
  width: min(1320px, 100%);
  margin: 0 auto;
}

.site-footer img {
  width: 146px;
  margin-bottom: 18px;
}

.footer-title {
  margin: 0 0 2px;
  color: #fffaf0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.1;
}

.footer-brand p,
.footer-bottom span {
  margin: 0;
}

.footer-copy {
  max-width: 330px;
  margin-top: 18px !important;
  color: rgba(255, 250, 240, 0.64);
}

.site-footer address {
  font-style: normal;
}

.footer-heading {
  margin: 0 0 14px;
  color: #d8b982;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-contact,
.footer-nav,
.footer-nav > div {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-nav {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 42px);
}

.site-footer a {
  color: rgba(255, 250, 240, 0.82);
  font-weight: 750;
  transition: color 180ms ease, transform 180ms ease;
}

.site-footer a:hover {
  color: #fffaf0;
  transform: translateX(2px);
}

.footer-icon-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.footer-icon-link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: currentColor;
}

.footer-social {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(219, 185, 132, 0.28);
  border-radius: 999px;
  padding: 9px 16px;
  color: #fffaf0 !important;
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-bottom {
  display: flex;
  width: min(1320px, 100%);
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: clamp(34px, 5vw, 58px) auto 0;
  border-top: 1px solid rgba(219, 185, 132, 0.22);
  padding-top: 20px;
  color: rgba(255, 250, 240, 0.52);
  font-size: 0.88rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--delay, 0) * 80ms);
}

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

@media (min-aspect-ratio: 16 / 10) {
  .fire-glow {
    left: 84.6%;
    bottom: 4.8%;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: minmax(104px, 1fr) auto auto;
    gap: 8px;
    padding: 10px 12px;
  }

  .page-hero {
    padding-top: clamp(94px, 18vw, 124px);
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 126px;
  }

  .nav-toggle {
    display: block;
    order: 3;
    width: 38px;
    height: 38px;
  }

  .site-nav {
    display: none;
  }

  .header-actions {
    display: flex;
    order: 2;
    justify-self: end;
    gap: 4px;
  }

  .language-switch {
    padding: 2px;
  }

  .language-switch a {
    min-width: 28px;
    min-height: 28px;
    font-size: 0.68rem;
  }

  .header-actions .icon-link {
    width: 32px;
    height: 32px;
    border-color: rgba(255, 250, 240, 0.22);
    background: rgba(255, 250, 240, 0.1);
  }

  .header-actions .icon-link svg {
    width: 16px;
    height: 16px;
  }

  .site-nav.is-open {
    display: grid;
    grid-column: 1 / -1;
    order: 4;
    justify-content: stretch;
    padding-top: 12px;
  }

  .site-nav.is-open a,
  .site-nav.is-open .nav-link {
    border-bottom: 1px solid rgba(255, 250, 240, 0.18);
    border-radius: 0;
    padding: 12px 0;
  }

  .site-nav.is-open .nav-item {
    display: grid;
  }

  .site-nav.is-open .nav-dropdown {
    position: static;
    min-width: 0;
    border: 0;
    border-radius: 0;
    padding: 0 0 0 18px;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    transform: none;
    visibility: visible;
  }

  .site-nav.is-open .nav-dropdown a {
    color: rgba(255, 250, 240, 0.74);
    font-size: 0.9rem;
  }

  .site-nav.is-open a.nav-highlight {
    display: inline-flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(236, 202, 133, 0.58);
    border-radius: 8px;
    margin: 8px 0 4px;
    padding: 12px 14px;
    background: rgba(178, 126, 42, 0.24);
    color: #fff4d6;
    box-shadow: inset 0 1px 0 rgba(255, 250, 240, 0.12);
  }

  .site-nav.is-open a.nav-highlight:hover,
  .site-nav.is-open a.nav-highlight.active {
    background: rgba(178, 126, 42, 0.34);
    color: #fff8e8;
  }

  .intro-band,
  .split,
  .book-feature,
  .proof,
  .courses-page-hero,
  .page-hero.about,
  .about-tradition,
  .editorial,
  .contact-layout,
  .text-columns,
  .footer-main,
  .footer-nav {
    grid-template-columns: 1fr;
  }

  .courses-page-hero {
    gap: 18px;
  }

  .courses-page-hero .page-ornament {
    width: min(150px, 42vw);
    margin-bottom: 18px;
  }

  .courses-page-graphic {
    width: min(260px, 72vw);
    aspect-ratio: 16 / 9;
    margin-top: 22px;
  }

  .courses-page-hero.compact h1,
  .courses-page-hero h1 {
    max-width: 11ch;
    font-size: clamp(2.25rem, 10vw, 3.35rem);
  }

  .courses-page-hero.compact p:not(.eyebrow),
  .courses-page-intro p {
    max-width: none;
    font-size: 1rem;
    line-height: 1.68;
  }

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

  .hero {
    height: 100svh;
    min-height: min(600px, 100svh);
    max-height: 100svh;
    padding-top: 96px;
    padding-bottom: 32px;
  }

  .next-courses-strip {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .home-feature-panel {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home-feature-block {
    min-height: 0;
  }

  .home-feature-block + .home-feature-block {
    border-left: 1px solid rgba(155, 95, 44, 0.28);
  }

  .home-feature-news {
    grid-row: auto;
    min-height: 0;
  }

  .news-body {
    grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  }

  .symposium-feature-art {
    width: min(96%, 320px);
    margin-left: 0;
  }

  .heritage-tiles,
  .heritage-text-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .heritage-paths {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .home-gallery-card {
    flex-basis: calc((100% - clamp(22px, 3vw, 34px)) / 2);
  }

  .home-gallery-head h2 {
    max-width: none;
  }

  .google-trust-card {
    grid-template-columns: 1fr;
  }

  .voucher-panel {
    grid-template-columns: minmax(0, 1fr) minmax(180px, 0.42fr);
    border-top: 1px solid rgba(155, 95, 44, 0.2);
    border-left: 0;
  }

  .google-trust-points {
    grid-template-columns: 1fr;
  }

  .google-trust-link {
    justify-self: start;
  }

  .gallery-modal {
    padding: 10px;
  }

  .gallery-modal-dialog {
    max-height: calc(100svh - 20px);
    padding: 16px;
  }

  .gallery-stage img {
    height: min(66svh, 640px);
  }

  .gallery-thumbs {
    display: none;
  }

  .heritage-path {
    padding: clamp(16px, 2.2vw, 22px);
  }

  .heritage-path + .heritage-path {
    border-top: 0;
    border-left: 1px solid rgba(113, 63, 29, 0.2);
    padding-top: 0;
  }

  .heritage-quote {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: center;
  }

  .heritage-quote blockquote {
    padding: 42px 26px 0;
    white-space: normal;
  }

  .heritage-quote blockquote::before {
    left: 50%;
    top: -6px;
    display: block;
    height: auto;
    transform: translateX(-50%);
  }

  .heritage-quote blockquote::after {
    display: none;
  }

  .heritage-text-grid article:nth-child(odd) {
    border-left: 0;
  }

  .heritage-text-grid article:nth-child(n + 3) {
    border-top: 1px solid rgba(113, 63, 29, 0.2);
  }

  .hero-image img {
    object-position: 82% 84%;
  }

  .fire-glow {
    left: 81.2%;
    bottom: 8%;
  }

  h1 {
    max-width: 12ch;
  }

  .categories,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .category-tile:first-child {
    grid-row: auto;
  }

  .gallery-grid figure:nth-child(2n) {
    transform: none;
  }
}

@media (max-width: 1180px) {
  .symposium-feature-copy {
    padding-top: clamp(34px, 4vw, 56px);
  }

  .symposium-feature-art {
    margin-top: clamp(34px, 4vw, 58px);
  }
}

@media (max-width: 900px) and (min-width: 681px) {
  .news-body {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .symposium-art-wrap {
    min-height: 0;
    overflow: hidden;
    padding: 12px;
    border-radius: 8px;
    background: rgba(255, 250, 240, 0.42);
  }

  .symposium-feature-art {
    width: min(100%, 340px);
    height: clamp(230px, 34vw, 300px);
    margin: 0 auto;
    object-fit: contain;
    object-position: center center;
  }

  .symposium-feature-copy {
    padding-top: 0;
  }

  .symposium-feature-facts {
    width: 100%;
  }

  .symposium-feature-copy .feature-ornament {
    width: 78px;
    margin: 0;
  }

  .home-feature-news h2 {
    font-size: clamp(2rem, 4.2vw, 2.4rem);
    line-height: 1.07;
  }
}

@media (max-width: 680px) {
  .symposium-feature-facts {
    display: none;
  }

  .symposium-feature-copy {
    padding-top: 0;
  }

  .symposium-feature-art {
    margin-top: 0;
  }

  .symposium-feature-facts {
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 20px;
  }

  .symposium-feature-fact {
    min-height: 62px;
    padding: 10px 11px;
  }

  .symposium-feature-actions {
    width: 100%;
  }

  .symposium-program-button {
    width: 100%;
  }
}

@media (max-width: 680px) {
  .brand {
    min-width: 0;
  }

  .brand img {
    width: 118px;
  }

  .hero {
    min-height: min(560px, 100svh);
    padding-top: 88px;
    padding-bottom: 22px;
  }

  .next-courses-strip {
    padding-block: 14px;
  }

  .next-course-item {
    grid-template-columns: auto minmax(150px, 1fr);
  }

  .next-course-item em {
    grid-column: 2;
  }

  .home-feature-block {
    padding: 26px 20px;
  }

  .news-body {
    grid-template-columns: minmax(86px, 0.34fr) minmax(0, 1fr);
    column-gap: 16px;
    row-gap: 14px;
    align-items: start;
  }

  .symposium-art-wrap {
    grid-column: 1;
    grid-row: 4 / span 2;
    min-height: 0;
    max-height: none;
    overflow: visible;
    padding: 0;
    border-radius: 0;
    background: transparent;
    justify-content: flex-start;
    align-items: center;
  }

  .symposium-feature-art {
    width: 100%;
    height: auto;
    max-height: 245px;
    margin: 0;
    object-fit: contain;
    object-position: center top;
  }

  .symposium-feature-copy .feature-ornament {
    width: 70px;
    margin: 0;
  }

  .symposium-date {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0 0.28em;
    width: 100%;
    margin-bottom: 22px !important;
    text-align: center;
  }

  .symposium-date-main,
  .symposium-date-place {
    display: inline-block;
  }

   (max-width: 480px) {
    .symposium-date-separator {
      display: none;
    }

    .symposium-date-place {
      flex-basis: 100%;
    }
  }

  .home-feature-news h2 {
    font-size: clamp(1.08rem, 4.6vw, 1.6rem);
    line-height: 1.12;
  }

  .symposium-title-line {
    white-space: nowrap;
  }

  .news-body > .symposium-feature-copy {
    display: contents;
  }

  .symposium-feature-copy .feature-label,
  .home-feature-news h2,
  .symposium-date {
    grid-column: 1 / -1;
  }

  .symposium-feature-copy > p:not(.symposium-date) {
    grid-column: 2;
  }

  .home-feature-news .button-row {
    grid-column: 1 / -1;
  }

  .button.symposium-feature-button {
    width: 100%;
    min-height: 48px;
    justify-content: center;
  }

  .home-feature-book {
    grid-template-columns: 1fr;
  }

  .home-feature-book h2 {
    max-width: none;
  }

  .feature-book-cover {
    max-width: 260px;
    margin: 0 auto;
  }

  .home-gallery-section {
    padding-block: 56px;
  }

  .home-gallery-head {
    margin-bottom: 30px;
  }

  .home-gallery-head h2 {
    max-width: none;
    font-size: clamp(2.2rem, 11vw, 3.4rem);
    white-space: normal;
  }

  .home-gallery-head p {
    font-size: 0.98rem;
  }

  .heritage-paths {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .heritage-path + .heritage-path {
    border-left: 1px solid rgba(155, 95, 44, 0.18);
  }

  .gallery-open {
    min-height: 0;
  }

  .home-gallery-card {
    flex-basis: 100%;
    max-width: none;
  }

  .home-gallery-wall {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .home-gallery-wall-item {
    grid-column: auto !important;
    grid-row: auto !important;
    height: 220px;
  }

  .google-trust-card {
    grid-template-columns: 1fr;
  }

  .google-trust-panel,
  .google-trust-panel:first-child {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 20px;
  }

  .voucher-panel .eyebrow,
  .voucher-panel h2,
  .voucher-panel p:not(.eyebrow),
  .voucher-panel .voucher-link,
  .voucher-image {
    grid-column: 1;
  }

  .voucher-image {
    grid-row: auto;
    aspect-ratio: 16 / 9;
  }

  .voucher-link {
    grid-row: auto;
    justify-self: stretch;
  }

  .google-trust-points {
    grid-template-columns: 1fr;
  }

  .google-trust-link {
    width: 100%;
  }

  .gallery-card-image,
  .gallery-card-image img {
    height: 220px;
    min-height: 0;
  }

  .gallery-card-image strong {
    right: 22px;
    bottom: 20px;
    left: 22px;
    font-size: clamp(1.8rem, 9vw, 2.5rem);
  }

  .gallery-card-copy {
    padding: 22px;
  }

  .gallery-modal-dialog {
    grid-template-rows: auto minmax(0, 1fr);
    border-radius: 8px;
  }

  .gallery-modal-top h2 {
    font-size: 2rem;
  }

  .gallery-modal-actions {
    gap: 10px;
  }

  .gallery-close {
    width: 40px;
    height: 40px;
  }

  .gallery-stage img {
    height: calc(100svh - 128px);
  }

  .gallery-arrow {
    width: 46px;
    height: 46px;
  }

  .gallery-arrow.previous {
    left: 10px;
  }

  .gallery-arrow.next {
    right: 10px;
  }

  .home-feature-news h2 {
    white-space: normal;
  }

  .heritage-section {
    padding-inline: 18px;
  }

  .heritage-head h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .heritage-intro-copy {
    width: 100%;
  }

  .heritage-tiles,
  .heritage-text-grid {
    grid-template-columns: 1fr;
  }

  .heritage-paths {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .heritage-path {
    padding: 18px;
  }

  .heritage-path + .heritage-path {
    border-top: 1px solid rgba(155, 95, 44, 0.18);
    border-left: 1px solid rgba(155, 95, 44, 0.18);
    padding-top: 18px;
    margin-top: 0;
  }

  .heritage-tile {
    min-height: 250px;
  }

  .path-head {
    grid-template-columns: 60px minmax(0, 1fr);
  }

  .path-head svg {
    width: 60px;
    height: 60px;
  }

  .path-head h3 {
    white-space: normal;
  }

  .heritage-path:last-child .path-head h3 {
    white-space: nowrap;
  }

  .heritage-path:last-child .path-head {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .heritage-path:last-child .path-head svg {
    width: 54px;
    height: 54px;
  }

  .path-button {
    width: 100%;
  }

  .heritage-text-grid article,
  .heritage-text-grid article + article,
  .heritage-text-grid article:nth-child(n + 3) {
    border-left: 0;
    border-top: 1px solid rgba(113, 63, 29, 0.2);
  }

  .heritage-text-grid article:first-child {
    border-top: 0;
  }

  .heritage-topic-head {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .heritage-topic-head svg {
    width: 44px;
    height: 44px;
  }

  .feature-course-item {
    grid-template-columns: 82px minmax(0, 1fr);
    column-gap: 10px;
    row-gap: 2px;
    align-items: start;
    min-height: 0;
    padding-block: 8px;
  }

  .feature-course-item time {
    grid-row: 1 / span 2;
  }

  .feature-course-item em {
    grid-column: 2;
  }

  .book-feature {
    padding-top: 42px;
  }

  .book-cover {
    order: -1;
  }

  .hero-image img {
    object-position: 94% 80%;
  }

  .fire-glow {
    left: 76.5%;
    bottom: 18%;
    width: 46px;
  }

  h1 {
    font-size: clamp(1.9rem, 10vw, 3rem);
  }

  .course-card {
    grid-template-columns: 1fr;
  }

  .course-media {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

  .course-media img {
    position: static;
    inset: auto;
  }

  .course-image-modal-dialog {
    padding: 16px;
  }

  .course-image-modal-top {
    align-items: flex-start;
  }

  .course-image-stage img {
    height: min(70svh, 620px);
  }

  .course-description-modal {
    padding: 10px;
  }

  .course-description-modal-dialog {
    width: calc(100vw - 20px);
    height: calc(100svh - 20px);
  }

  .course-description-modal-top {
    align-items: center;
    padding: 10px;
  }

  .course-description-modal-top h2 {
    font-size: 1.25rem;
  }

  .course-description-modal-actions {
    gap: 8px;
  }

  .course-description-print,
  .course-description-modal .gallery-close {
    width: 40px;
    height: 40px;
  }

  .course-description-modal-content {
    padding: 12px;
  }

  .course-description-document {
    min-height: 0;
    padding: 22px;
    background: #fffaf1;
    overflow: visible;
  }

  .course-description-document::before {
    display: none;
  }

  .course-description-header {
    grid-template-columns: 1fr;
  }

  .course-description-header h1 {
    max-width: none;
    font-size: clamp(1.7rem, 8vw, 2.55rem);
  }

  .course-description-header img {
    max-height: 260px;
  }

  .course-description-data div {
    grid-template-columns: 1fr;
    gap: 2px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(113, 63, 29, 0.12);
  }

  .course-description-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .course-filter {
    align-items: stretch;
    flex-direction: column;
    top: 86px;
    border-radius: 18px;
  }

  .course-filter-buttons {
    display: grid;
    grid-template-columns: 1fr;
  }

  .course-filter-toggle {
    justify-content: center;
    white-space: normal;
  }

  .course-meta-line,
  .course-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .course-details ul {
    grid-template-columns: 1fr;
  }

  .course-actions .button-row {
    justify-content: stretch;
  }

  .course-actions .button {
    width: 100%;
  }

  .form-section {
    max-width: calc(100vw - 24px);
    padding-inline: 0;
  }

  .form-course-summary,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .shop-section {
    width: calc(100vw - 24px);
  }

  .shop-product-card,
  .shop-cart-card,
  .shop-book-description,
  .shop-payment-grid {
    grid-template-columns: 1fr;
  }

  .shop-product-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-product-notes {
    grid-template-columns: 1fr;
  }

  .shop-review-lines > div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .shop-review-lines strong {
    text-align: left;
  }

  .shop-review-quantity-control {
    justify-content: flex-start;
  }

  .shop-cart-card {
    align-items: start;
  }

  .shop-cart-card img {
    max-height: none;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }

  .shop-actions {
    justify-content: stretch;
  }

  .form-course-summary > img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }

  .button-row,
  .button {
    width: 100%;
  }
}

@media (max-width: 680px) and (max-aspect-ratio: 9 / 16) {
  .fire-glow {
    left: 77%;
    bottom: 18.5%;
  }
}

/* Symposium 2026 */
.symposium-intro {
  min-height: calc(100svh - 82px);
  display: grid;
  grid-template-rows: minmax(440px, 1fr) auto;
  overflow: hidden;
  background: #211d18;
}

.symposium-hero {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 0;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #211d18;
  color: #fffaf0;
}

.symposium-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.8) sepia(0.18) contrast(1.05);
}

.symposium-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(28, 24, 19, 0.92) 0%, rgba(28, 24, 19, 0.74) 30%, rgba(28, 24, 19, 0.22) 68%, rgba(28, 24, 19, 0.08) 100%),
    linear-gradient(0deg, rgba(28, 24, 19, 0.32), rgba(28, 24, 19, 0.08));
}

.symposium-hero-content {
  position: relative;
  width: min(760px, calc(100% - 40px));
  min-width: 0;
  margin-left: clamp(22px, 6vw, 86px);
  padding-top: clamp(46px, 8vh, 86px);
  padding-bottom: clamp(38px, 7vh, 72px);
}

.symposium-kicker {
  margin: 0 0 12px;
  color: #d7b26c;
  font-size: clamp(1.15rem, 2.3vw, 1.75rem);
  font-weight: 800;
}

.symposium-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #fffaf0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.96;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.45);
}

.symposium-date {
  margin: 24px 0 16px;
  color: #d9b66f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.38);
}

.symposium-hero-copy {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 250, 240, 0.9);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  font-weight: 650;
}

.symposium-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 250, 240, 0.18);
  border-bottom: 1px solid rgba(113, 63, 29, 0.18);
  background: linear-gradient(135deg, #a87a2d 0%, #7a541c 100%);
  color: #fff7df;
}

.symposium-facts div {
  min-width: 0;
  min-height: 126px;
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  column-gap: 16px;
  align-content: center;
  justify-content: center;
  align-items: center;
  padding: 22px 24px;
  border-right: 1px solid rgba(255, 250, 240, 0.34);
  text-align: left;
}

.symposium-facts div:last-child {
  border-right: 0;
}

.symposium-facts img {
  grid-row: 1 / span 2;
  width: clamp(42px, 4.4vw, 58px);
  height: clamp(42px, 4.4vw, 58px);
  opacity: 0.92;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.18));
}

.symposium-facts span {
  display: block;
  max-width: 100%;
  color: rgba(255, 247, 223, 0.94);
  font-family: "Outfit", "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-weight: 750;
  letter-spacing: 0.01em;
  line-height: 1.1;
  overflow-wrap: break-word;
}

.symposium-facts strong {
  display: block;
  max-width: 100%;
  margin-top: 2px;
  color: rgba(255, 247, 223, 0.88);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  overflow-wrap: break-word;
}

.symposium-section {
  width: min(1450px, calc(100% - 38px));
  margin: 0 auto;
  padding: clamp(44px, 6vw, 76px) 0;
}

.symposium-heading {
  display: grid;
  grid-template-columns: minmax(60px, 1fr) auto minmax(60px, 1fr);
  align-items: center;
  gap: clamp(16px, 3vw, 52px);
  margin-bottom: clamp(28px, 4vw, 46px);
  color: #5d4931;
  text-align: center;
}

.symposium-heading span {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(156, 117, 57, 0.55), transparent);
}

.symposium-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.symposium-heading.small {
  grid-template-columns: minmax(24px, 1fr) auto minmax(24px, 1fr);
  gap: 22px;
  margin-bottom: 14px;
}

.symposium-heading.small h2 {
  font-size: clamp(1.25rem, 2.2vw, 2rem);
}

.symposium-small-ornament {
  width: 96px;
  margin: -6px auto 22px;
  opacity: 0.7;
  filter: brightness(0) saturate(100%) invert(48%) sepia(29%) saturate(943%) hue-rotate(355deg) brightness(89%) contrast(86%);
}

.symposium-speakers {
  padding-bottom: 48px;
}

.symposium-speaker-grid {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 36px);
  align-items: start;
}

.symposium-speaker-card {
  grid-column: span 2;
  text-align: center;
}

.symposium-speaker-card:nth-child(6) {
  grid-column: 2 / span 2;
}

.symposium-speaker-card img {
  width: 100%;
  aspect-ratio: 1 / 1.16;
  object-fit: cover;
  border: 1px solid rgba(93, 73, 49, 0.22);
  border-radius: 8px;
  box-shadow: 0 16px 30px rgba(50, 34, 18, 0.16);
}

.symposium-speaker-card h3 {
  margin: 15px 0 5px;
  color: #4b3522;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.12rem, 1.5vw, 1.38rem);
  font-weight: 700;
  line-height: 1.14;
}

.symposium-speaker-card p {
  max-width: 190px;
  margin: 0 auto;
  color: #8a672e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.92rem, 1.05vw, 1rem);
  font-weight: 650;
  line-height: 1.24;
}

.symposium-program {
  padding-top: 12px;
}

.symposium-program-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 320px);
  gap: clamp(22px, 3vw, 38px);
  align-items: start;
  width: 100%;
}

.symposium-program-panel {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: clamp(28px, 5vw, 62px);
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(166, 125, 61, 0.48);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(247, 236, 214, 0.92), rgba(255, 251, 244, 0.82)),
    radial-gradient(circle at 12% 0%, rgba(177, 130, 54, 0.1), transparent 32%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 18px 38px rgba(83, 55, 28, 0.08);
}

.symposium-column {
  min-width: 0;
}

.symposium-column + .symposium-column {
  border-left: 2px solid rgba(166, 125, 61, 0.3);
  padding-left: clamp(28px, 4vw, 56px);
}

.symposium-timeline,
.symposium-workshop-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.symposium-timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 122px 30px 1fr;
  gap: 18px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(166, 125, 61, 0.22);
}

.symposium-timeline li::after {
  position: absolute;
  top: 0;
  bottom: -1px;
  left: calc(122px + 18px + 15px);
  width: 2px;
  background:
    linear-gradient(180deg, rgba(166, 125, 61, 0.2), rgba(166, 125, 61, 0.44)) center top / 2px 41px no-repeat,
    linear-gradient(180deg, rgba(166, 125, 61, 0.44), rgba(166, 125, 61, 0.2)) center 57px / 2px calc(100% - 57px) no-repeat;
  content: "";
  transform: translateX(-1px);
}

.symposium-timeline li:last-child {
  border-bottom: 0;
}

.symposium-day {
  display: grid;
  place-items: center;
  min-height: 70px;
  padding: 10px;
  border-radius: 6px;
  background: linear-gradient(135deg, #9e762c, #755015);
  color: #fff7df;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.symposium-day strong,
.symposium-day span {
  display: block;
  line-height: 1.15;
}

.symposium-timeline-marker {
  position: relative;
  z-index: 2;
  display: block;
  width: 16px;
  height: 16px;
  margin: 27px auto 0;
  border: 3px solid #a27727;
  border-radius: 50%;
  background: #fff8e8;
}

.symposium-schedule-details {
  padding-top: 12px;
}

.symposium-schedule-details p {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 14px;
  align-items: baseline;
  margin: 0 0 8px;
  color: #4c4339;
  font-weight: 400;
}

.symposium-schedule-details p:last-child {
  margin-bottom: 0;
}

.symposium-schedule-details time {
  color: #6f604f;
  font-family: "Outfit", "Segoe UI", Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.symposium-schedule-details span {
  line-height: 1.36;
}

.symposium-inline-link {
  color: #7a5517;
  font-weight: 800;
  text-decoration-color: rgba(122, 85, 23, 0.45);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.symposium-inline-link:hover {
  color: #52370f;
  text-decoration-color: currentColor;
}

.symposium-subline {
  margin: -6px 0 24px;
  color: #67543b;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.symposium-workshop-list {
  counter-reset: workshop;
  display: grid;
  gap: 16px;
}

.symposium-workshop-list li {
  counter-increment: workshop;
  position: relative;
  min-height: 48px;
  display: grid;
  gap: 3px;
  padding: 0 0 16px 64px;
  border-bottom: 1px solid rgba(166, 125, 61, 0.16);
  color: #443a31;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.28;
}

.symposium-workshop-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.symposium-workshop-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #ad812f, #735019);
  color: #fff7df;
  content: counter(workshop);
  font-family: "Outfit", "Segoe UI", Arial, sans-serif;
  font-weight: 900;
}

.symposium-workshop-title,
.symposium-workshop-leader,
.symposium-workshop-origin {
  display: block;
}

.symposium-workshop-title {
  color: #3f2d1f;
  font-size: clamp(1.08rem, 1.55vw, 1.34rem);
  font-weight: 800;
  line-height: 1.12;
}

.symposium-workshop-leader {
  color: #5a4633;
  font-size: clamp(0.98rem, 1.22vw, 1.08rem);
  font-weight: 500;
}

.symposium-workshop-leader::before {
  content: "Kursleitung: ";
  color: #987030;
  font-family: "Outfit", "Segoe UI", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.symposium-workshop-origin {
  color: #806331;
  font-family: "Outfit", "Segoe UI", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.symposium-action-panel {
  position: sticky;
  top: 96px;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(166, 125, 61, 0.46);
  border-radius: 8px;
  background: linear-gradient(150deg, rgba(252, 244, 228, 0.96), rgba(244, 229, 200, 0.9));
  color: #59442b;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 18px 34px rgba(83, 55, 28, 0.1);
}

.symposium-action-eyebrow {
  margin: 0;
  color: #9a6f25;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.symposium-action-panel h2 {
  margin: 0;
  color: #4d3520;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2vw, 2rem);
  line-height: 1.05;
}

.symposium-action-panel p {
  margin: 0;
  color: #63523e;
  line-height: 1.45;
}

.symposium-register-button {
  width: 100%;
  justify-content: center;
}

.symposium-pdf-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #6a4d1e;
  font-weight: 800;
  text-decoration: none;
}

.symposium-pdf-link svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.symposium-action-note {
  padding-top: 16px;
  border-top: 1px solid rgba(166, 125, 61, 0.32);
}

.symposium-price-band {
  width: min(1450px, calc(100% - 38px));
  display: grid;
  grid-template-columns: 1.76fr 0.58fr 0.66fr 0.84fr;
  gap: 0;
  align-items: center;
  margin: 0 auto clamp(42px, 5vw, 72px);
  padding: clamp(18px, 2.2vw, 28px) clamp(20px, 2.8vw, 34px);
  border: 2px solid rgba(177, 134, 70, 0.48);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.45), transparent 34%),
    linear-gradient(135deg, rgba(247, 234, 208, 0.94), rgba(255, 250, 240, 0.82));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 12px 28px rgba(93, 64, 30, 0.08);
  color: #5a4227;
}

.symposium-price-band > div {
  min-width: 0;
  min-height: 118px;
  display: grid;
  align-items: center;
  padding-left: clamp(22px, 2.4vw, 34px);
  border-left: 2px solid rgba(166, 125, 61, 0.24);
}

.symposium-price-band > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.symposium-price-main {
  grid-template-columns: clamp(58px, 5vw, 78px) minmax(0, 1fr);
  gap: clamp(18px, 2vw, 26px);
}

.symposium-price-item {
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
}

.symposium-price-note {
  grid-template-columns: 42px minmax(0, 1fr);
}

.symposium-price-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #9b752f;
}

.symposium-price-icon svg {
  width: 100%;
  height: auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.6;
}

.symposium-price-main .symposium-price-icon svg {
  stroke-width: 2.1;
}

.symposium-price-note .symposium-price-icon svg {
  stroke-width: 2.4;
}

.symposium-price-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.symposium-price-main p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.38rem, 2vw, 1.95rem);
  font-weight: 760;
  letter-spacing: 0.045em;
  line-height: 1.15;
  text-transform: uppercase;
}

.symposium-price-main p + span {
  margin-top: 8px;
}

.symposium-price-copy span,
.symposium-price-band strong,
.symposium-price-item div > span {
  color: #5b4a34;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.92rem, 1vw, 1rem);
  font-weight: 600;
  line-height: 1.34;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.symposium-price-band strong,
.symposium-price-item div > span {
  display: block;
}

.symposium-price-band strong {
  color: #5a4227;
  font-size: clamp(0.98rem, 1.05vw, 1.08rem);
  font-weight: 700;
  line-height: 1.18;
}

.symposium-price-note div > span {
  max-width: 220px;
}

.symposium-closing {
  width: min(1450px, calc(100% - 38px));
  display: grid;
  grid-template-columns: minmax(240px, 0.32fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  margin: 0 auto clamp(56px, 7vw, 90px);
  padding-top: 16px;
}

.symposium-sketch {
  min-height: 190px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 48% 52%, rgba(181, 142, 82, 0.16), transparent 62%),
    url("../img/symposium/closing-columns-tree-transparent.png") center / 88% auto no-repeat;
  overflow: hidden;
}

.symposium-notes {
  display: grid;
  gap: 18px;
}

.symposium-notes p {
  position: relative;
  margin: 0;
  padding-left: 54px;
  color: #4d4031;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.42vw, 1.22rem);
  font-weight: 650;
  line-height: 1.42;
}

.symposium-notes p::before {
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(166, 125, 61, 0.5);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 250, 0.98), rgba(248, 238, 218, 0.9) 58%, rgba(224, 199, 157, 0.66)),
    linear-gradient(145deg, rgba(255, 255, 255, 0.75), rgba(166, 125, 61, 0.18));
  box-shadow:
    inset 0 0 0 5px rgba(255, 250, 240, 0.78),
    0 8px 18px rgba(79, 57, 32, 0.08);
  content: "";
}

.symposium-notes p::after {
  position: absolute;
  left: 9px;
  top: calc(0.2em + 8px);
  width: 12px;
  height: 7px;
  border-left: 2.5px solid #9b6d28;
  border-bottom: 2.5px solid #9b6d28;
  border-radius: 1px;
  content: "";
  transform: rotate(-45deg);
}

@media (max-width: 1100px) {
  .symposium-hero-content {
    width: calc(100% - clamp(44px, 12vw, 96px));
    max-width: 760px;
  }

  .symposium-speaker-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .symposium-speaker-card,
  .symposium-speaker-card:nth-child(6) {
    grid-column: auto;
  }

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

  .symposium-program-layout,
  .symposium-program-panel,
  .symposium-price-band,
  .symposium-closing {
    grid-template-columns: 1fr;
  }

  .symposium-action-panel {
    position: static;
  }

  .symposium-column + .symposium-column,
  .symposium-price-band > div {
    padding-left: 0;
    border-left: 0;
  }

  .symposium-price-band > div {
    min-height: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(166, 125, 61, 0.26);
  }

  .symposium-price-band > div:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .symposium-column + .symposium-column {
    padding-top: 28px;
    border-top: 2px solid rgba(166, 125, 61, 0.3);
  }
}

@media (max-width: 760px) {
  .symposium-intro {
    min-height: auto;
    grid-template-rows: auto auto;
  }

  .symposium-hero {
    min-height: 520px;
  }

  .symposium-hero-shade {
    background: linear-gradient(90deg, rgba(28, 24, 19, 0.92), rgba(28, 24, 19, 0.64));
  }

  .symposium-hero-content {
    width: calc(100% - 32px);
    max-width: calc(100% - 32px);
    margin-inline: 16px;
    padding-top: 96px;
    padding-bottom: 42px;
  }

  .symposium-registration-summary,
  .symposium-registration-prices {
    grid-template-columns: 1fr;
  }

  .symposium-hero h1 {
    font-size: clamp(2.35rem, 11vw, 3rem);
    max-width: 100%;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

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

  .symposium-facts div {
    min-height: 104px;
    column-gap: 12px;
    padding: 18px 12px;
  }

  .symposium-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .symposium-heading span {
    width: 100%;
  }

  .symposium-heading.small span {
    display: none;
  }

  .symposium-speaker-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 16px;
  }

  .symposium-program-panel {
    padding: 18px;
    overflow: hidden;
  }

  .symposium-action-panel {
    padding: 20px;
  }

  .symposium-timeline li {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .symposium-timeline li::after,
  .symposium-timeline-marker {
    display: none;
  }

  .symposium-day {
    min-height: auto;
    justify-items: start;
    padding: 10px 12px;
  }

  .symposium-schedule-details {
    padding-top: 0;
  }

  .symposium-schedule-details p {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 10px;
  }

  .symposium-schedule-details time {
    font-size: 0.72rem;
  }

  .symposium-schedule-details span {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .symposium-workshop-list li {
    padding-left: 50px;
  }

  .symposium-workshop-leader::before {
    display: block;
    margin-bottom: 1px;
  }
}

@media (max-width: 480px) {
  .symposium-hero h1 {
    font-size: clamp(2rem, 10vw, 2.35rem);
  }

  .symposium-kicker {
    font-size: 1rem;
  }

  .symposium-facts span {
    font-size: 1.18rem;
  }

  .symposium-facts strong {
    font-size: 0.84rem;
  }

  .symposium-facts img {
    width: 38px;
    height: 38px;
  }

  .symposium-price-band {
    width: calc(100% - 24px);
    padding: 18px 14px;
  }

  .symposium-price-main {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
  }

  .symposium-price-item {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 12px;
  }

  .symposium-price-note {
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .symposium-price-main p {
    font-size: 1.35rem;
    letter-spacing: 0.035em;
  }

  .symposium-price-copy span,
  .symposium-price-band strong,
  .symposium-price-item div > span {
    font-size: 0.91rem;
    overflow-wrap: anywhere;
  }

  .symposium-speaker-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 380px) {
  .symposium-facts span {
    font-size: 1rem;
  }

  .symposium-facts div {
    column-gap: 8px;
    padding-inline: 10px;
  }

  .symposium-facts img {
    width: 32px;
    height: 32px;
  }
}


@media (max-width: 480px) {
  .symposium-date-separator {
    display: none;
  }

  .symposium-date-place {
    flex-basis: 100%;
  }
}

@media (max-width: 680px) {
  .home-gallery-wall {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    margin-inline: -2px;
    padding: 0 2px 8px;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 2px;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x pan-y;
  }

  .home-gallery-wall::-webkit-scrollbar {
    display: none;
  }

  .home-gallery-wall {
    scrollbar-width: none;
  }

  .home-gallery-wall-item {
    flex: 0 0 100%;
    grid-column: auto !important;
    grid-row: auto !important;
    height: clamp(230px, 64vw, 290px);
    border-radius: 8px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    touch-action: manipulation;
  }

  .home-gallery-actions {
    margin-top: 22px;
  }
}

.gallery-modal {
  z-index: 220;
  overscroll-behavior: contain;
}

.gallery-modal,
.gallery-modal * {
  -webkit-tap-highlight-color: transparent;
}

.gallery-modal-dialog {
  touch-action: none;
  overscroll-behavior: contain;
}

.gallery-stage {
  touch-action: pan-x;
  overscroll-behavior: contain;
}

.gallery-arrow,
.gallery-close,
.gallery-thumb {
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
}

body.gallery-modal-open {
  width: 100%;
  overscroll-behavior: none;
}

@media (max-width: 680px) {
  .gallery-modal {
    align-items: center;
    padding: 10px;
  }

  .gallery-modal-dialog {
    width: min(100%, 430px);
    max-height: calc(100svh - 20px);
    padding: 10px;
    grid-template-rows: auto minmax(0, 1fr);
  }

  .gallery-modal-top {
    min-height: 44px;
    padding-bottom: 8px;
  }

  .gallery-modal-top h2 {
    font-size: clamp(1.35rem, 6vw, 1.75rem);
    line-height: 1.05;
  }

  .gallery-counter {
    font-size: 0.84rem;
  }

  .gallery-close {
    width: 42px;
    height: 42px;
    font-size: 1.35rem;
  }

  .gallery-stage img {
    height: min(68svh, calc(100svh - 118px));
    max-height: calc(100svh - 118px);
  }

  .gallery-arrow {
    width: 44px;
    height: 44px;
    font-size: 1.45rem;
  }

  .gallery-arrow.previous {
    left: 10px;
  }

  .gallery-arrow.next {
    right: 10px;
  }
}

/* Symposium page mobile quality pass */
.symposium-hero h1 span {
  display: block;
}

@media (max-width: 680px) {
  .symposium-intro {
    min-height: auto;
    grid-template-rows: minmax(470px, auto) auto;
  }

  .symposium-hero {
    min-height: 470px;
  }

  .symposium-hero-content {
    padding-top: 104px;
    padding-bottom: 34px;
  }

  .symposium-hero h1 {
    font-size: clamp(2.05rem, 9.2vw, 2.85rem);
    line-height: 1.02;
    overflow-wrap: normal;
    word-break: normal;
  }

  .symposium-date {
    margin: 18px 0 12px;
    font-size: clamp(1.45rem, 7vw, 2.1rem);
  }

  .symposium-hero-copy {
    max-width: 34rem;
    font-size: clamp(0.98rem, 4.3vw, 1.08rem);
    line-height: 1.48;
  }

  .symposium-section {
    width: min(100% - 24px, 760px);
    padding-block: 38px;
  }

  .symposium-heading {
    margin-bottom: 24px;
  }

  .symposium-heading h2 {
    font-size: clamp(1.35rem, 6.2vw, 2rem);
    letter-spacing: 0.055em;
  }

  .symposium-speakers {
    padding-bottom: 26px;
  }

  .symposium-speaker-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 12px;
  }

  .symposium-speaker-card,
  .symposium-speaker-card:nth-child(6) {
    grid-column: auto;
  }

  .symposium-speaker-card img {
    aspect-ratio: 1 / 1.08;
    border-radius: 6px;
    box-shadow: 0 10px 20px rgba(50, 34, 18, 0.13);
  }

  .symposium-speaker-card h3 {
    margin-top: 9px;
    font-size: clamp(0.9rem, 4vw, 1.02rem);
    line-height: 1.12;
  }

  .symposium-speaker-card p {
    font-size: 0.78rem;
    line-height: 1.18;
  }

  .symposium-program {
    padding-top: 6px;
  }

  .symposium-program-panel {
    gap: 24px;
    padding: 16px;
  }

  .symposium-heading.small {
    margin-bottom: 10px;
  }

  .symposium-heading.small h2 {
    font-size: clamp(1.05rem, 5.2vw, 1.35rem);
    letter-spacing: 0.05em;
  }

  .symposium-small-ornament {
    width: 78px;
    margin-bottom: 14px;
  }

  .symposium-timeline li {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 12px;
    padding: 10px 0;
  }

  .symposium-day {
    align-self: start;
    justify-items: center;
    min-height: 52px;
    padding: 8px 7px;
    font-size: 0.82rem;
  }

  .symposium-schedule-details p {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 8px;
    margin-bottom: 5px;
    font-size: 0.88rem;
    line-height: 1.32;
  }

  .symposium-schedule-details time {
    font-size: 0.72rem;
  }

  .symposium-workshop-list li {
    padding-block: 9px;
    padding-left: 42px;
  }

  .symposium-subline {
    margin-bottom: 10px;
    font-size: 0.9rem;
  }

  .symposium-action-panel {
    padding: 18px;
  }

  .symposium-action-panel h2 {
    margin-bottom: 8px;
  }

  .symposium-price-band {
    margin-top: 24px;
  }
}

@media (max-width: 420px) {
  .symposium-hero h1 {
    font-size: clamp(1.9rem, 8.6vw, 2.25rem);
  }

  .symposium-kicker {
    font-size: 0.9rem;
    line-height: 1.25;
  }

  .symposium-facts div {
    min-height: 92px;
    padding: 14px 10px;
  }

  .symposium-facts span {
    font-size: 1.08rem;
  }

  .symposium-facts strong {
    font-size: 0.8rem;
  }

  .symposium-speaker-grid {
    gap: 16px 10px;
  }

  .symposium-timeline li {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .symposium-schedule-details p {
    grid-template-columns: 66px minmax(0, 1fr);
  }
}

@media (max-width: 559px) {
  .symposium-speaker-grid .symposium-speaker-card:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(48%, 190px);
  }
}

@media (min-width: 560px) and (max-width: 680px) {
  .symposium-speaker-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px 18px;
  }

  .symposium-speaker-grid .symposium-speaker-card:last-child {
    grid-column: auto;
    justify-self: stretch;
    width: auto;
  }

  .symposium-speaker-card img {
    aspect-ratio: 4 / 4.6;
  }
}

/* Symposium targeted QA fix: hero contrast and compact schedule rows */
@media (max-width: 760px) {
  .symposium-hero-image {
    filter: saturate(0.9) sepia(0.12) contrast(1.04);
  }

  .symposium-hero-shade {
    background:
      linear-gradient(90deg, rgba(14, 12, 10, 0.68) 0%, rgba(14, 12, 10, 0.46) 48%, rgba(14, 12, 10, 0.18) 100%),
      linear-gradient(0deg, rgba(14, 12, 10, 0.28), rgba(14, 12, 10, 0.06));
  }

  .symposium-kicker,
  .symposium-date {
    color: #ffd783;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.82), 0 0 1px rgba(0, 0, 0, 0.95);
  }

  .symposium-hero h1 {
    color: #fffdf7;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.9), 0 0 2px rgba(0, 0, 0, 0.95);
  }

  .symposium-hero-copy {
    color: #fff6df;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75);
  }

  .symposium-schedule-details p {
    grid-template-columns: minmax(7.8rem, max-content) minmax(0, 1fr);
    column-gap: 1rem;
  }
}

@media (max-width: 480px) {
  .symposium-schedule-details p {
    display: block;
  }

  .symposium-schedule-details time,
  .symposium-schedule-details span {
    display: block;
  }

  .symposium-schedule-details time {
    margin-bottom: 2px;
    white-space: normal;
  }
}

@media (max-width: 760px) {
  .symposium-hero .symposium-date {
    color: #ffd783 !important;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.45rem, 7vw, 2.1rem) !important;
    line-height: 1.08 !important;
    margin: 18px 0 12px !important;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.82), 0 0 1px rgba(0, 0, 0, 0.95);
  }
}

.symposium-hero .symposium-date {
  color: #ffd783 !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 4.2vw, 4rem) !important;
  line-height: 1.08 !important;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.72), 0 0 1px rgba(0, 0, 0, 0.95);
}

/* Kursseiten-Optimierung 2026-06: kompaktere Kategorie- und Mobilansicht */
@media (max-width: 680px) {
  .course-card {
    grid-template-columns: 1fr;
  }

  .course-media {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

  .course-media img {
    position: static;
    inset: auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 680px) {
  .courses-page-hero {
    gap: 16px;
    padding-top: 90px;
    padding-bottom: 20px;
  }

  .courses-page-mark {
    padding-top: 0;
  }

  .courses-page-hero .page-ornament {
    width: min(148px, 42vw);
    margin-bottom: 12px;
  }

  .courses-page-graphic {
    width: min(170px, 48vw);
    aspect-ratio: 4 / 3;
    margin-top: 12px;
  }

  .courses-page-hero.compact h1,
  .courses-page-hero h1 {
    max-width: 12ch;
    font-size: clamp(2.05rem, 10vw, 2.65rem);
    line-height: 1.02;
  }

  .courses-page-hero.compact p:not(.eyebrow),
  .courses-page-intro p {
    margin-top: 14px;
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .courses-page-intro::before {
    margin-bottom: 14px;
  }

  .courses-page-hero + .section {
    padding-top: 18px;
  }

  .course-filter {
    position: static;
    gap: 10px;
    margin-bottom: 22px;
    padding: 10px;
    border-radius: 14px;
  }

  .course-filter-buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .course-filter button,
  .course-filter-toggle {
    min-height: 38px;
    font-size: 0.82rem;
    line-height: 1.08;
  }

  .course-filter button {
    padding-inline: 10px;
  }

  .course-filter-toggle {
    min-height: 40px;
  }

  .course-body {
    gap: 10px;
    padding: 18px;
  }

  .course-body h3 {
    max-width: none;
    font-size: clamp(1.42rem, 7vw, 1.9rem);
    line-height: 1.08;
  }

  .course-details {
    max-height: 7.5rem;
    overflow: hidden;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.48;
  }

  .course-details ul {
    display: block;
    margin-top: 2px;
  }

  .course-details li:nth-child(n+4),
  .course-details p:nth-of-type(n+3) {
    display: none;
  }


  .course-actions {
    gap: 12px;
    margin-top: 8px;
    padding-top: 14px;
  }

  .course-detail-link {
    line-height: 1.25;
  }
}

/* Buchseite: kompaktere Kaufstrecke */
.shop-product-card {
  align-items: start;
}

.shop-product-copy .shop-cart-form {
  margin-top: 2px;
}

@media (max-width: 680px) {
  .shop-hero {
    padding-top: 88px;
    padding-bottom: 18px;
  }

  .shop-hero .page-ornament {
    width: min(145px, 42vw);
    margin-bottom: 12px;
  }

  .shop-hero h1 {
    max-width: 12ch;
    font-size: clamp(2.15rem, 10vw, 2.85rem);
    line-height: 1.02;
  }

  .shop-hero p:not(.eyebrow) {
    max-width: 32ch;
    font-size: 0.98rem;
    line-height: 1.52;
  }

  .shop-section {
    gap: 18px;
  }

  .shop-product-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 18px;
  }

  .shop-product-image {
    display: contents;
  }

  .shop-main-image-trigger {
    order: 1;
  }

  .shop-product-copy {
    order: 2;
    gap: 12px;
  }

  .shop-product-gallery {
    order: 3;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }

  .shop-product-gallery img {
    aspect-ratio: 4 / 3;
  }

  .shop-product-copy h2 {
    font-size: clamp(1.55rem, 7vw, 2rem);
    line-height: 1.08;
  }

  .shop-product-copy p:not(.eyebrow) {
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .shop-product-notes {
    grid-template-columns: 1fr;
    gap: 6px;
    margin: 0;
  }

  .shop-product-notes span {
    padding: 6px 9px;
    font-size: 0.86rem;
  }

  .shop-price {
    font-size: 1.45rem;
  }

  .shop-cart-form {
    align-items: end;
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 10px;
  }

  .shop-cart-form input {
    width: 100%;
  }

  .shop-cart-form .button {
    width: 100%;
    min-height: 44px;
  }

  .shop-book-description {
    gap: 18px;
    padding-top: 28px;
  }

  .shop-author-figure .shop-image-trigger,
  .shop-author-figure .shop-image-trigger > img {
    width: min(100%, 260px);
  }
}

/* Galerie-Seite: kompaktere mobile Übersicht */
@media (max-width: 680px) {
  .gallery-overview {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 18px 12px 68px;
  }

  .gallery-overview .home-gallery-card {
    display: flex;
    max-width: none;
    flex: none;
    width: 100%;
  }

  .gallery-overview .gallery-open {
    min-height: 0;
    border-radius: 6px;
  }

  .gallery-overview .gallery-card-image {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .gallery-overview .gallery-card-image::after {
    inset: 18% 0 0;
    background: linear-gradient(180deg, rgba(30, 20, 13, 0), rgba(30, 20, 13, 0.78));
  }

  .gallery-overview .gallery-card-image strong {
    right: 10px;
    bottom: 9px;
    left: 10px;
    font-size: clamp(0.94rem, 4.7vw, 1.16rem);
    line-height: 1.04;
    hyphens: auto;
    overflow-wrap: normal;
    text-shadow: 0 2px 14px rgba(20, 14, 9, 0.62);
  }
}

@media (max-width: 374px) {
  .gallery-overview {
    gap: 7px;
    padding-inline: 10px;
  }

  .gallery-overview .gallery-card-image strong {
    font-size: clamp(0.9rem, 4.6vw, 1.08rem);
  }
}


/* Ueber-uns-Seite: ruhigere Proportionen und kompakter Abschluss */
@media (min-width: 981px) {
  .about-tradition {
    grid-template-columns: minmax(360px, 0.44fr) minmax(0, 0.56fr);
    gap: clamp(42px, 5vw, 76px);
  }

  .about-tradition h2 {
    max-width: 16ch;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }
}

.text-columns + .google-trust-section {
  padding-top: clamp(24px, 4vw, 46px);
  padding-bottom: clamp(34px, 5vw, 58px);
}

.text-columns + .google-trust-section .google-trust-card {
  max-width: 940px;
  grid-template-columns: 1fr;
}

.text-columns + .google-trust-section .voucher-panel {
  display: none;
}

@media (max-width: 680px) {
  .page-hero.about {
    gap: 22px;
    padding-top: 68px;
    padding-bottom: 24px;
  }

  .page-hero.about h1 {
    max-width: 11.5ch;
    font-size: clamp(2.15rem, 10.2vw, 3rem);
    line-height: 0.98;
  }

  .page-hero.about p:not(.eyebrow) {
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .page-hero.about img {
    max-height: 360px;
  }

  .about-tradition {
    padding-top: 24px;
  }

  .about-tradition h2 {
    max-width: 13ch;
    font-size: clamp(2rem, 9.2vw, 2.72rem);
    overflow-wrap: normal;
    word-break: normal;
    hyphens: auto;
  }

  .about-tradition-copy {
    font-size: 0.96rem;
    line-height: 1.72;
  }

  .text-columns + .google-trust-section {
    padding: 24px 18px 42px;
  }

  .text-columns + .google-trust-section .google-trust-panel,
  .text-columns + .google-trust-section .google-trust-panel:first-child {
    gap: 14px;
    padding: 22px 18px;
  }
}


.text-columns + .google-trust-section .google-trust-card.reveal {
  opacity: 1;
  transform: none;
}


/* Ueber-uns-Seite: mobiles Riml-Ornament nicht vom Header anschneiden */
@media (max-width: 680px) {
  .page-hero.about {
    padding-top: 92px;
  }
}


/* Kontaktseite: kompakter Einstieg und mobile Formularfuehrung */
.contact-page-hero {
  padding-top: clamp(92px, 8vw, 118px);
  padding-bottom: clamp(14px, 2vw, 28px);
}

.contact-page-hero h1 {
  max-width: 15ch;
}

.contact-page-hero + .contact-layout {
  padding-top: 0;
  padding-bottom: clamp(16px, 3vw, 30px);
}

.contact-page-hero + .contact-layout .contact-card {
  width: min(100%, 1060px);
  max-width: 1060px;
}

@media (min-width: 860px) {
  .contact-page-hero + .contact-layout .contact-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: clamp(24px, 4vw, 56px);
    align-items: center;
  }

  .contact-page-hero + .contact-layout .contact-card h2,
  .contact-page-hero + .contact-layout .contact-card p,
  .contact-page-hero + .contact-layout .contact-card a:not(.button) {
    grid-column: 1;
  }

  .contact-page-hero + .contact-layout .contact-card .button {
    grid-column: 2;
    grid-row: 1 / span 4;
    align-self: center;
    white-space: nowrap;
  }
}

@media (max-width: 680px) {
  .contact-page-hero {
    padding-top: 92px;
    padding-bottom: 18px;
  }

  .contact-page-hero .page-ornament {
    width: min(122px, 36vw);
    margin-bottom: 12px;
  }

  .contact-page-hero h1 {
    max-width: 11ch;
    font-size: clamp(2.2rem, 9.4vw, 2.95rem);
    line-height: 1.02;
  }

  .contact-page-hero p:not(.eyebrow) {
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .contact-page-hero + .contact-layout .contact-card {
    padding: 16px;
  }

  .contact-page-hero + .contact-layout .contact-card h2 {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
    line-height: 1.05;
  }

  .contact-page-hero + .contact-layout .contact-card .button {
    width: 100%;
    min-height: 42px;
  }

  .contact-form-section {
    padding-bottom: 46px;
  }

  .contact-form-section .site-form {
    gap: 16px;
    padding: 18px 14px;
  }

  .contact-form-section .site-form h2 {
    font-size: clamp(1.52rem, 7vw, 2rem);
  }

  .contact-form-section .form-grid {
    gap: 12px;
  }

  .contact-form-section .site-form label {
    gap: 5px;
  }

  .contact-form-section .site-form input,
  .contact-form-section .site-form textarea {
    min-height: 44px;
    padding: 10px 11px;
  }

  .contact-form-section .site-form textarea {
    min-height: 126px;
  }

  .contact-form-section .privacy-check {
    gap: 9px;
    padding-top: 14px;
    font-size: 0.8rem;
    line-height: 1.48;
  }
}


/* Rechtliches/Impressum: lesbarer und header-sicher */
.page-hero.legal {
  padding-top: clamp(92px, 8vw, 118px);
  padding-bottom: clamp(18px, 3vw, 34px);
}

.page-hero.legal h1 {
  max-width: 16ch;
}

.legal-content {
  width: min(980px, calc(100vw - 36px));
  max-width: 980px;
  margin-inline: auto;
  padding-top: clamp(18px, 3vw, 34px);
  padding-bottom: clamp(70px, 8vw, 112px);
}

.legal-content > p:first-child,
.legal-content > p:nth-child(2),
.legal-content > p:nth-child(3),
.legal-content > p:nth-child(4),
.legal-content > p:nth-child(5),
.legal-content > p:nth-child(6),
.legal-content > p:nth-child(7),
.legal-content > p:nth-child(8) {
  max-width: 620px;
}

.legal-content h2,
.legal-content h3 {
  max-width: 760px;
  margin: clamp(30px, 5vw, 62px) 0 16px;
  color: #3b281d;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  line-height: 1.08;
  text-wrap: balance;
}

.legal-content h2 {
  font-size: clamp(1.65rem, 3.1vw, 2.55rem);
}

.legal-content h3 {
  font-size: clamp(1.12rem, 1.55vw, 1.34rem);
}

.legal-content p,
.legal-content li {
  max-width: 82ch;
}

.legal-content p:has(strong:first-child) {
  margin-top: 1.25rem;
}

@media (max-width: 680px) {
  .page-hero.legal {
    padding-top: 92px;
    padding-bottom: 16px;
  }

  .page-hero.legal .page-ornament {
    width: min(122px, 36vw);
    margin-bottom: 12px;
  }

  .page-hero.legal h1 {
    font-size: clamp(2.1rem, 10vw, 2.85rem);
    line-height: 1.02;
  }

  .legal-content {
    width: min(100% - 24px, 680px);
    padding-top: 18px;
    padding-bottom: 58px;
    font-size: 0.95rem;
    line-height: 1.66;
  }

  .legal-content h2 {
    margin-top: 34px;
    font-size: clamp(1.55rem, 8vw, 2.05rem);
    line-height: 1.08;
  }

  .legal-content h3 {
    margin-top: 28px;
    font-size: 1.06rem;
    line-height: 1.28;
  }

  .legal-content p,
  .legal-content ul,
  .legal-content ol {
    margin-bottom: 0.86rem;
  }

  .legal-content a {
    overflow-wrap: anywhere;
  }

  .legal-agb h2,
  .legal-widerruf h2 {
    font-size: clamp(1.18rem, 5.1vw, 1.48rem);
    line-height: 1.16;
  }

  .legal-agb p:has(strong:first-child),
  .legal-widerruf p:has(strong:first-child) {
    margin-top: 26px;
    font-size: 1rem;
    line-height: 1.24;
  }
}


/* Datenschutz: lange fett gesetzte Zwischentitel mobil sicher umbrechen */
.legal-content strong {
  overflow-wrap: anywhere;
}

@media (max-width: 680px) {
  .legal-content h2 {
    font-size: clamp(1.2rem, 5.4vw, 1.55rem);
    line-height: 1.14;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .legal-content h2 strong {
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .legal-content p:has(strong:first-child) strong:first-child {
    display: inline;
    max-width: 100%;
    line-height: 1.25;
  }
}

.course-area-galleries {
  margin-top: clamp(34px, 5vw, 68px);
  padding-top: clamp(22px, 4vw, 40px);
  border-top: 1px solid rgba(132, 103, 64, 0.22);
}

.course-area-gallery-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: clamp(14px, 2vw, 22px);
}

.course-area-gallery-head h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  line-height: 1.02;
}

.course-area-gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(10px, 1.5vw, 18px);
}

.course-area-gallery-card {
  position: relative;
  min-height: 168px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  background: #10384c;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 18px 44px rgba(68, 49, 26, 0.12);
  text-align: left;
}

.course-area-gallery-image,
.course-area-gallery-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.course-area-gallery-image img {
  object-fit: cover;
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.course-area-gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(15, 35, 50, 0.78));
}

.course-area-gallery-card strong {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 1;
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.15;
}

.course-area-gallery-card:hover img,
.course-area-gallery-card:focus-visible img {
  transform: scale(1.05);
}

@media (max-width: 980px) {
  .course-area-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .course-area-gallery-head {
    display: block;
  }

  .course-area-gallery-grid {
    grid-template-columns: 1fr;
  }

  .course-area-gallery-card {
    min-height: 190px;
    text-align: center;
  }

  .course-area-gallery-card strong {
    text-align: center;
  }
}
