* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.header {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  padding-bottom: 8vh;
  color: #f5f0e6;
  background-image: url("../images/WernerTheienr_Davos_09.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.45)
  );
}

.header h1,
.header h2 {
  position: relative;
  z-index: 1;
}

.header__login {
  position: absolute;
  top: clamp(1.5rem, 3vw, 2.5rem);
  right: clamp(1.5rem, 4vw, 3rem);
  z-index: 2;
  padding: 0.6rem 1.5rem;
  background: #f5f0e6;
  border: 1px solid #f5f0e6;
  border-radius: 999px;
  color: #1c1b18;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.header__login:hover {
  background: transparent;
  border-color: rgba(245, 240, 230, 0.5);
  color: #f5f0e6;
}

.header h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: clamp(3rem, 9vw, 8rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
}

.header h2 {
  margin-top: 1.5rem;
  font-weight: 400;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  letter-spacing: 0.02em;
  opacity: 0.95;
}

.gold {
  color: #c8a96a;
}

.scroll-indicator {
  position: relative;
  z-index: 1;
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

.scroll-indicator span {
  display: block;
  width: 16px;
  height: 16px;
  border-right: 2px solid #f5f0e6;
  border-bottom: 2px solid #f5f0e6;
  transform: rotate(45deg);
  animation: scroll-bounce 1.8s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%,
  100% {
    transform: rotate(45deg) translate(0, 0);
    opacity: 0.4;
  }
  50% {
    transform: rotate(45deg) translate(4px, 4px);
    opacity: 0.9;
  }
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #ece9e2;
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 4vw, 4rem);
}

.pillar {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.5rem clamp(1.5rem, 3vw, 3rem);
  text-align: center;
  transition: background 0.3s ease;
}

.pillar + .pillar {
  border-left: 1px solid rgba(43, 43, 40, 0.12);
}

.pillar:hover {
  background: rgba(255, 255, 255, 0.45);
}

.pillar__num {
  display: block;
  margin-bottom: 0.75rem;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  line-height: 1;
  color: #c8a96a;
  opacity: 0.35;
  transition: opacity 0.3s ease;
}

.pillar:hover .pillar__num {
  opacity: 0.6;
}

.pillar__label {
  margin-bottom: 1.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #b08d4f;
}

.pillar__title {
  margin-bottom: 1.25rem;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #2b2b28;
}

.pillar__text {
  max-width: 32ch;
  margin: 0 auto 2rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #57544d;
}

.pillar__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: #57544d;
  transition: color 0.25s ease;
}

.pillar__link span {
  transition: transform 0.25s ease;
}

.pillar__link:hover {
  color: #2b2b28;
}

.pillar__link:hover span {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .pillars {
    grid-template-columns: 1fr;
  }

  .pillar + .pillar {
    border-left: none;
    border-top: 1px solid rgba(43, 43, 40, 0.12);
  }
}

.vision {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem;
  background: #ece9e2;
}

.vision__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  text-align: center;
}

.vision__label {
  margin-bottom: 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #8a8780;
}

.vision__text {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  line-height: 1.25;
  color: #2b2b28;
}

.vision__signature {
  margin-top: 1.5rem;
  font-family: "Allura", cursive;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  color: #2b2b28;
  transform: translateX(30%);
}

.vision__gallery {
  display: contents;
}

.vision__img {
  position: absolute;
  z-index: 1;
  background-image: url("../images/WernerTheienr_Davos_09.webp");
  background-size: cover;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.vision__img--1 {
  top: 12%;
  left: 7%;
  width: 13%;
  aspect-ratio: 3 / 4;
  background-position: 30% 20%;
  transform: skewX(-7deg);
}

.vision__img--2 {
  top: 16%;
  left: 56%;
  width: 10%;
  aspect-ratio: 4 / 3;
  background-position: 60% 40%;
  transform: skewX(-7deg);
}

.vision__img--3 {
  top: 30%;
  right: -1%;
  width: 11%;
  aspect-ratio: 3 / 4;
  background-position: 55% 30%;
  transform: skewX(-7deg);
}

.vision__img--4 {
  top: 73%;
  left: -2%;
  width: 23%;
  aspect-ratio: 4 / 3;
  background-position: 50% 65%;
}

.vision__img--5 {
  top: 70%;
  left: 33%;
  width: 12%;
  aspect-ratio: 3 / 4;
  background-position: 40% 50%;
}

.vision__img--6 {
  top: 58%;
  right: 8%;
  width: 10%;
  aspect-ratio: 4 / 3;
  background-position: 70% 50%;
  transform: skewX(-7deg);
}

@media (max-width: 768px) {
  .vision {
    flex-direction: column;
    min-height: auto;
    gap: 2.5rem;
    padding: 4rem 1.25rem;
  }

  .vision__gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    width: 100%;
  }

  .vision__img {
    position: static;
    width: 100%;
    aspect-ratio: 3 / 4;
    transform: none;
  }

  .vision__signature {
    transform: translateX(15%);
  }
}

.footer {
  position: relative;
  overflow: hidden;
  background: #1c1b18;
  color: #f5f0e6;
  text-align: center;
  padding: clamp(3.5rem, 7vw, 6rem) 1.5rem clamp(1.5rem, 3vw, 2.5rem);
}

.footer__brandmark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  border: 1px solid rgba(245, 240, 230, 0.4);
  border-radius: 50%;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}

