:root {
  --tsc1-forest: #16483f;
  --tsc1-forest-2: #215a50;
  --tsc1-mint: #dce9d7;
  --tsc1-mint-soft: #edf4e9;
  --tsc1-coral: #ff725c;
  --tsc1-peach: #f5c7b0;
  --tsc1-lime: #cbd98a;
  --tsc1-cream: #f7f6ef;
  --tsc1-white: #ffffff;
  --tsc1-text: #16483f;
  --tsc1-text-soft: #48675f;
  --tsc1-border: rgba(22, 72, 63, 0.19);
  --tsc1-shadow: 0 22px 58px rgba(22, 72, 63, 0.11);
  --tsc1-shadow-small: 0 12px 30px rgba(22, 72, 63, 0.08);
  --tsc1-container: 1240px;
  --tsc1-radius-xl: 38px;
  --tsc1-radius-lg: 28px;
  --tsc1-radius-md: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.tsc1-theme-active {
  margin: 0 !important;
  min-width: 320px;
  background: var(--tsc1-mint) !important;
  color: var(--tsc1-text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.tsc1-menu-open { overflow: hidden; }
.tsc1-site { min-height: 100vh; overflow: clip; background: var(--tsc1-mint) !important; }
.tsc1-site img { display: block; max-width: 100%; height: auto; }
.tsc1-site a { color: inherit; }
.tsc1-site button,
.tsc1-site input,
.tsc1-site textarea,
.tsc1-site select { font: inherit; }
.tsc1-site button { color: inherit; }
.tsc1-site ::selection { background: var(--tsc1-lime); color: var(--tsc1-forest); }
.tsc1-container { width: min(calc(100% - 48px), var(--tsc1-container)); margin-inline: auto; }
.tsc1-main { position: relative; background: var(--tsc1-mint) !important; }
.tsc1-skip-link {
  position: fixed;
  left: 16px;
  top: -120px;
  z-index: 99999;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--tsc1-forest);
  color: #fff !important;
  text-decoration: none;
}
.tsc1-skip-link:focus { top: 16px; }

/* Header */
.tsc1-header {
  position: relative;
  z-index: 200;
  height: 92px;
  background: transparent;
  transition: background .22s ease, box-shadow .22s ease, backdrop-filter .22s ease;
}
.tsc1-header.is-scrolled {
  position: sticky;
  top: 0;
  background: rgba(220, 233, 215, .92);
  box-shadow: 0 12px 34px rgba(22, 72, 63, .08);
  backdrop-filter: blur(18px);
}
.admin-bar .tsc1-header.is-scrolled { top: 32px; }
.tsc1-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.tsc1-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  color: var(--tsc1-forest) !important;
  font-size: 23px;
  font-weight: 900;
  letter-spacing: -.04em;
  text-decoration: none;
}
.tsc1-brand__mark {
  width: 46px;
  height: 46px;
  display: block;
  flex: 0 0 46px;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(22,72,63,.14);
  border-radius: 15px;
  background: var(--tsc1-cream);
  box-shadow: 0 7px 18px rgba(22,72,63,.08);
}
.tsc1-brand__mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.tsc1-navigation { display: flex; align-items: center; gap: 30px; }
.tsc1-menu { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }
.tsc1-menu li { margin: 0; padding: 0; }
.tsc1-menu a {
  position: relative;
  color: var(--tsc1-forest) !important;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}
.tsc1-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--tsc1-coral);
  transition: right .18s ease;
}
.tsc1-menu a:hover::after,
.tsc1-menu .current-menu-item > a::after,
.tsc1-menu .current_page_item > a::after { right: 0; }
.tsc1-menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  padding: 8px;
  font-weight: 850;
  cursor: pointer;
}
.tsc1-menu-toggle__icon { width: 27px; height: 18px; display: grid; align-content: space-between; }
.tsc1-menu-toggle__icon i { display: block; height: 2px; border-radius: 2px; background: currentColor; }

/* Buttons */
.tsc1-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 49px;
  padding: 13px 22px;
  border: 1.5px solid transparent;
  border-radius: 15px;
  color: var(--tsc1-forest) !important;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  text-decoration: none !important;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.tsc1-button:hover { transform: translateY(-2px); }
