:root {
  --ink: #30251e;
  --ink-deep: #211813;
  --ink-soft: #4d3d33;
  --surface: #fff6ee;
  --surface-2: #f7e8dc;
  --paper: #fffbf7;
  --peach: #fadec6;
  --peach-soft: #fff1e5;
  --peach-strong: #e7b996;
  --taupe: #756557;
  --muted: #8d7c6e;
  --line: rgba(48, 37, 30, .15);
  --line-light: rgba(255, 251, 247, .17);
  --shadow: 0 24px 70px rgba(48, 37, 30, .10);
  --radius: 24px;
  --shell: min(1240px, calc(100vw - 48px));
  --header: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--peach); color: var(--ink); }

.screen-reader-text,
.tt-skip {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.tt-skip:focus {
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
  padding: 12px 18px;
  z-index: 9999;
  background: var(--paper);
  color: var(--ink);
}
.tt-shell { width: var(--shell); margin-inline: auto; }
.tt-eyebrow {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 850;
  font-size: .72rem;
  color: var(--taupe);
  margin: 0 0 18px;
}

/* HEADER */
.tt-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  color: var(--ink);
  background: rgba(255, 251, 247, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: color .28s ease, box-shadow .28s ease, background .28s ease, border-color .28s ease, backdrop-filter .28s ease;
}
.tt-header.is-scrolled {
  background: rgba(255, 251, 247, .985);
  border-bottom-color: var(--line);
  box-shadow: 0 12px 40px rgba(48,37,30,.07);
}
/* Only the home page starts with the navigation floating on top of the hero. */
body.home:not(.menu-open) .tt-header:not(.is-scrolled) {
  color: var(--paper);
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.tt-header__inner {
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.tt-brand { display: flex; align-items: center; min-width: 160px; }
.tt-brand .custom-logo,
.tt-brand__fallback {
  width: auto;
  height: 62px;
  max-width: 180px;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: filter .28s ease, opacity .28s ease;
}
body.home:not(.menu-open) .tt-header:not(.is-scrolled) .tt-brand .custom-logo,
body.home:not(.menu-open) .tt-header:not(.is-scrolled) .tt-brand__fallback {
  mix-blend-mode: normal;
  filter: brightness(0) invert(1) sepia(.08) drop-shadow(0 2px 10px rgba(255,251,247,.16));
}
.tt-nav { display: flex; align-items: center; gap: 28px; }
.tt-nav__list { display: flex; gap: 26px; align-items: center; list-style: none; margin: 0; padding: 0; }
.tt-nav__list a { font-size: .9rem; font-weight: 750; transition: color .2s ease; }
.tt-nav__list a:hover { color: var(--taupe); }
body.home:not(.menu-open) .tt-header:not(.is-scrolled) .tt-nav__list a:hover { color: var(--peach); }
body.home:not(.menu-open) .tt-header:not(.is-scrolled) .tt-nav > .tt-btn--small {
  background: var(--peach);
  color: var(--ink);
  border-color: var(--peach);
}
body.home:not(.menu-open) .tt-header:not(.is-scrolled) .tt-nav > .tt-btn--small:hover {
  background: var(--paper);
  border-color: var(--paper);
}
.tt-menu-toggle { display: none; background: none; border: 0; padding: 8px; color: inherit; }
.tt-menu-toggle span:not(.screen-reader-text) { display: block; width: 28px; height: 2px; background: currentColor; margin: 6px; }

/* BUTTONS */
.tt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  font-weight: 850;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.tt-btn:hover { transform: translateY(-2px); background: var(--ink-soft); border-color: var(--ink-soft); }
.tt-btn--small { min-height: 43px; padding-inline: 18px; font-size: .86rem; }
.tt-btn--ghost { background: transparent; color: var(--paper); border-color: rgba(255,251,247,.5); }
.tt-btn--ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.tt-btn--light { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.tt-btn--light:hover { background: var(--peach); border-color: var(--peach); }

/* HERO */
.tt-hero {
  min-height: clamp(620px, 78svh, 820px);
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 82% 24%, rgba(250,222,198,.22), transparent 28%),
    linear-gradient(135deg, #3a2b23 0%, var(--ink-deep) 76%);
}
.tt-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(33,24,19,.94) 0%, rgba(48,37,30,.72) 48%, rgba(48,37,30,.24) 100%),
    var(--hero-image, linear-gradient(135deg, transparent, transparent));
  background-size: cover;
  background-position: center;
  opacity: .98;
}
.tt-hero::after {
  content: "";
  position: absolute;
  width: min(48vw, 720px);
  aspect-ratio: 1;
  right: -12vw;
  top: 16vh;
  border: 1px solid rgba(250,222,198,.18);
  border-radius: 50%;
  box-shadow: 0 0 0 72px rgba(250,222,198,.025), 0 0 0 144px rgba(250,222,198,.018);
}
.tt-hero__noise {
  position: absolute;
  inset: 0;
  opacity: .07;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}
.tt-hero__content { position: relative; z-index: 2; padding-top: calc(var(--header) + clamp(36px,5vh,58px)); padding-bottom: clamp(50px,7vh,74px); }
.tt-hero .tt-eyebrow { color: var(--peach); }
.tt-hero__title {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(4rem, 8vw, 7.7rem);
  letter-spacing: -.065em;
  line-height: .84;
  max-width: 1050px;
  margin: 0;
  text-wrap: balance;
}
.tt-hero__lead { font-size: clamp(1.08rem,1.7vw,1.45rem); max-width: 650px; color: #f5e9df; margin: 24px 0 26px; }
.tt-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.tt-hero__actions .tt-btn:first-child { background: var(--peach); border-color: var(--peach); color: var(--ink); }
.tt-hero__actions .tt-btn:first-child:hover { background: #f5cfb1; border-color: #f5cfb1; }
.tt-hero__scroll { position: absolute; right: 4vw; bottom: 30px; z-index: 2; font-size: .75rem; text-transform: uppercase; letter-spacing: .15em; color: #dbc9bc; }
.tt-hero__scroll span { display: block; text-align: center; font-size: 1.4rem; animation: bob 1.8s ease-in-out infinite; }
@keyframes bob { 50% { transform: translateY(7px); } }

/* GENERIC SECTIONS */
.tt-section { padding: clamp(90px, 11vw, 160px) 0; }
.tt-section-head { max-width: 860px; margin-bottom: 60px; }
.tt-section-head h1,
.tt-section-head h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem,7vw,6.8rem);
  font-weight: 500;
  line-height: .94;
  letter-spacing: -.055em;
  margin: 0;
}
.tt-section-head h2 em { font-weight: 400; color: var(--taupe); }
.tt-section-head--row { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.tt-section-head--row h2 { font-size: clamp(3rem,6vw,5.5rem); }
.tt-text-link { font-weight: 800; border-bottom: 1px solid currentColor; padding-bottom: 4px; white-space: nowrap; }

/* VALUES */
.tt-values { padding: clamp(100px,12vw,180px) 0; background: var(--peach-soft); }
.tt-values .tt-section-head { color: var(--ink); }
.tt-values__layout { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(340px,.7fr); gap: 8vw; align-items: start; }
.tt-values__rail { border-top: 1px solid var(--line); }
.tt-value {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid var(--line);
  opacity: .34;
  transform: scale(.96);
  transform-origin: left center;
  transition: .5s ease;
  padding: 70px 0;
}
.tt-value.is-active { opacity: 1; transform: scale(1); }
.tt-value__number { font: italic 1.1rem Georgia,serif; color: var(--taupe); margin-bottom: 24px; }
.tt-value h3 { font-family: Georgia,"Times New Roman",serif; font-weight: 500; font-size: clamp(3rem,6vw,6.2rem); line-height: .9; letter-spacing: -.055em; margin: 0 0 28px; max-width: 760px; }
.tt-value p { font-size: clamp(1.05rem,1.6vw,1.3rem); color: var(--taupe); max-width: 700px; margin: 0; }
.tt-values__visual {
  position: sticky;
  top: calc(var(--header) + 40px);
  height: calc(100vh - var(--header) - 80px);
  min-height: 540px;
  color: var(--paper);
  background: var(--ink);
  border: 1px solid rgba(48,37,30,.15);
  border-radius: 34px;
  overflow: hidden;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow);
}
.tt-values__visual::after {
  content: "";
  position: absolute;
  inset: 10% -8% auto auto;
  width: 92%;
  aspect-ratio: 1;
  background: url("../img/tt-logo.png") center/contain no-repeat;
  mix-blend-mode: screen;
  opacity: .09;
  filter: sepia(1);
}
.tt-values__orb {
  position: absolute;
  width: 105%;
  aspect-ratio: 1;
  border-radius: 50%;
  left: 28%;
  top: -24%;
  background: radial-gradient(circle at 30% 30%, #fff3e8, var(--peach) 34%, #8e6953 66%, transparent 67%);
  opacity: .88;
  transition: .6s ease;
}
.tt-values__active-number { position: absolute; top: 35px; left: 40px; font: italic 1.4rem Georgia,serif; color: var(--peach); }
.tt-values__visual strong { position: relative; z-index: 2; font-family: Georgia,"Times New Roman",serif; font-weight: 500; font-size: clamp(2.2rem,4vw,4.6rem); line-height: .92; letter-spacing: -.05em; max-width: 440px; }
.tt-values__progress { position: relative; z-index: 2; margin-top: 32px; height: 3px; background: rgba(255,255,255,.15); }
.tt-values__progress i { display: block; height: 100%; width: 20%; background: var(--peach); transition: width .4s ease; }

/* GROUPS / CARDS */
.tt-groups { background: var(--paper); }
.tt-card-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 20px; }
.tt-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  min-width: 0;
  transition: transform .3s ease, box-shadow .3s ease;
}
.tt-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.tt-card__media { aspect-ratio: 4/3; overflow: hidden; background: linear-gradient(135deg,var(--peach),#e4b995); display: grid; place-items: center; font: italic 5rem Georgia,serif; color: rgba(48,37,30,.28); }
.tt-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.tt-card:hover .tt-card__media img { transform: scale(1.04); }
.tt-card__body { padding: 25px; }
.tt-card__meta { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--taupe); }
.tt-card h2,.tt-card h3 { font-family: Georgia,"Times New Roman",serif; font-weight: 500; font-size: 1.72rem; line-height: 1.05; margin: 10px 0 16px; }
.tt-card p { color: var(--taupe); }
.tt-card__body > span { font-weight: 800; font-size: .86rem; }
.tt-empty { border: 1px dashed var(--line); border-radius: 20px; padding: 28px; color: var(--taupe); grid-column: 1/-1; background: var(--surface); }

/* SCHEDULE TEASER */
.tt-schedule-teaser { padding-top: 40px; background: var(--paper); }
.tt-schedule-teaser__inner {
  background: var(--ink);
  color: var(--paper);
  border-radius: 34px;
  padding: clamp(34px,6vw,72px);
  display: grid;
  grid-template-columns: 1.3fr .75fr auto;
  align-items: end;
  gap: 45px;
  box-shadow: var(--shadow);
}
.tt-schedule-teaser h2 { font-family: Georgia,"Times New Roman",serif; font-weight: 500; font-size: clamp(2.5rem,5vw,5.2rem); line-height: .94; letter-spacing: -.055em; margin: 0; }
.tt-schedule-teaser .tt-eyebrow { color: var(--peach); }
.tt-schedule-teaser p { font-size: 1.1rem; color: #e7d8cd; }

/* NEWS */
.tt-news { background: var(--peach); color: var(--ink); }
.tt-news .tt-eyebrow { color: var(--ink-soft); }
.tt-news-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 20px; }
.tt-news-card { border-top: 1px solid rgba(48,37,30,.28); padding-top: 16px; }
.tt-news-card__media { display: block; aspect-ratio: 16/11; border-radius: 18px; overflow: hidden; background: rgba(255,251,247,.5); margin-bottom: 20px; }
.tt-news-card__media img { width: 100%; height: 100%; object-fit: cover; }
.tt-news-card time { font-size: .76rem; text-transform: uppercase; letter-spacing: .1em; color: var(--taupe); }
.tt-news-card h2,.tt-news-card h3 { font-family: Georgia,"Times New Roman",serif; font-weight: 500; font-size: clamp(1.5rem,2vw,2.15rem); line-height: 1.05; margin: 10px 0; }
.tt-news-card p { color: var(--ink-soft); }

/* CTA */
.tt-cta { color: var(--paper); background: radial-gradient(circle at 75% 20%,rgba(250,222,198,.17),transparent 30%), var(--ink-deep); }
.tt-cta .tt-eyebrow { color: var(--peach); }
.tt-cta__inner { text-align: center; }
.tt-cta h2 { font-family: Georgia,"Times New Roman",serif; font-style: italic; font-weight: 500; font-size: clamp(4rem,9vw,9rem); line-height: .84; letter-spacing: -.065em; margin: 0 0 45px; }
.tt-cta .tt-btn { background: var(--peach); color: var(--ink); border-color: var(--peach); }

/* SUPPORTERS + FOOTER */
.tt-supporters { padding: 40px 0; border-bottom: 1px solid var(--line-light); border-top: 1px solid var(--line-light); overflow: hidden; background: var(--ink); color: var(--paper); }
.tt-supporters__label { text-transform: uppercase; letter-spacing: .15em; font-size: .72rem; font-weight: 850; color: var(--peach); margin-bottom: 25px; }
.tt-marquee { overflow: hidden; }
.tt-marquee__track { display: flex; width: max-content; animation: marquee 32s linear infinite; }
.tt-marquee:hover .tt-marquee__track { animation-play-state: paused; }
.tt-supporter { width: 220px; height: 90px; display: grid; place-items: center; padding: 18px 30px; border-right: 1px solid var(--line-light); }
.tt-supporter img { max-height: 54px; width: auto; filter: grayscale(1) sepia(.4) brightness(1.7); opacity: .85; }
.tt-supporter span { font-weight: 850; font-size: 1.05rem; color: #ead8ca; }
@keyframes marquee { to { transform: translateX(-50%); } }

.tt-footer { background: var(--ink-deep); color: var(--paper); padding-bottom: 22px; }
.tt-footer__grid { padding: 70px 0; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 7vw; }
.tt-footer__brand .custom-logo,
.tt-footer__fallback {
  width: auto;
  max-width: 250px;
  max-height: 118px;
  object-fit: contain;
  background: var(--paper);
  border-radius: 18px;
  padding: 10px 14px;
}
.tt-footer__brand p { max-width: 330px; color: #cdbdaf; }
.tt-footer address { font-style: normal; color: #eadfd6; }
.tt-footer .tt-eyebrow { color: var(--peach); }
.tt-footer address a:hover,.tt-socials a:hover,.tt-footer-menu a:hover { color: var(--peach); }
.tt-socials { display: flex; gap: 16px; margin-top: 18px; font-weight: 800; }
.tt-footer-menu { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 8px; color: #eadfd6; }
.tt-footer__bottom { border-top: 1px solid var(--line-light); padding-top: 22px; color: #a9988a; font-size: .8rem; }

/* CONTENT */
.tt-single { padding: calc(var(--header) + 80px) 0 120px; background: var(--paper); }
.tt-single__shell { max-width: 1000px; }
.tt-single__head { margin-bottom: 50px; }
.tt-single__head h1 { font-family: Georgia,"Times New Roman",serif; font-weight: 500; font-size: clamp(3.4rem,8vw,7.5rem); line-height: .9; letter-spacing: -.06em; margin: 0; }
.tt-single__head time { display: block; margin-top: 18px; color: var(--taupe); }
.tt-single__hero { border-radius: 30px; overflow: hidden; margin-bottom: 50px; }
.tt-single__hero img { width: 100%; }
.tt-prose { max-width: 790px; font-size: 1.08rem; }
.tt-prose > * + * { margin-top: 1.3em; }
.tt-prose h2,.tt-prose h3 { font-family: Georgia,"Times New Roman",serif; font-weight: 500; line-height: 1.1; letter-spacing: -.035em; margin-top: 2.2em; }
.tt-prose h2 { font-size: 2.4rem; }
.tt-prose a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--peach-strong); text-decoration-thickness: 2px; text-underline-offset: 3px; }
.tt-prose--after { margin-top: 70px; }
.tt-content { padding-top: calc(var(--header) + 80px); background: var(--paper); min-height: 70vh; }

/* GROUP-FIRST SCHEDULE */
.tt-home-schedule { background: var(--peach-soft); }
.tt-home-schedule__intro { max-width: 680px; margin: -22px 0 36px; color: var(--taupe); font-size: 1.02rem; }
.tt-home-schedule__footer { display: flex; justify-content: center; margin-top: 34px; }
.tt-group-schedule { --slot: var(--peach-strong); }
.tt-group-schedule__nav {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 0 18px;
  margin: 0 0 28px;
  scrollbar-width: thin;
  scroll-snap-type: x proximity;
}
.tt-group-schedule__nav a {
  flex: 0 0 auto;
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  background: var(--paper);
  font-size: .8rem;
  font-weight: 780;
  white-space: nowrap;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.tt-group-schedule__nav a:hover { background: var(--peach); border-color: rgba(48,37,30,.22); transform: translateY(-1px); }
.tt-group-schedule__grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.tt-group-schedule.is-compact .tt-group-schedule__grid { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; }
.tt-group-schedule__card {
  --slot: var(--peach-strong);
  min-width: 0;
  border: 1px solid var(--line);
  border-top: 4px solid var(--slot);
  border-radius: 20px;
  background: var(--paper);
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(48,37,30,.055);
  scroll-margin-top: calc(var(--header) + 24px);
}
.tt-group-schedule__head { display: flex; gap: 13px; align-items: baseline; padding: 20px 20px 16px; border-bottom: 1px solid var(--line); }
.tt-group-schedule__head span { flex: 0 0 auto; color: var(--taupe); font-size: .67rem; font-weight: 900; letter-spacing: .12em; }
.tt-group-schedule__head h2 { margin: 0; min-width: 0; font-family: Georgia,"Times New Roman",serif; font-size: clamp(1.45rem,2.1vw,2.05rem); font-weight: 500; line-height: 1.04; letter-spacing: -.035em; overflow-wrap: anywhere; }
.tt-group-schedule__sessions { display: grid; }
.tt-group-schedule__session { display: grid; grid-template-columns: minmax(135px,.85fr) minmax(0,1fr); gap: 14px; padding: 14px 20px; align-items: center; border-top: 1px solid rgba(48,37,30,.085); }
.tt-group-schedule__session:first-child { border-top: 0; }
.tt-group-schedule__when { min-width: 0; }
.tt-group-schedule__when strong { display: block; font-size: .84rem; line-height: 1.25; }
.tt-group-schedule__when time { display: block; margin-top: 2px; color: var(--taupe); font-size: .82rem; font-weight: 760; font-variant-numeric: tabular-nums; white-space: nowrap; }
.tt-group-schedule__meta { min-width: 0; text-align: right; color: var(--taupe); font-size: .78rem; line-height: 1.3; overflow-wrap: anywhere; }
.tt-group-schedule__empty { padding: 18px 20px; color: var(--taupe); font-size: .83rem; }
.tt-group-schedule.is-compact .tt-group-schedule__head { padding: 16px 16px 13px; }
.tt-group-schedule.is-compact .tt-group-schedule__head h2 { font-size: clamp(1.22rem,1.6vw,1.52rem); }
.tt-group-schedule.is-compact .tt-group-schedule__session { grid-template-columns: 1fr; gap: 5px; padding: 11px 16px; }
.tt-group-schedule.is-compact .tt-group-schedule__meta { text-align: left; }
.tt-group-schedule.is-compact .tt-group-schedule__empty { padding: 14px 16px; }
.tt-group-schedule__card[data-accent="1"] { --slot:#d39f7d; }
.tt-group-schedule__card[data-accent="2"] { --slot:#e2bca0; }
.tt-group-schedule__card[data-accent="3"] { --slot:#b98c70; }
.tt-group-schedule__card[data-accent="4"] { --slot:#cbb09c; }
.tt-group-schedule__card[data-accent="5"] { --slot:#9e806d; }
.tt-group-schedule__card[data-accent="6"] { --slot:#efceb4; }
.tt-group-schedule__card[data-accent="7"] { --slot:#ad7559; }
.tt-group-schedule__card[data-accent="8"] { --slot:#dac4b2; }

/* STANDARD SCHEDULE LIST */
.tt-schedule { display: grid; gap: 26px; }
.tt-schedule__day { border-top: 1px solid var(--line); padding-top: 22px; }
.tt-schedule__day h2 { font-family: Georgia,"Times New Roman",serif; font-weight: 500; font-size: 2rem; margin: 0 0 18px; }
.tt-schedule__list { display: grid; gap: 10px; }
.tt-schedule__item { --slot: var(--peach-strong); display: grid; grid-template-columns: 170px 1fr auto; gap: 22px; align-items: center; padding: 18px 20px; background: var(--surface); border: 1px solid var(--line); border-radius: 16px; box-shadow: inset 4px 0 0 var(--slot); }
.tt-schedule__time { font-weight: 900; font-size: 1.05rem; }
.tt-schedule__name { font-weight: 850; }
.tt-schedule__meta { font-size: .84rem; color: var(--taupe); text-align: right; }
.tt-schedule__filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.tt-schedule__filter { border: 1px solid var(--line); background: var(--paper); color: var(--ink); padding: 9px 14px; border-radius: 999px; cursor: pointer; font-weight: 700; }
.tt-schedule__filter:hover { background: var(--peach-soft); }
.tt-schedule__filter.is-active { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* GOOGLE SHEETS WEEK VIEW */
.tt-schedule__week { display: block; margin-top: 10px; border: 1px solid var(--line); border-radius: 24px; overflow: auto; background: var(--paper); box-shadow: var(--shadow); }
.tt-week__head { display: grid; grid-template-columns: 76px repeat(var(--tt-days),minmax(0,1fr)); min-width: 900px; border-bottom: 1px solid var(--line); background: var(--peach); color: var(--ink); }
.tt-week__head > div { padding: 17px 10px; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 850; text-align: center; border-left: 1px solid rgba(48,37,30,.12); }
.tt-week__head > div:first-child { border-left: 0; }
.tt-week__body { height: var(--tt-week-height); min-width: 900px; position: relative; display: grid; grid-template-columns: 76px 1fr; background: #fffaf5; }
.tt-week__time-axis { position: relative; height: 100%; border-right: 1px solid var(--line); z-index: 3; background: var(--peach-soft); }
.tt-week__time-axis span { position: absolute; right: 12px; transform: translateY(-50%); font-size: .7rem; color: var(--taupe); font-variant-numeric: tabular-nums; }
.tt-week__days { height: 100%; display: grid; grid-template-columns: repeat(var(--tt-days),minmax(0,1fr)); position: relative; z-index: 2; }
.tt-week__day { height: 100%; position: relative; border-right: 1px solid var(--line); min-width: 0; }
.tt-week__day:last-child { border-right: 0; }
.tt-week__gridlines { position: absolute; left: 76px; right: 0; top: 0; bottom: 0; z-index: 1; pointer-events: none; }
.tt-week__gridlines i { position: absolute; left: 0; right: 0; height: 1px; background: rgba(48,37,30,.07); }
.tt-week__event {
  --slot: #d3a181;
  position: absolute;
  z-index: 4;
  min-height: 28px;
  overflow: hidden;
  padding: 8px 9px;
  border-radius: 10px;
  border: 1px solid color-mix(in srgb,var(--slot) 58%,#fff);
  background: linear-gradient(135deg,color-mix(in srgb,var(--slot) 36%,#fffaf5),#fffaf5 84%);
  box-shadow: inset 4px 0 0 var(--slot), 0 8px 22px rgba(48,37,30,.08);
  color: var(--ink);
  transition: transform .18s ease, box-shadow .18s ease;
}
.tt-week__event:hover { z-index: 9; transform: translateY(-2px); box-shadow: inset 4px 0 0 var(--slot), 0 12px 28px rgba(48,37,30,.14); }
.tt-week__event time { display: block; font-size: .64rem; line-height: 1.15; color: var(--taupe); font-weight: 750; font-variant-numeric: tabular-nums; white-space: nowrap; }
.tt-week__event strong { display: block; margin-top: 3px; font-size: .78rem; line-height: 1.08; overflow-wrap: anywhere; }
.tt-week__event small { display: block; margin-top: 3px; font-size: .62rem; line-height: 1.08; color: var(--taupe); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.tt-week__event.is-compact { padding-top: 5px; padding-bottom: 5px; }
.tt-week__event.is-compact time { font-size: .59rem; }
.tt-week__event.is-compact strong { font-size: .68rem; margin-top: 1px; }
.tt-week__event.is-compact small { display: none; }
/* warm, brand-compatible schedule accent family */
.tt-week__event[data-accent="1"],.tt-schedule__item[data-accent="1"] { --slot:#d39f7d; }
.tt-week__event[data-accent="2"],.tt-schedule__item[data-accent="2"] { --slot:#e2bca0; }
.tt-week__event[data-accent="3"],.tt-schedule__item[data-accent="3"] { --slot:#b98c70; }
.tt-week__event[data-accent="4"],.tt-schedule__item[data-accent="4"] { --slot:#cbb09c; }
.tt-week__event[data-accent="5"],.tt-schedule__item[data-accent="5"] { --slot:#9e806d; }
.tt-week__event[data-accent="6"],.tt-schedule__item[data-accent="6"] { --slot:#efceb4; }
.tt-week__event[data-accent="7"],.tt-schedule__item[data-accent="7"] { --slot:#ad7559; }
.tt-week__event[data-accent="8"],.tt-schedule__item[data-accent="8"] { --slot:#dac4b2; }
.tt-schedule--mobile { display: none; }
.tt-schedule [hidden],.tt-schedule__week [hidden] { display: none !important; }

/* REVEALS */
.tt-reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.tt-reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  :root { --shell: min(100% - 30px,1240px); --header: 72px; }
  .tt-brand .custom-logo,.tt-brand__fallback { height: 54px; max-width: 158px; }
  .tt-menu-toggle { display: block; z-index: 3; }
  .tt-nav {
    position: fixed;
    inset: var(--header) 0 0;
    background: var(--paper);
    color: var(--ink);
    padding: 46px 28px 40px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    transform: translateY(-120%);
    transition: .35s ease;
    z-index: 2;
    border-top: 1px solid var(--line);
  }
  .tt-nav.is-open { transform: none; }
  body.home:not(.menu-open) .tt-header:not(.is-scrolled) .tt-menu-toggle { color: var(--paper); }
  .tt-hero { min-height: clamp(610px, 66svh, 690px); }
  .tt-hero__content { padding-top: calc(var(--header) + 34px); padding-bottom: 48px; }
  .tt-nav__list { display: grid; gap: 12px; }
  .tt-nav__list a { font-family: Georgia,"Times New Roman",serif; font-weight: 500; font-size: clamp(2rem,10vw,3.4rem); line-height: 1.05; }
  .tt-values__layout { grid-template-columns: 1fr; }
  .tt-values__visual { display: none; }
  .tt-value { min-height: auto; padding: 70px 0; opacity: 1; transform: none; }
  .tt-card-grid,.tt-news-grid { grid-template-columns: 1fr 1fr; }
  .tt-schedule-teaser__inner { grid-template-columns: 1fr; }
  .tt-group-schedule__grid,.tt-group-schedule.is-compact .tt-group-schedule__grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .tt-footer__grid { grid-template-columns: 1fr 1fr; }
  .tt-schedule__item { grid-template-columns: 130px 1fr; }
  .tt-schedule__meta { grid-column: 2; text-align: left; }
  .tt-hero__scroll { display: none; }
  .tt-schedule__week { display: none; }
  .tt-schedule--mobile { display: grid; }
  .tt-schedule__filters { position: sticky; top: calc(var(--header) + 10px); z-index: 20; background: rgba(255,251,247,.94); backdrop-filter: blur(14px); padding: 10px 0; }
  .tt-schedule__day h2 { font-size: 1.6rem; }
}

@media (max-width: 620px) {
  .tt-hero { min-height: clamp(590px, 74svh, 650px); }
  .tt-hero::before { background-image: linear-gradient(90deg, rgba(33,24,19,.92) 0%, rgba(48,37,30,.68) 72%, rgba(48,37,30,.48) 100%), var(--hero-image, linear-gradient(135deg, transparent, transparent)); }
  .tt-hero::after { width: 92vw; right: -48vw; top: 18%; opacity: .7; }
  .tt-hero__content { padding-top: calc(var(--header) + 28px); padding-bottom: 38px; }
  .tt-hero__title { font-size: clamp(3.25rem,16vw,4.9rem); }
  .tt-hero__lead { font-size: 1.03rem; margin: 19px 0 22px; max-width: 34rem; }
  .tt-hero__actions { gap: 9px; }
  .tt-hero__actions .tt-btn { min-height: 48px; padding-inline: 20px; }

  .tt-card-grid,.tt-news-grid { grid-template-columns: 1fr; }
  .tt-group-schedule__grid,.tt-group-schedule.is-compact .tt-group-schedule__grid { grid-template-columns: 1fr; }
  .tt-group-schedule__session { grid-template-columns: 1fr; gap: 5px; }
  .tt-group-schedule__meta { text-align: left; }
  .tt-home-schedule__intro { margin-top: -10px; }
  .tt-section-head--row { display: block; }
  .tt-section-head--row .tt-text-link { display: inline-block; margin-top: 24px; }
  .tt-footer__grid { grid-template-columns: 1fr; }
  .tt-schedule__item { grid-template-columns: 1fr; gap: 5px; }
  .tt-schedule__meta { grid-column: auto; }
  .tt-value h3 { font-size: 3.1rem; }
  .tt-cta h2 { font-size: 4rem; }
  .tt-brand .custom-logo,.tt-brand__fallback { max-width: 145px; height: 54px; }
}

@media (max-width: 370px) {
  :root { --shell: min(100% - 24px,1240px); }
  .tt-brand { min-width: 0; }
  .tt-brand .custom-logo,.tt-brand__fallback { max-width: 132px; height: 48px; }
  .tt-hero { min-height: 610px; }
  .tt-hero__title { font-size: clamp(3rem,15.5vw,4.2rem); }
  .tt-hero__actions { display: grid; grid-template-columns: 1fr; max-width: 260px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .tt-reveal { opacity: 1; transform: none; transition: none; }
  .tt-marquee__track,.tt-hero__scroll span { animation: none !important; }
  .tt-card,.tt-card__media img,.tt-week__event { transition: none; }
}