.footer__tagline {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 240, 230, 0.55);
}

.footer__wordmark {
  margin: clamp(1.5rem, 3vw, 2.5rem) 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: clamp(5rem, 22vw, 17rem);
  line-height: 0.9;
  white-space: nowrap;
  color: rgba(245, 240, 230, 0.9);
}

.footer__note {
  font-size: 0.95rem;
  color: rgba(245, 240, 230, 0.7);
}

.footer__form {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  width: min(340px, 80vw);
  margin-top: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(245, 240, 230, 0.3);
}

.footer__form input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  outline: none;
  color: #f5f0e6;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer__form input::placeholder {
  color: rgba(245, 240, 230, 0.45);
}

.footer__form button {
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #f5f0e6;
  font-size: 1.05rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.footer__form button:hover {
  transform: translateX(3px);
}

.footer__social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
}

.footer__social a {
  display: inline-flex;
  color: rgba(245, 240, 230, 0.65);
  transition: color 0.2s ease;
}

.footer__social a:hover {
  color: #c8a96a;
}

.footer__social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245, 240, 230, 0.12);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 240, 230, 0.5);
}

.footer__links {
  display: flex;
  gap: 1.5rem;
}

.footer__links a,
.footer__copy {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: #f5f0e6;
}

@media (max-width: 768px) {
  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

.formats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  min-height: 100vh;
  max-height: 100vh;
  background: #ece9e2;
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 5rem);
}

.formats__label {
  margin-bottom: 2rem;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #8a8780;
}

.formats__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
}

.formats__item {
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  line-height: 1.15;
  color: #b9b6ad;
  transition: color 0.25s ease;
}

.formats__item:hover,
.formats__item:focus-visible,
.formats__item--active {
  color: #2b2b28;
}

.formats__photo {
  aspect-ratio: 16 / 9;
  background-color: #d8d4cb;
  background-image: url("../images/WernerTheienr_Davos_09.webp");
  background-size: cover;
  background-position: center;
  transition: background-position 0.4s ease;
}

.formats__text {
  margin: 1.25rem 0 1.1rem;
  min-height: 4.6rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #57544d;
}

.formats__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: #57544d;
  transition: color 0.25s ease;
}

.formats__link span {
  transition: transform 0.25s ease;
}

.formats__link:hover {
  color: #2b2b28;
}

.formats__link:hover span {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .formats {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.events {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
  padding: 2rem 1.5rem;
}

.events__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../images/events-bg.webp");
  background-size: cover;
  background-position: center;
}

.events__card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  width: min(1100px, 92vw);
  padding: clamp(3rem, 5vw, 3.5rem) clamp(1.5rem, 4vw, 3.5rem)
    clamp(2rem, 4vw, 2.5rem);
  background: #ece9e2;
}

.events__progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(43, 43, 40, 0.1);
  overflow: hidden;
}

.events__progress-bar {
  display: block;
  width: 100%;
  height: 100%;
  background: #1c1b18;
  transform: scaleX(0);
  transform-origin: left;
}

@keyframes events-progress {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

.events__label {
  position: absolute;
  top: 1.4rem;
  left: clamp(1.5rem, 4vw, 3.5rem);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #8a8780;
}

.events__controls {
  position: absolute;
  top: 1.2rem;
  right: clamp(1.5rem, 4vw, 3.5rem);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: #57544d;
}

.events__nav,
.events__playpause {
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: #57544d;
  font-size: 1rem;
  line-height: 1;
  transition: color 0.2s ease;
}

.events__playpause {
  font-size: 0.7rem;
}

.events__nav:hover,
.events__playpause:hover {
  color: #2b2b28;
}

.events__title {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.1;
  color: #2b2b28;
}

.events__thumb {
  display: block;
  width: clamp(160px, 22vw, 280px);
  aspect-ratio: 16 / 9;
  background-color: #d8d4cb;
  background-size: cover;
  background-position: center;
}

.events__meta {
  text-align: right;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #57544d;
}

.events__more {
  position: absolute;
  right: clamp(1.5rem, 5vw, 5rem);
  bottom: clamp(1.5rem, 5vw, 5rem);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  color: #f5f0e6;
  text-decoration: none;
}

.events__more svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: events-spin 12s linear infinite;
}

.events__more text {
  fill: currentColor;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.events__more-arrow {
  font-size: 1.2rem;
}

@keyframes events-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .events__card {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding-top: 3.5rem;
    text-align: center;
  }

  .events__title,
  .events__meta {
    text-align: center;
  }

  .events__thumb {
    width: 100%;
  }

  .events__more {
    width: 84px;
    height: 84px;
    right: 1.25rem;
    bottom: 1.25rem;
  }
}

.topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1.2rem, 3vw, 2rem) clamp(1.5rem, 4vw, 3rem);
}

.topbar__brand {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: #f5f0e6;
}

.topbar__brand .gold {
  color: #c8a96a;
}

.topbar__login {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background: #f5f0e6;
  border: 1px solid #f5f0e6;
  border-radius: 999px;
  color: #1c1b18;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.topbar__login:hover {
  background: transparent;
  border-color: rgba(245, 240, 230, 0.5);
  color: #f5f0e6;
}

.subhero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 68vh;
  padding: 9rem 1.5rem 5rem;
  text-align: center;
  color: #f5f0e6;
  background-image: url("../images/WernerTheienr_Davos_09.webp");
  background-size: cover;
  background-position: center;
}