.tsc1-button:focus-visible { outline: 3px solid var(--tsc1-lime); outline-offset: 3px; }
.tsc1-button--dark { background: var(--tsc1-forest); color: #fff !important; }
.tsc1-button--coral { background: var(--tsc1-coral); box-shadow: 0 9px 0 rgba(22, 72, 63, .09); }
.tsc1-button--light { border-color: rgba(22,72,63,.3); background: rgba(255,255,255,.52); }
.tsc1-button--cream { background: var(--tsc1-cream); color: var(--tsc1-forest) !important; }
.tsc1-button--large { min-height: 59px; padding: 17px 25px; font-size: 16px; }
.tsc1-button--full { width: 100%; }
.tsc1-header__cta { min-height: 50px; }

/* Shared typography */
.tsc1-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border: 1px solid rgba(22,72,63,.2);
  border-radius: 999px;
  background: rgba(255,255,255,.47);
  color: var(--tsc1-forest);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.25px;
  line-height: 1.2;
  text-transform: uppercase;
}
.tsc1-eyebrow--dark { border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.07); color: #fff; }
.tsc1-kicker {
  display: block;
  margin-bottom: 11px;
  color: #d85e49;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.tsc1-site h1,
.tsc1-site h2,
.tsc1-site h3,
.tsc1-site p { overflow-wrap: anywhere; }
.tsc1-site h1,
.tsc1-site h2,
.tsc1-site h3 { color: var(--tsc1-forest); }
.tsc1-site h2 {
  margin: 0;
  font-size: clamp(38px, 4.8vw, 62px);
  line-height: 1.02;
  letter-spacing: -.055em;
}
.tsc1-site h3 { line-height: 1.08; letter-spacing: -.035em; }
.tsc1-text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  color: var(--tsc1-forest) !important;
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

/* Decorative circles */
.tsc1-orb { position: absolute; display: block; border-radius: 50%; pointer-events: none; }
.tsc1-orb--peach { width: 440px; height: 440px; top: -250px; right: -72px; background: var(--tsc1-peach); opacity: .84; }
.tsc1-orb--lime { width: 310px; height: 310px; left: -225px; bottom: -75px; background: var(--tsc1-lime); opacity: .9; }
.tsc1-orb--page-left { top: 390px; bottom: auto; }

/* Homepage hero */
.tsc1-hero { position: relative; padding: 74px 0 62px; }
.tsc1-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 72px;
  align-items: center;
}
.tsc1-hero__copy { min-width: 0; }
.tsc1-hero h1 {
  max-width: 720px;
  margin: 29px 0 24px;
  color: var(--tsc1-forest);
  font-size: clamp(62px, 7.1vw, 100px);
  line-height: .91;
  letter-spacing: -.078em;
}
.tsc1-hero__lead {
  max-width: 690px;
  margin: 0;
  color: var(--tsc1-text-soft);
  font-size: clamp(18px, 1.8vw, 21px);
  line-height: 1.55;
}
.tsc1-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.tsc1-hero__visual { position: relative; padding-bottom: 48px; }
.tsc1-photo-frame {
  overflow: hidden;
  min-height: 455px;
  border: 1px solid rgba(22,72,63,.16);
  border-radius: 38px;
  background: #d8dfcf;
  box-shadow: var(--tsc1-shadow);
}
.tsc1-photo-frame img { width: 100%; height: 455px; object-fit: cover; object-position: 50% 50%; }
.tsc1-hero-card {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 0;
  display: flex;
  align-items: center;
  padding: 20px 25px;
  border-radius: 23px;
  background: var(--tsc1-forest);
  box-shadow: 0 20px 44px rgba(22,72,63,.2);
}
.tsc1-hero-card strong { color: #fff; font-size: 19px; letter-spacing: -.02em; }
.tsc1-values-row {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 48px;
}
.tsc1-values-row span {
  padding: 9px 14px;
  border: 1px solid rgba(22,72,63,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.56);
  color: var(--tsc1-forest);
  font-size: 13px;
  font-weight: 800;
}

/* Sections */
.tsc1-section { position: relative; padding: 104px 0; }
.tsc1-section--cream { background: var(--tsc1-cream); }
.tsc1-section-copy > p { max-width: 680px; margin: 21px 0 0; color: var(--tsc1-text-soft); font-size: 18px; }
.tsc1-about-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 84px; align-items: center; }
.tsc1-identity-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  min-height: 0;
  padding: 30px;
  border: 1px solid var(--tsc1-border);
  border-radius: var(--tsc1-radius-xl);
  background: var(--tsc1-mint);
  box-shadow: var(--tsc1-shadow-small);
}
.tsc1-identity-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 27px;
}
.tsc1-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(280px, .78fr);
  gap: 65px;
  align-items: end;
  margin-bottom: 43px;
}
.tsc1-section-heading > p { margin: 0 0 7px; color: var(--tsc1-text-soft); font-size: 17px; }
.tsc1-step-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tsc1-step-card {
  position: relative;
  min-height: 300px;
  padding: 26px;
  border: 1px solid var(--tsc1-border);
  border-radius: 26px;
  background: rgba(255,255,255,.56);
  box-shadow: var(--tsc1-shadow-small);
}
.tsc1-step-card--peach { background: #f7d7c8; }
.tsc1-step-card--lime { background: #e9edc5; }
.tsc1-step-card--mint { background: #cfe2d8; }
.tsc1-step-card > span { color: #d95d48; font-size: 13px; font-weight: 900; }
.tsc1-step-card h3 { margin: 72px 0 13px; font-size: 28px; }
.tsc1-step-card p { margin: 0; color: var(--tsc1-text-soft); font-size: 14px; }
.tsc1-step-card::after { content: "↗"; position: absolute; top: 21px; right: 22px; font-size: 25px; font-weight: 700; }

/* Dark programme band */
.tsc1-programme-band {
  width: min(calc(100% - 54px), 1390px);
  margin: 0 auto 0;
  padding: 82px 0;
  border-radius: 40px;
  background: var(--tsc1-forest);
  color: #fff;
}
.tsc1-programme-band--page { margin-bottom: 0; }
.tsc1-programme-band__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: center; }
.tsc1-programme-band h2 { margin: 18px 0 21px; color: #fff; font-size: clamp(42px, 5vw, 64px); }
.tsc1-programme-band p { color: #c9ddd6; font-size: 17px; }
.tsc1-stat-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 29px 0; }
.tsc1-stat-row > div {
  min-width: 125px;
  display: grid;
  gap: 1px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 15px;
  background: rgba(255,255,255,.07);
}
.tsc1-stat-row strong { color: #fff; font-size: 20px; }
.tsc1-stat-row span { color: #bcd3cb; font-size: 12px; }
.tsc1-topic-list { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; list-style: none; margin: 0; padding: 0; }
.tsc1-topic-list li {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 16px;
  background: rgba(255,255,255,.065);
  color: #edf6f2;
  font-size: 13px;
}
.tsc1-topic-list b { color: #f6ae9c; font-size: 15px; }
.tsc1-two-column { display: grid; grid-template-columns: .86fr 1.14fr; gap: 82px; align-items: start; }
.tsc1-two-column--balanced { grid-template-columns: 1fr 1fr; }
.tsc1-two-column > div > p { color: var(--tsc1-text-soft); font-size: 17px; }
.tsc1-check-list { display: grid; gap: 13px; list-style: none; margin: 0; padding: 0; }
.tsc1-check-list li {
  position: relative;
  padding: 18px 21px 18px 59px;
  border: 1px solid var(--tsc1-border);
  border-radius: 18px;
  background: rgba(255,255,255,.58);
  color: var(--tsc1-text-soft);
}
.tsc1-check-list li::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 17px;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--tsc1-lime);
  color: var(--tsc1-forest);
  font-weight: 900;
}

/* Team */
.tsc1-team-section { padding-top: 94px; }
.tsc1-team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.tsc1-team-card {
  min-height: 340px;
  display: grid;
  grid-template-columns: 175px 1fr;
  gap: 26px;
  padding: 25px;
  border: 1px solid var(--tsc1-border);
  border-radius: 30px;
  background: rgba(255,255,255,.59);
  box-shadow: var(--tsc1-shadow-small);
}
.tsc1-team-card__photo,
.tsc1-team-card__placeholder {
  width: 175px;
  height: 100%;
  min-height: 288px;
  border-radius: 21px;
  object-fit: cover;
}
.tsc1-team-card__placeholder {
  display: grid;
  place-items: center;
  background: var(--tsc1-lime);
  color: var(--tsc1-forest);
  font-size: 47px;
  font-weight: 900;
  letter-spacing: -.09em;
}
.tsc1-team-card__placeholder--peach { background: var(--tsc1-peach); }
.tsc1-team-card__role { color: #d95d48; font-size: 11px; font-weight: 900; letter-spacing: 1.1px; text-transform: uppercase; }
.tsc1-team-card h3 { margin: 7px 0 13px; font-size: 31px; }
.tsc1-team-card p { margin: 0; color: var(--tsc1-text-soft); font-size: 14px; }
.tsc1-placeholder-copy { font-style: italic; opacity: .76; }

/* CTA */
.tsc1-cta-panel {
  width: min(calc(100% - 48px), 1290px);
  margin: 0 auto 78px;
  padding: 48px 0;
  border: 1px solid var(--tsc1-border);
  border-radius: 32px;
  background: var(--tsc1-cream);
}
.tsc1-cta-panel__inner { display: flex; align-items: center; justify-content: space-between; gap: 45px; }
.tsc1-cta-panel h2 { font-size: clamp(38px, 4vw, 52px); }
.tsc1-cta-panel p { margin: 9px 0 0; color: var(--tsc1-text-soft); }

/* Page hero */
.tsc1-page-hero { position: relative; padding: 92px 0 86px; }
.tsc1-page-hero--compact { padding-bottom: 72px; }
.tsc1-page-hero__inner { position: relative; z-index: 2; }
.tsc1-page-hero h1 {
  max-width: 1030px;
  margin: 24px 0 22px;
  color: var(--tsc1-forest);
  font-size: clamp(64px, 8.4vw, 112px);
  line-height: .91;
  letter-spacing: -.078em;
}
.tsc1-page-hero p { max-width: 830px; margin: 0; color: var(--tsc1-text-soft); font-size: 20px; }
.tsc1-page-facts { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 31px; }
.tsc1-page-facts span {
  padding: 10px 14px;
  border: 1px solid var(--tsc1-border);
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  font-size: 13px;
  font-weight: 850;
}

/* Programme page */
.tsc1-week-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.tsc1-week-grid article {
  min-height: 250px;
  padding: 29px;
  border: 1px solid var(--tsc1-border);
  border-radius: 26px;
  background: rgba(255,255,255,.62);
}
.tsc1-week-grid article:nth-child(4n+2),
.tsc1-week-grid article:nth-child(4n+3) { background: #f7d9cf; }
.tsc1-week-grid article:nth-child(4n+4) { background: #e8edc5; }
.tsc1-week-grid article > span { color: #d95d48; font-size: 13px; font-weight: 900; }
.tsc1-week-grid h3 { margin: 44px 0 11px; font-size: 30px; }
.tsc1-week-grid p { margin: 0; color: var(--tsc1-text-soft); font-size: 14px; }
.tsc1-highlight-stack { display: grid; gap: 13px; }
.tsc1-highlight-stack article {
  padding: 24px;
  border: 1px solid var(--tsc1-border);
  border-radius: 21px;
  background: rgba(255,255,255,.57);
}
.tsc1-highlight-stack article:nth-child(2) { background: #f7d9cf; }
.tsc1-highlight-stack article:nth-child(3) { background: #e9edc5; }
.tsc1-highlight-stack span { color: #d95d48; font-size: 12px; font-weight: 900; }
.tsc1-highlight-stack h3 { margin: 7px 0; font-size: 27px; }
.tsc1-highlight-stack p { margin: 0; font-size: 14px; }
.tsc1-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.tsc1-info-grid article {
  min-height: 140px;
  display: grid;
  align-content: space-between;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
  background: rgba(255,255,255,.07);
}
.tsc1-info-grid span { color: #bcd3cb; font-size: 13px; }
.tsc1-info-grid strong { color: #fff; font-size: 27px; letter-spacing: -.04em; }
.tsc1-programme-date { margin-top: 22px; }

/* Registration */
.tsc1-registration-section { padding-top: 70px; }
.tsc1-registration-layout { display: grid; grid-template-columns: .76fr 1.24fr; gap: 52px; align-items: start; }
.tsc1-registration-aside { position: sticky; top: 125px; }
.tsc1-registration-aside h2 { font-size: 46px; }
.tsc1-mini-steps { display: grid; gap: 0; list-style: none; margin: 29px 0 0; padding: 0; border-top: 1px solid var(--tsc1-border); }
.tsc1-mini-steps li { display: grid; grid-template-columns: 42px 1fr; gap: 15px; padding: 18px 0; border-bottom: 1px solid var(--tsc1-border); }
.tsc1-mini-steps > li > span { color: #d95d48; font-size: 12px; font-weight: 900; }
.tsc1-mini-steps strong { display: block; }
.tsc1-mini-steps p { margin: 3px 0 0; color: var(--tsc1-text-soft); font-size: 13px; }
.tsc1-note-card { margin-top: 22px; padding: 24px; border-radius: 22px; background: var(--tsc1-forest); color: #fff; }
.tsc1-note-card > span { display: block; color: #f6b09e; font-size: 12px; font-weight: 900; letter-spacing: 1px; text-transform: uppercase; }
.tsc1-note-card > strong { display: block; margin: 10px 0 3px; color: #fff; font-size: 39px; letter-spacing: -.06em; }
.tsc1-note-card p { color: #c9ddd6; font-size: 14px; }
.tsc1-note-card small { color: #fff; }
.tsc1-form-card {
  padding: 37px;
  border: 1px solid var(--tsc1-border);
  border-radius: 32px;
  background: rgba(255,255,255,.76);
  box-shadow: var(--tsc1-shadow);
}
.tsc1-form-card__heading { margin-bottom: 29px; }
.tsc1-form-step { color: #d95d48; font-size: 11px; font-weight: 900; letter-spacing: 1.25px; text-transform: uppercase; }
.tsc1-form-card h2 { margin: 8px 0 6px; font-size: 44px; }
.tsc1-form-card__heading p { margin: 0; color: var(--tsc1-text-soft); }
.tsc1-form { display: grid; gap: 21px; }
.tsc1-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.tsc1-field { display: grid; gap: 8px; }
.tsc1-field--full { grid-column: 1 / -1; }
.tsc1-field > span { font-size: 13px; font-weight: 900; }
.tsc1-field small { color: var(--tsc1-text-soft); font-size: 12px; }
.tsc1-field input,
.tsc1-field textarea {
  width: 100%;
  border: 1px solid rgba(22,72,63,.27);
  border-radius: 14px;
  background: #fff;
  padding: 13px 14px;
  color: var(--tsc1-forest);
  outline: none;
  transition: border .18s ease, box-shadow .18s ease;
}
.tsc1-field textarea { resize: vertical; }
.tsc1-field input:focus,
.tsc1-field textarea:focus { border-color: var(--tsc1-forest); box-shadow: 0 0 0 3px rgba(203,217,138,.48); }
.tsc1-choice-field { display: grid; gap: 12px; margin: 0; padding: 18px 19px; border: 1px solid rgba(22,72,63,.27); border-radius: 16px; background: rgba(255,255,255,.56); }
.tsc1-choice-field legend { padding: 0 7px; font-size: 13px; font-weight: 900; }
.tsc1-choice-field label { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; color: var(--tsc1-text-soft); font-size: 14px; cursor: pointer; }
.tsc1-choice-field input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--tsc1-forest); }
.tsc1-confirmations { display: grid; gap: 12px; margin: 0; padding: 21px; border: 1px solid var(--tsc1-border); border-radius: 18px; }
.tsc1-confirmations legend { padding: 0 7px; font-weight: 900; }
.tsc1-confirmations label { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; color: var(--tsc1-text-soft); font-size: 14px; cursor: pointer; }
.tsc1-confirmations input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--tsc1-forest); }
.tsc1-privacy-note { margin: 0; color: var(--tsc1-text-soft); font-size: 12px; }
.tsc1-privacy-note a,
.tsc1-confirmations a { color: #c8503e; font-weight: 800; text-decoration: underline; text-underline-offset: 2px; }
.tsc1-honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.tsc1-form-message { display: grid; gap: 3px; margin-bottom: 23px; padding: 17px 19px; border-radius: 16px; }
.tsc1-form-message--success { background: #d9eadb; }
.tsc1-form-message--error { background: #f8d7cf; }

/* Contact */
.tsc1-contact-layout { display: grid; grid-template-columns: .88fr 1.12fr; gap: 74px; align-items: start; }
.tsc1-contact-details h2 { font-size: 56px; }
.tsc1-contact-list { display: grid; margin-top: 31px; border-top: 1px solid var(--tsc1-border); }
.tsc1-contact-list > div { display: grid; grid-template-columns: 125px 1fr; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--tsc1-border); }
.tsc1-contact-list span { color: var(--tsc1-text-soft); }
.tsc1-contact-list a { font-weight: 900; }
.tsc1-public-note { margin-top: 23px; padding: 17px; border-radius: 15px; background: rgba(255,255,255,.55); color: var(--tsc1-text-soft); font-size: 14px; }
.tsc1-form-card--contact .tsc1-form { gap: 18px; }

/* Generic content */
.tsc1-prose { max-width: 900px; }
.tsc1-prose > *:first-child { margin-top: 0; }
.tsc1-prose h2 { margin: 42px 0 13px; font-size: clamp(30px, 4vw, 45px); }
.tsc1-prose h3 { margin: 28px 0 10px; font-size: 23px; }
.tsc1-prose p,
.tsc1-prose li { color: var(--tsc1-text-soft); }
.tsc1-prose ul { display: grid; gap: 8px; padding-left: 22px; }
.tsc1-prose a { color: #c8503e; font-weight: 800; }
.tsc1-policy-meta { margin: 0 0 30px; color: var(--tsc1-text-soft); font-size: 14px; }
.tsc1-policy-highlight { margin: 27px 0; padding: 22px 24px; border: 1px solid var(--tsc1-border); border-radius: 20px; background: rgba(255,255,255,.7); }
.tsc1-policy-highlight p:last-child { margin-bottom: 0; }

/* Footer */
.tsc1-footer { border-top: 1px solid var(--tsc1-border); background: var(--tsc1-mint); }
.tsc1-footer__inner {
  min-height: 128px;
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 28px;
  color: var(--tsc1-text-soft);
  font-size: 13px;
}
.tsc1-footer__brand strong,
.tsc1-footer__brand span { display: block; }
.tsc1-footer__brand strong { color: var(--tsc1-forest); font-size: 16px; }
.tsc1-footer__nav,
.tsc1-footer__social { display: flex; flex-wrap: wrap; gap: 18px; }
.tsc1-footer a { text-decoration: none; }
.tsc1-footer a:hover { text-decoration: underline; }
.tsc1-footer__copy { justify-self: end; }

@media (max-width: 1120px) {
  .tsc1-hero__grid { gap: 42px; }
  .tsc1-hero h1 { font-size: clamp(62px, 8vw, 88px); }
  .tsc1-step-grid { grid-template-columns: 1fr 1fr; }
  .tsc1-programme-band__grid { grid-template-columns: 1fr; }
  .tsc1-team-card { grid-template-columns: 135px 1fr; }
  .tsc1-team-card__photo,
  .tsc1-team-card__placeholder { width: 135px; }
  .tsc1-footer__inner { grid-template-columns: 1fr auto auto; }
  .tsc1-footer__social { display: none; }
}

@media (max-width: 960px) {
  .admin-bar .tsc1-header.is-scrolled { top: 46px; }
  .tsc1-menu-toggle { display: inline-flex; }
  .tsc1-navigation {
    position: fixed;
    inset: 90px 18px auto;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 22px;
    max-height: calc(100vh - 110px);
    overflow: auto;
    padding: 25px;
    border: 1px solid var(--tsc1-border);
    border-radius: 24px;
    background: rgba(247,246,239,.985);
    box-shadow: var(--tsc1-shadow);
  }
  .admin-bar .tsc1-navigation { inset-block-start: 136px; }
  .tsc1-navigation.is-open { display: flex; }
  .tsc1-menu { align-items: stretch; flex-direction: column; gap: 0; }
  .tsc1-menu a { display: block; padding: 12px 3px; font-size: 18px; }
  .tsc1-menu a::after { display: none; }
  .tsc1-header__cta { width: 100%; }
  .tsc1-hero__grid,
  .tsc1-about-grid,
  .tsc1-two-column,
  .tsc1-two-column--balanced,
  .tsc1-registration-layout,
  .tsc1-contact-layout { grid-template-columns: 1fr; }
  .tsc1-hero__grid { gap: 55px; }
  .tsc1-hero__copy { text-align: center; }
  .tsc1-hero h1,
  .tsc1-hero__lead { margin-left: auto; margin-right: auto; }
  .tsc1-actions { justify-content: center; }
  .tsc1-registration-aside { position: static; }
  .tsc1-section-heading { grid-template-columns: 1fr; gap: 18px; }
  .tsc1-about-grid { gap: 48px; }
  .tsc1-team-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .tsc1-container { width: min(calc(100% - 30px), var(--tsc1-container)); }
  .tsc1-header { height: 78px; }
  .tsc1-navigation { inset-block-start: 78px; }
  .admin-bar .tsc1-navigation { inset-block-start: 124px; }
  .tsc1-brand { font-size: 20px; }
  .tsc1-brand__mark { width: 40px; height: 40px; flex-basis: 40px; border-radius: 13px; }
  .tsc1-menu-toggle__label { display: none; }
  .tsc1-hero { padding: 49px 0 52px; }
  .tsc1-hero h1 { font-size: clamp(55px, 15.5vw, 75px); }
  .tsc1-hero__lead { font-size: 17px; }
  .tsc1-photo-frame,
  .tsc1-photo-frame img { min-height: 390px; height: 390px; }
  .tsc1-hero-card { left: 17px; right: 17px; padding: 18px; }
  .tsc1-hero-card strong { font-size: 16px; }
  .tsc1-values-row { margin-top: 35px; }
  .tsc1-section { padding: 72px 0; }
  .tsc1-identity-card { min-height: 0; padding: 19px; }
  .tsc1-identity-card img { height: 100%; }
  .tsc1-step-grid,
  .tsc1-week-grid,
  .tsc1-topic-list,
  .tsc1-info-grid { grid-template-columns: 1fr; }
  .tsc1-step-card { min-height: 245px; }
  .tsc1-step-card h3 { margin-top: 52px; }
  .tsc1-programme-band { width: calc(100% - 24px); padding: 57px 0; border-radius: 29px; }
  .tsc1-team-card { grid-template-columns: 1fr; }
  .tsc1-team-card__photo,
  .tsc1-team-card__placeholder { width: 100%; height: 260px; min-height: 0; }
  .tsc1-page-hero { padding: 62px 0 58px; }
  .tsc1-page-hero h1 { font-size: clamp(58px, 15vw, 78px); }
  .tsc1-page-hero p { font-size: 17px; }
  .tsc1-registration-section { padding-top: 52px; }
  .tsc1-form-card { padding: 25px 19px; border-radius: 24px; }
  .tsc1-form-grid { grid-template-columns: 1fr; }
  .tsc1-field--full { grid-column: auto; }
  .tsc1-contact-list > div { grid-template-columns: 1fr; gap: 4px; }
  .tsc1-cta-panel { width: calc(100% - 30px); padding: 38px 0; }
  .tsc1-cta-panel__inner { align-items: stretch; flex-direction: column; }
  .tsc1-footer__inner { grid-template-columns: 1fr; gap: 18px; padding: 31px 0; text-align: center; }
  .tsc1-footer__nav { justify-content: center; }
  .tsc1-footer__copy { justify-self: center; }
}

@media (max-width: 480px) {
  .tsc1-actions { align-items: stretch; flex-direction: column; }
  .tsc1-actions .tsc1-button { width: 100%; }
  .tsc1-values-row span { font-size: 12px; }
  .tsc1-photo-frame,
  .tsc1-photo-frame img { min-height: 340px; height: 340px; }
  .tsc1-identity-card { min-height: 0; }
  .tsc1-identity-card img { height: 100%; }
  .tsc1-team-card { padding: 19px; }
  .tsc1-form-card h2 { font-size: 37px; }
  .tsc1-confirmations { padding: 17px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