.subhero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0.55)
  );
}

.subhero__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.subhero__eyebrow {
  margin-bottom: 1.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 240, 230, 0.75);
}

.subhero__title {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  line-height: 1.05;
}

.subhero__lead {
  margin: 1.5rem auto 0;
  max-width: 560px;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.6;
  color: rgba(245, 240, 230, 0.85);
}

.section {
  background: #ece9e2;
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 5rem);
}

.section__inner {
  max-width: 760px;
  margin: 0 auto;
}

.section__label {
  margin-bottom: 2.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #8a8780;
}

.section__text {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  line-height: 1.6;
  color: #2b2b28;
}

.mock-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
}

.mock-card__photo {
  aspect-ratio: 16 / 9;
  margin-bottom: 1.25rem;
  background-color: #d8d4cb;
}

.mock-card__title {
  margin-bottom: 0.6rem;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  color: #2b2b28;
}

.mock-card__text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #57544d;
}

.mock-note {
  display: inline-block;
  margin-top: 2.5rem;
  padding: 0.45rem 1rem;
  border: 1px dashed rgba(43, 43, 40, 0.3);
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8a8780;
}

.legal-head {
  position: relative;
  background: #1c1b18;
  color: #f5f0e6;
  padding: clamp(7rem, 12vw, 9rem) clamp(1.5rem, 5vw, 5rem)
    clamp(2.5rem, 5vw, 4rem);
}

.legal-head__title {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.4rem, 6vw, 4rem);
}

.legal {
  background: #ece9e2;
  padding: clamp(3rem, 7vw, 6rem) clamp(1.5rem, 5vw, 5rem);
}

.legal__inner {
  max-width: 760px;
  margin: 0 auto;
}

.legal h2 {
  margin: 2.5rem 0 0.75rem;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  color: #2b2b28;
}

.legal h2:first-child {
  margin-top: 0;
}

.legal p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #57544d;
}

.login {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 100vh;
}

.login__aside {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(2rem, 4vw, 3.5rem);
  color: #f5f0e6;
  background-image: url("../images/events-bg.webp");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.login__aside::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20, 19, 17, 0.35),
    rgba(20, 19, 17, 0.7)
  );
}

.login__brand {
  position: relative;
  z-index: 1;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: #f5f0e6;
  text-decoration: none;
}

.login__brand .gold {
  color: #c8a96a;
}

.login__aside-content {
  position: relative;
  z-index: 1;
  max-width: 440px;
}

.login__aside-eyebrow {
  margin-bottom: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 240, 230, 0.7);
}

.login__aside-title {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.15;
}

.login__aside-text {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(245, 240, 230, 0.85);
}

.login__panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem);
  background: #f7f5f0;
}

.login__form-wrap {
  width: min(360px, 100%);
  text-align: center;
}

.login__monogram {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 1.25rem;
  border: 1px solid rgba(28, 27, 24, 0.3);
  border-radius: 50%;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: #1c1b18;
}

.login__title {
  margin-bottom: 0.5rem;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  color: #1c1b18;
}

.login__sub {
  margin-bottom: 1.75rem;
  font-size: 0.9rem;
  color: #57544d;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.login-form[hidden] {
  display: none;
}

.login-field label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a8780;
}

.login-field input {
  width: 100%;
  padding: 0.75rem 0.9rem;
  background: #fff;
  border: 1px solid rgba(28, 27, 24, 0.18);
  border-radius: 4px;
  font-size: 0.95rem;
  color: #1c1b18;
  transition: border-color 0.2s ease;
}

.login-field input:focus {
  outline: none;
  border-color: #c8a96a;
}

.login-form__submit {
  margin-top: 0.5rem;
  padding: 0.85rem;
  background: #1c1b18;
  border: none;
  border-radius: 4px;
  color: #f5f0e6;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease;
}

.login-form__submit:hover {
  background: #3a3833;
}

.login__hint {
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #57544d;
}

.login__email-target {
  color: #1c1b18;
}

.login-field input.login__code-input {
  text-align: center;
  font-size: 1.1rem;
  letter-spacing: 0.4em;
}

.login__code-actions {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1rem;
}

.login__text-btn {
  padding: 0;
  background: none;
  border: none;
  border-bottom: 1px solid currentColor;
  font-size: 0.78rem;
  color: #57544d;
  cursor: pointer;
  transition: color 0.2s ease;
}

.login__text-btn:hover {
  color: #1c1b18;
}

.login__switch {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: #57544d;
}

.login__switch-btn {
  padding: 0;
  background: none;
  border: none;
  border-bottom: 1px solid currentColor;
  font: inherit;
  color: #1c1b18;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.login__switch-btn:hover {
  color: #c8a96a;
}

.login__errors {
  margin-bottom: 1.25rem;
  padding: 0.75rem 1rem;
  background: rgba(196, 80, 80, 0.08);
  border: 1px solid rgba(196, 80, 80, 0.25);
  border-radius: 4px;
  font-size: 0.85rem;
  color: #a64646;
  text-align: left;
}

.login__errors p {
  margin: 0;
}

.login__errors p + p {
  margin-top: 0.35rem;
}

.member__flash {
  margin-bottom: 1.5rem;
  padding: 0.8rem 1.1rem;
  background: rgba(60, 110, 70, 0.1);
  border: 1px solid rgba(60, 110, 70, 0.3);
  border-radius: 4px;
  font-size: 0.9rem;
  color: #3c6e46;
}

.login__back {
  display: block;
  margin-top: 2rem;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8a8780;
  text-decoration: none;
  transition: color 0.2s ease;
}

.login__back:hover {
  color: #1c1b18;
}

@media (max-width: 768px) {
  .login {
    grid-template-columns: 1fr;
  }

  .login__aside {
    min-height: 36vh;
  }
}

.member-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem clamp(1.5rem, 5vw, 5rem);
  background: #ece9e2;
  border-bottom: 1px solid rgba(43, 43, 40, 0.12);
}

.member-bar__brand {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  color: #1c1b18;
  text-decoration: none;
}

.member-bar__brand .gold {
  color: #c8a96a;
}

.member-bar__right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.member-bar__user {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: #2b2b28;
}

.member-bar__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #1c1b18;
  color: #f5f0e6;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}

.member-bar__logout {
  padding-left: 1rem;
  border-left: 1px solid rgba(43, 43, 40, 0.15);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a8780;
  text-decoration: none;
  transition: color 0.2s ease;
}

.member-bar__logout:hover {
  color: #1c1b18;
}

.member-banner {
  height: clamp(90px, 14vw, 150px);
  background-image: url("../images/events-bg.webp");
  background-size: cover;
  background-position: center;
}

.member {
  min-height: 70vh;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 5rem);
  background: #ece9e2;
}

.member__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.member__eyebrow {
  margin-bottom: 0.75rem;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #8a8780;
}

.member__title {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #1c1b18;
}

.member-apps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.app-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.25rem;
  background: #f7f5f0;
  border: 1px solid rgba(43, 43, 40, 0.08);
  border-radius: 8px;
  color: #1c1b18;
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}

.app-card:hover {
  border-color: #c8a96a;
  transform: translateY(-2px);
}

.app-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #1c1b18;
  color: #f5f0e6;
}

.app-card__icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.app-card__label {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.member__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}

.member-card {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: #f7f5f0;
  border: 1px solid rgba(43, 43, 40, 0.08);
  border-radius: 8px;
}

.member-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.member-card__title {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  color: #1c1b18;
}

.member-badge {
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(43, 43, 40, 0.08);
  color: #57544d;
}

.member-badge--free {
  background: rgba(43, 43, 40, 0.08);
  color: #57544d;
}

.member-badge--premium {
  background: rgba(200, 169, 106, 0.18);
  color: #a07d3c;
}

.member-badge--cancelled {
  background: rgba(170, 110, 60, 0.12);
  color: #8a5a2c;
}

.member__inner--center {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}

.member__inner--center .member-card {
  text-align: left;
}

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

.member-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.member-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(43, 43, 40, 0.08);
  font-size: 0.95rem;
  color: #2b2b28;
}

.member-list li::before {
  content: "✓";
  flex-shrink: 0;
  color: #c8a96a;
  font-size: 0.95rem;
  line-height: 1.5;
}

.member-list li:last-child {
  border-bottom: none;
}

.member__notice {
  margin: 1.25rem 0;
  padding: 0.7rem 0.95rem;
  background: rgba(170, 110, 60, 0.08);
  border-left: 3px solid rgba(170, 110, 60, 0.4);
  border-radius: 2px;
  font-size: 0.9rem;
  color: #8a5a2c;
}

.member__pending-email {
  margin-bottom: 1.5rem;
  padding: 1rem 1.1rem;
  background: rgba(200, 169, 106, 0.1);
  border-left: 3px solid rgba(200, 169, 106, 0.6);
  border-radius: 2px;
  font-size: 0.9rem;
  color: #2b2b28;
}

.member__pending-email p {
  margin: 0 0 0.8rem;
}

.member-email-confirm {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}

.member-email-confirm input {
  flex: 1;
  padding: 0.7rem 0.9rem;
  background: #fff;
  border: 1px solid rgba(28, 27, 24, 0.18);
  border-radius: 4px;
  font-size: 1.05rem;
  letter-spacing: 0.35em;
  text-align: center;
  color: #1c1b18;
}

.member-email-confirm input:focus {
  outline: none;
  border-color: #c8a96a;
}

.member__field-hint {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.78rem;
  color: #8a5a2c;
}

.member-details {
  margin-bottom: 1.5rem;
}

.member-detail {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(43, 43, 40, 0.08);
  font-size: 0.92rem;
}

.member-detail:last-child {
  border-bottom: none;
}

.member-detail dt {
  color: #8a8780;
}

.member-detail dd {
  color: #2b2b28;
  text-align: right;
}

.member-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.member-btn {
  padding: 0.7rem 1.3rem;
  border: 1px solid #1c1b18;
  border-radius: 4px;
  background: #1c1b18;
  color: #f5f0e6;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.member-btn:hover {
  background: #3a3833;
}

.member-btn--ghost {
  background: transparent;
  color: #1c1b18;
}

.member-btn--ghost:hover {
  background: rgba(28, 27, 24, 0.06);
}

.member-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.member-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.member-field-row--address {
  grid-template-columns: 1fr 2fr;
}

.member-field label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a8780;
}

.member-field input {
  width: 100%;
  padding: 0.7rem 0.9rem;
  background: #fff;
  border: 1px solid rgba(28, 27, 24, 0.18);
  border-radius: 4px;
  font-size: 0.95rem;
  color: #1c1b18;
  transition: border-color 0.2s ease;
}

.member-field input:focus {
  outline: none;
  border-color: #c8a96a;
}

.member-form .member-btn {
  align-self: flex-start;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .member__grid {
    grid-template-columns: 1fr;
  }
}

.error-page {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 6rem 1.5rem 4rem;
  text-align: center;
  color: #f5f0e6;
  background-image: url("../images/events-bg.webp");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.error-page::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0.65)
  );
}

.error-page .topbar {
  position: absolute;
  z-index: 1;
}

.error-page__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.error-page__eyebrow {
  margin-bottom: 1.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 240, 230, 0.7);
}

.error-page__title {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.8rem, 8vw, 6rem);
  line-height: 1.05;
}

.error-page__lead {
  margin: 1.5rem auto 2.5rem;
  max-width: 480px;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.6;
  color: rgba(245, 240, 230, 0.85);
}

.error-page__btn {
  display: inline-block;
  padding: 0.85rem 1.7rem;
  background: #f5f0e6;
  border: 1px solid #f5f0e6;
  border-radius: 999px;
  color: #1c1b18;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.error-page__btn:hover {
  background: transparent;
  border-color: rgba(245, 240, 230, 0.5);
  color: #f5f0e6;
}

/* -----------------------------------------------------------------------
   Table Society page
   ----------------------------------------------------------------------- */

.subhero--tts {
  min-height: 92vh;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 9rem clamp(1.5rem, 5vw, 5rem) clamp(4rem, 7vw, 6rem);
  text-align: left;
}

.subhero--tts::after {
  background: linear-gradient(
    160deg,
    rgba(0, 0, 0, 0.08) 0%,
    rgba(0, 0, 0, 0.22) 40%,
    rgba(0, 0, 0, 0.75) 100%
  );
}

.subhero--tts .subhero__inner {
  max-width: 620px;
}

.tts-hero__subtitle {
  margin-top: 1.25rem;
  margin-bottom: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  line-height: 1.35;
  color: rgba(245, 240, 230, 0.88);
}

.subhero--tts .tts-cta-row {
  justify-content: flex-start;
}

.tts-cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.tts-cta {
  display: inline-block;
  padding: 0.85rem 1.7rem;
  background: #f5f0e6;
  border: 1px solid #f5f0e6;
  border-radius: 999px;
  color: #1c1b18;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.tts-cta:hover {
  background: transparent;
  border-color: rgba(245, 240, 230, 0.5);
  color: #f5f0e6;
}

.tts-cta--ghost {
  background: transparent;
  border-color: rgba(245, 240, 230, 0.5);
  color: #f5f0e6;
}

.tts-cta--ghost:hover {
  background: #f5f0e6;
  border-color: #f5f0e6;
  color: #1c1b18;
}

.tts-quote {
  background: #ece9e2;
}

.tts-quote .section__inner {
  text-align: center;
}

.tts-quote__text {
  margin-top: 1rem;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  line-height: 1.3;
  color: #1c1b18;
}

.tts-headline {
  margin: 0.75rem 0 1.5rem;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: #1c1b18;
}

.tts-subheadline {
  margin: 2.5rem 0 1.25rem;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  color: #c8a96a;
}

.tts-paragraph {
  margin-bottom: 1rem;
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.7;
  color: #2b2b28;
}

.tts-tier-grid {
  border-top: 1px solid rgba(43, 43, 40, 0.12);
  margin-top: 3rem;
}

.tts-tier {
  display: grid;
  grid-template-columns: clamp(3.5rem, 7vw, 5.5rem) 1fr auto;
  column-gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
  padding: clamp(2.5rem, 4vw, 3.5rem) 0;
  border-bottom: 1px solid rgba(43, 43, 40, 0.08);
}

.tts-tier__num {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  line-height: 0.85;
  color: rgba(200, 169, 106, 0.3);
  text-align: right;
  padding-top: 0.05em;
}

.tts-tier__name {
  margin: 0 0 0.3rem;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
  line-height: 1.1;
  color: #1c1b18;
}

.tts-tier__price {
  margin-bottom: 1.1rem;
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: 1.15rem;
  color: #c8a96a;
}

.tts-tier__price span {
  font-style: normal;
  font-size: 0.82rem;
  color: #8a8780;
}

.tts-tier__desc {
  margin-bottom: 0.9rem;
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  line-height: 1.72;
  color: #2b2b28;
}

.tts-tier__included {
  margin-bottom: 0.6rem;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #a07d3c;
}

.tts-tier__meta {
  font-size: 0.78rem;
  line-height: 1.5;
  color: #8a8780;
}

.tts-tier__side {
  padding-top: 0.2rem;
}

.tts-tier__cta {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border: 1px solid rgba(43, 43, 40, 0.22);
  color: #1c1b18;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.tts-tier__cta:hover {
  border-color: #1c1b18;
  background: #1c1b18;
  color: #f5f0e6;
}

@media (max-width: 680px) {
  .tts-tier {
    grid-template-columns: 1fr;
  }

  .tts-tier__num {
    font-size: clamp(3rem, 14vw, 5rem);
    text-align: left;
    margin-bottom: 0.25rem;
    line-height: 1;
  }

  .tts-tier__side {
    padding-top: 1.5rem;
  }
}

.tts-calendar {
  margin-top: 2rem;
  border-top: 1px solid rgba(43, 43, 40, 0.1);
}

.tts-calendar__row {
  display: grid;
  grid-template-columns: minmax(140px, 0.5fr) 2fr;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(43, 43, 40, 0.1);
}

.tts-calendar__row dt {
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #8a8780;
}

.tts-calendar__row dd {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  color: #1c1b18;
}

.tts-formats {
  margin-top: 2rem;
  border-top: 1px solid rgba(43, 43, 40, 0.12);
}

.tts-format {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0 2.5rem;
  align-items: start;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(43, 43, 40, 0.08);
}

.tts-format__title {
  margin-bottom: 0.5rem;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  color: #1c1b18;
}

.tts-format p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #57544d;
}

.tts-format__tier {
  flex-shrink: 0;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8a8780;
  white-space: nowrap;
  padding-top: 0.2rem;
}

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

.tts-denkraum {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 5rem);
  background: #1c1b18;
  color: #f5f0e6;
  text-align: center;
}

.tts-denkraum__inner {
  max-width: 720px;
  margin: 0 auto;
}

.tts-denkraum__eyebrow {
  margin-bottom: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #c8a96a;
}

.tts-denkraum__title {
  margin-bottom: 1.5rem;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
}

.tts-denkraum__lead {
  margin-bottom: 1rem;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.6;
  color: rgba(245, 240, 230, 0.9);
}

.tts-denkraum__sub {
  margin-bottom: 2rem;
  font-size: 0.95rem;
  color: rgba(245, 240, 230, 0.7);
}

.tts-denkraum__label {
  margin-bottom: 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 240, 230, 0.65);
}

.tts-denkraum__items {
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(245, 240, 230, 0.95);
}

.tts-explainer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: 2rem;
}

.tts-explainer h3 {
  margin-bottom: 0.75rem;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  color: #1c1b18;
}

.tts-explainer p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #57544d;
}

.tts-audience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 2rem;
  border-top: 1px solid rgba(43, 43, 40, 0.12);
}

.tts-audience article {
  padding: clamp(2rem, 3.5vw, 3rem) 0;
  border-bottom: 1px solid rgba(43, 43, 40, 0.08);
}

.tts-audience article:nth-child(odd) {
  padding-right: clamp(1.5rem, 3vw, 3rem);
  border-right: 1px solid rgba(43, 43, 40, 0.08);
}

.tts-audience article:nth-child(even) {
  padding-left: clamp(1.5rem, 3vw, 3rem);
}

.tts-audience article h3 {
  margin-bottom: 1rem;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.15rem, 1.9vw, 1.4rem);
  color: #1c1b18;
}

.tts-audience article p {
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #2b2b28;
}

.tts-audience__no h3 {
  color: #8a8780;
}

@media (max-width: 600px) {
  .tts-audience {
    grid-template-columns: 1fr;
  }

  .tts-audience article:nth-child(odd) {
    border-right: none;
    border-bottom: none;
    padding-right: 0;
  }

  .tts-audience article:nth-child(even) {
    padding-left: 0;
  }
}

.tts-final {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 5rem);
  background: #1c1b18;
  color: #f5f0e6;
  text-align: center;
}

.tts-final__inner {
  max-width: 720px;
  margin: 0 auto;
}

.tts-final__inner .section__label {
  color: rgba(245, 240, 230, 0.6);
}

.tts-final__title {
  margin: 0.75rem 0 0.5rem;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

.tts-final__sub {
  margin-bottom: 1.5rem;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  color: rgba(245, 240, 230, 0.8);
}

.tts-final__lead {
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(245, 240, 230, 0.75);
}

.tts-final__contact {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: rgba(245, 240, 230, 0.7);
}

.tts-final__contact a {
  color: #f5f0e6;
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 240, 230, 0.3);
  transition: border-color 0.2s ease;
}

.tts-final__contact a:hover {
  border-bottom-color: #f5f0e6;
}

/* -----------------------------------------------------------------------
   Theiner Experiences page
   ----------------------------------------------------------------------- */

.te-format-grid {
  border-top: 1px solid rgba(43, 43, 40, 0.12);
  margin-top: 1.5rem;
}

.te-format {
  display: grid;
  grid-template-columns: clamp(3rem, 6vw, 5rem) 1fr auto;
  column-gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
  padding: clamp(2.5rem, 4vw, 3.5rem) 0;
  border-bottom: 1px solid rgba(43, 43, 40, 0.08);
}

.te-format__num {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  line-height: 0.85;
  color: rgba(200, 169, 106, 0.3);
  text-align: right;
  padding-top: 0.05em;
}

.te-format__name {
  margin: 0 0 0.85rem;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.15;
  color: #1c1b18;
}

.te-format__desc {
  margin-bottom: 1rem;
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  line-height: 1.72;
  color: #2b2b28;
}

.te-format__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.te-format__meta li {
  font-size: 0.73rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8a8780;
}

.te-format__meta li::before {
  content: "—";
  margin-right: 0.4em;
  color: rgba(200, 169, 106, 0.7);
}

.te-format__side {
  padding-top: 0.2rem;
}

.te-format__cta {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border: 1px solid rgba(43, 43, 40, 0.22);
  color: #1c1b18;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.te-format__cta:hover {
  border-color: #1c1b18;
  background: #1c1b18;
  color: #f5f0e6;
}

@media (max-width: 680px) {
  .te-format {
    grid-template-columns: 1fr;
  }

  .te-format__num {
    font-size: clamp(3rem, 14vw, 5rem);
    text-align: left;
    margin-bottom: 0.25rem;
    line-height: 1;
  }

  .te-format__side {
    padding-top: 1.5rem;
  }
}

.te-acts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(43, 43, 40, 0.12);
  margin-top: 2.5rem;
}

.te-act {
  padding: 2rem clamp(1rem, 2.5vw, 2rem) 2rem 0;
  border-right: 1px solid rgba(43, 43, 40, 0.08);
}

.te-act:last-child {
  padding-right: 0;
  border-right: none;
}

.te-act__num {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #c8a96a;
}

.te-act h3 {
  margin-bottom: 0.5rem;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.15rem, 1.9vw, 1.4rem);
  color: #1c1b18;
}

.te-act p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #57544d;
}

@media (max-width: 640px) {
  .te-acts {
    grid-template-columns: 1fr;
  }

  .te-act {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid rgba(43, 43, 40, 0.08);
    padding-bottom: 1.5rem;
  }

  .te-act:first-child {
    padding-top: 1.5rem;
  }

  .te-act:last-child {
    border-bottom: none;
  }
}

.te-destinations {
  border-top: 1px solid rgba(43, 43, 40, 0.12);
  margin: 1.5rem 0;
}

.te-destination {
  display: grid;
  grid-template-columns: clamp(160px, 22%, 200px) 1fr auto;
  column-gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
  padding: clamp(1.75rem, 3vw, 2.5rem) 0;
  border-bottom: 1px solid rgba(43, 43, 40, 0.08);
}

.te-destination h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  line-height: 1.15;
  color: #1c1b18;
  padding-top: 0.15em;
}

.te-destination p {
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #2b2b28;
}

.te-destination ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.te-destination li {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a8780;
  padding: 0.2rem 0;
}

.te-destination li::before {
  content: "—";
  margin-right: 0.5em;
  color: rgba(200, 169, 106, 0.7);
}

.te-destination .te-format__cta {
  align-self: start;
  margin-top: 0.15em;
}

@media (max-width: 720px) {
  .te-destination {
    grid-template-columns: 1fr;
  }

  .te-destination .te-format__cta {
    margin-top: 1rem;
    align-self: auto;
  }
}

.te-trip-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
  margin-top: 1.5rem;
}

.te-trip-features h4 {
  margin-bottom: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a07d3c;
}

.te-trip-features p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #57544d;
}

.te-overview .tts-calendar__row dd {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  color: #2b2b28;
}

.te-people {
  margin-top: 2rem;
  border-top: 1px solid rgba(43, 43, 40, 0.12);
  list-style: none;
  padding: 0;
}

.te-person {
  display: grid;
  grid-template-columns: clamp(160px, 28%, 240px) 1fr;
  column-gap: clamp(1.5rem, 3vw, 3rem);
  align-items: baseline;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(43, 43, 40, 0.07);
}

.te-person h4 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: 1.05rem;
  color: #1c1b18;
}

.te-person p {
  font-size: 0.88rem;
  line-height: 1.5;
  color: #8a8780;
}

@media (max-width: 480px) {
  .te-person {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
}

.te-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  margin-top: 2rem;
}

.te-gallery__item {
  margin: 0;
}

.te-gallery__photo {
  aspect-ratio: 4 / 5;
  background-color: #d8d4cb;
  background-image: url("../images/events-bg.webp");
  background-size: cover;
  background-position: center;
  margin-bottom: 0.75rem;
}

.te-gallery__photo--1 { background-position: 30% 30%; }
.te-gallery__photo--2 { background-position: 70% 60%; }
.te-gallery__photo--3 { background-position: 50% 80%; }

.te-gallery figcaption {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #8a8780;
}

/* ── Revolut embedded checkout ───────────────────────── */

.revolut-pay {
  width: 100%;
  min-height: 340px;
  border-radius: 8px;
  overflow: hidden;
}

.pay__error {
  margin-top: 1rem;
  padding: 0.7rem 0.95rem;
  background: rgba(170, 60, 60, 0.08);
  border-left: 3px solid rgba(170, 60, 60, 0.4);
  border-radius: 2px;
  font-size: 0.88rem;
  color: #8a2c2c;
}

/* ── Plan management ─────────────────────────────────── */

.member__section-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 500;
  color: #1c1b18;
  margin: 0 0 1rem;
  text-align: left;
}

.manage-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.manage-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #f7f5f0;
  border: 1px solid rgba(43, 43, 40, 0.1);
  border-radius: 8px;
}

.manage-option__info {
  flex: 1;
  min-width: 0;
}

.manage-option__name {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #1c1b18;
  margin-bottom: 0.2rem;
}

.manage-option__badge {
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.manage-option__badge--up {
  background: rgba(200, 169, 106, 0.18);
  color: #a07d3c;
}

.manage-option__badge--down {
  background: rgba(43, 43, 40, 0.08);
  color: #57544d;
}

.manage-option__price {
  font-size: 1rem;
  color: #2b2b28;
  margin-bottom: 0.25rem;
}

.manage-option__note {
  font-size: 0.82rem;
  color: #8a8780;
}

.manage__cancel-link {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-size: inherit;
  color: #8a5a2c;
  text-decoration: underline;
  cursor: pointer;
}

.manage__cancel-link:hover {
  color: #5a3a1c;
}

/* ── Plan selection grid ──────────────────────────────── */

.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  background: #f7f5f0;
  border: 2px solid rgba(43, 43, 40, 0.12);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.plan-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.plan-card:has(input:checked) {
  border-color: #c8a96a;
  background: rgba(200, 169, 106, 0.06);
}

.plan-card__name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 500;
  color: #1c1b18;
  margin-bottom: 0.4rem;
}

.plan-card__price {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1c1b18;
  margin-bottom: 1.25rem;
}

.plan-card__price span {
  font-size: 0.85rem;
  font-weight: 400;
  color: #8a8780;
}

.plan-card .member-list {
  flex: 1;
  margin-bottom: 0;
}

.plan-card__check {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 1.1rem;
  height: 1.1rem;
  border: 2px solid rgba(43, 43, 40, 0.2);
  border-radius: 50%;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.plan-card:has(input:checked) .plan-card__check {
  border-color: #c8a96a;
  background: #c8a96a;
}

/* ─── Admin Panel ─────────────────────────────────────────── */

.admin-page body,
body.admin-page {
  background: #f7f6f3;
}

.admin {
  padding: 2rem 1.5rem 4rem;
}

.admin__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.admin__inner--narrow {
  max-width: 700px;
}

.admin__header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.admin__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 500;
  color: #1c1b18;
}

.admin__subtitle {
  font-size: 0.85rem;
  color: #6b6860;
}

.admin__count {
  font-size: 0.8rem;
  color: #6b6860;
  background: #ebe8e0;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
}

/* Search */
.admin__search {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.admin__search input[type="search"] {
  flex: 1;
  max-width: 400px;
  padding: 0.55rem 0.9rem;
  border: 1px solid #d8d4cc;
  border-radius: 6px;
  font-size: 0.9rem;
  background: #fff;
  color: #1c1b18;
  outline: none;
}

.admin__search input[type="search"]:focus {
  border-color: #c8a96a;
  box-shadow: 0 0 0 2px rgba(200, 169, 106, 0.18);
}

.admin__search-btn {
  padding: 0.55rem 1.2rem;
  background: #1c1b18;
  color: #f5f0e6;
  border: none;
  border-radius: 6px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.admin__search-btn:hover {
  background: #c8a96a;
}

.admin__search-reset {
  font-size: 0.82rem;
  color: #6b6860;
  text-decoration: underline;
  cursor: pointer;
}

/* Table */
.admin__table-wrap {
  overflow-x: auto;
  border-radius: 8px;
  border: 1px solid #ddd8ce;
  background: #fff;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.admin-table thead {
  background: #f0ece4;
}

.admin-table th {
  text-align: left;
  padding: 0.75rem 1rem;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #5a5750;
  white-space: nowrap;
}

.admin-table td {
  padding: 0.7rem 1rem;
  border-top: 1px solid #ece8e0;
  vertical-align: middle;
}

.admin-table tbody tr:hover {
  background: #faf8f4;
}

.admin__email {
  color: #4a4840;
  font-size: 0.82rem;
}

.admin__empty {
  color: #aaa;
  font-style: italic;
}

.admin__empty--row {
  display: table-cell;
  text-align: center;
  padding: 2rem;
  color: #aaa;
  font-style: italic;
}

.admin__row-btn {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: transparent;
  border: 1px solid #c8a96a;
  border-radius: 4px;
  color: #c8a96a;
  font-size: 0.78rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.admin__row-btn:hover {
  background: #c8a96a;
  color: #fff;
}

/* Badges */
.admin-badge {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.admin-badge--free {
  background: #ebe8e0;
  color: #5a5750;
}

.admin-badge--premium {
  background: #f7efd6;
  color: #7a5c10;
}

.admin-badge--cancelled {
  background: #fce8e8;
  color: #8b2020;
}

.admin-badge--grant {
  background: #e8f4ec;
  color: #1f6b35;
  cursor: help;
}

/* Cards */
.admin-card {
  background: #fff;
  border: 1px solid #ddd8ce;
  border-radius: 10px;
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}

.admin-card__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  color: #1c1b18;
}

/* Forms */
.admin-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.admin-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.admin-field label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #5a5750;
}

.admin-field input,
.admin-field select {
  padding: 0.55rem 0.75rem;
  border: 1px solid #d8d4cc;
  border-radius: 6px;
  font-size: 0.9rem;
  background: #fff;
  color: #1c1b18;
  outline: none;
}

.admin-field input:focus,
.admin-field select:focus {
  border-color: #c8a96a;
  box-shadow: 0 0 0 2px rgba(200, 169, 106, 0.18);
}

.admin-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.admin-field-row--address {
  grid-template-columns: 120px 1fr;
}

.admin-radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.admin-radio {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  cursor: pointer;
}

.admin__field-hint {
  font-size: 0.78rem;
  color: #7a7770;
}

.admin__grant-note {
  color: #6b6860;
  font-size: 0.8rem;
}

@media (max-width: 600px) {
  .admin-field-row {
    grid-template-columns: 1fr;
  }

  .admin-field-row--address {
    grid-template-columns: 1fr;
  }

  .admin__header {
    flex-direction: column;
    gap: 0.25rem;
  }
}
