@charset "UTF-8";
.tcl-empty {
  padding: 40px;
  border: 1px dashed var(--line);
  text-align: center;
  color: var(--ink2);
}

.tcl-btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.tcl-btn-row.is-center {
  justify-content: center;
}
.tcl-btn-row.has-space {
  padding: 0 0 80px;
}

.tcl-title.is-left {
  text-align: left;
}
.tcl-title.is-center {
  text-align: center;
}
.tcl-title.is-right {
  text-align: right;
}

.tcl-title-main {
  font-family: var(--disp);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.1;
  display: block;
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  margin: 0.6rem 0 0;
}
.tcl-title-main:first-child {
  margin-top: 0;
}

.tcl-title-sub {
  color: var(--ink2);
  font-weight: 300;
  font-size: 1.08rem;
  line-height: 1.6;
  margin: 0.9rem 0 0;
}
.tcl-title-sub:first-child {
  margin-top: 0;
}

.tcl-header-widget header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(251, 248, 241, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.tcl-header-widget .tcl-site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 16px;
}
.tcl-header-widget .logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.tcl-header-widget .logo img {
  height: 44px;
  width: auto;
}
.tcl-header-widget.is-compact .tcl-site-header {
  height: 64px;
}
.tcl-header-widget.is-compact .logo img {
  height: 38px;
}
.tcl-header-widget .nav-right {
  display: flex;
  align-items: stretch;
  gap: 12px;
  height: 46px;
}
.tcl-header-widget .btn-reserve {
  display: inline-flex;
  align-items: center;
  background: var(--terra);
  color: #fff;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0 1.4em;
  border-radius: 0;
  transition: 0.25s;
}
.tcl-header-widget .btn-reserve:hover {
  background: var(--terra-d);
}
.tcl-header-widget .burger {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--dark);
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 0 1.2rem;
  border-radius: 0;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: 0.25s;
}
.tcl-header-widget .burger:hover {
  background: #000;
}
.tcl-header-widget .burger .lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tcl-header-widget .burger .lines span {
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 0;
  transition: 0.3s;
}
.tcl-header-widget .burger.open .lines span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.tcl-header-widget .burger.open .lines span:nth-child(2) {
  opacity: 0;
}
.tcl-header-widget .burger.open .lines span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
.tcl-header-widget .overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: linear-gradient(160deg, var(--vert) 0%, var(--vert-d) 100%);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  display: flex;
  flex-direction: column;
}
.tcl-header-widget .overlay.open {
  opacity: 1;
  visibility: visible;
}
.tcl-header-widget .overlay-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 28px;
}
.tcl-header-widget .overlay-top img {
  height: 48px;
  filter: brightness(0) invert(1);
}
.tcl-header-widget .overlay-close {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  transition: 0.25s;
}
.tcl-header-widget .overlay-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}
.tcl-header-widget .overlay-body {
  flex: 1;
  display: flex;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 48px 28px 0;
}
.tcl-header-widget .overlay-menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 60px;
  width: 100%;
}
.tcl-header-widget .ov-col h4 {
  color: #F4E3B0;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  opacity: 0.9;
}
.tcl-header-widget .ov-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.tcl-header-widget .ov-col a {
  color: #fff;
  font-family: var(--disp);
  font-weight: 600;
  font-size: 1.5rem;
  transition: 0.2s;
  display: inline-block;
}
.tcl-header-widget .ov-col a:hover {
  color: #F4E3B0;
  transform: translateX(6px);
}
.tcl-header-widget .overlay-foot {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 24px 28px 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
}
.tcl-header-widget .overlay-foot a {
  color: #fff;
  font-weight: 600;
}
@media (max-width: 940px) {
  .tcl-header-widget .overlay-body {
    padding: 16px 28px 0;
    flex: 1 0 auto;
  }
  .tcl-header-widget .overlay-menu {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .tcl-header-widget .ov-col h4 {
    margin-bottom: 0.45rem;
  }
  .tcl-header-widget .ov-col ul {
    gap: 0.3rem;
  }
  .tcl-header-widget .ov-col a {
    font-size: 1.1rem;
  }
  .tcl-header-widget .overlay-top {
    height: 60px;
    flex-shrink: 0;
  }
  .tcl-header-widget .overlay-foot {
    padding: 14px 28px 22px;
    font-size: 0.78rem;
    gap: 5px;
    flex-direction: column;
    flex-shrink: 0;
  }
  .tcl-header-widget .btn-reserve {
    display: none;
  }
  .tcl-header-widget .burger span.txt {
    display: none;
  }
  .tcl-header-widget .burger {
    padding: 0 0.9rem;
  }
}
@media (max-width: 560px) {
  .tcl-header-widget .logo img {
    height: 34px;
  }
  .tcl-header-widget.is-compact .logo img {
    height: 34px;
  }
}

.tcl-hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  background: var(--vert-d);
  padding: 88px 0;
}
.tcl-hero .eyebrow {
  color: #F4E3B0;
}
.tcl-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.tcl-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}
.tcl-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--vert-d) 0%, rgba(83, 120, 0, 0.94) 30%, rgba(83, 120, 0, 0.55) 55%, rgba(83, 120, 0, 0.15) 78%, rgba(83, 120, 0, 0) 100%);
}
.tcl-hero-grid {
  position: relative;
  z-index: 1;
  padding: 96px 0 104px;
  max-width: 640px;
}
.tcl-hero-title {
  font-family: var(--disp);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.1;
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}
.tcl-hero-title em {
  font-style: italic;
  color: #F4E3B0;
  font-weight: 600;
}
.tcl-hero .lead {
  font-size: 1.1rem;
  max-width: 36ch;
  margin: 1.4rem 0 2rem;
  color: rgba(255, 255, 255, 0.95);
}
.tcl-hero-cta {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}
.tcl-hero-stats {
  display: flex;
  gap: 2.4rem;
  margin-top: 2.6rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.tcl-hero-stats .n {
  font-family: var(--disp);
  font-size: 2.1rem;
  font-weight: 400;
  line-height: 1;
}
.tcl-hero-stats .l {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 0.3rem;
}
@media (max-width: 940px) {
  .tcl-hero-grid {
    grid-template-columns: 1fr;
    padding: 64px 0 72px;
    max-width: none;
  }
  .tcl-hero-bg::after {
    background: linear-gradient(90deg, var(--vert-d) 0%, rgba(83, 120, 0, 0.9) 45%, rgba(83, 120, 0, 0.55) 100%);
  }
}
@media (max-width: 560px) {
  .tcl-hero-stats {
    gap: 1.4rem;
  }
}

.tcl-marquee {
  background: var(--terra);
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  padding: 0.85rem 0;
}
.tcl-marquee-track {
  display: inline-block;
  animation: tcl-scroll var(--tcl-speed, 26s) linear infinite;
  font-family: var(--disp);
  font-style: italic;
  font-weight: 600;
  font-size: 1.35rem;
}
.tcl-marquee-track span {
  margin: 0 1.6rem;
  opacity: 0.95;
}
.tcl-marquee-track span::after {
  content: "•";
  margin-left: 3.2rem;
  color: rgba(255, 255, 255, 0.5);
}

@keyframes tcl-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.tcl-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem 1.6rem;
  margin: 1.8rem 0 2rem;
}
.tcl-feats.is-1col {
  grid-template-columns: 1fr;
}
.tcl-feats.in-section {
  gap: 0.7rem 1.4rem;
  margin: 1.6rem 0 0;
}
@media (max-width: 940px) {
  .tcl-feats.in-section {
    grid-template-columns: 1fr;
  }
}
.tcl-feats .feat {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  font-weight: 500;
  font-size: 0.96rem;
}
.tcl-feats .feat i {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(108, 156, 0, 0.14);
  color: var(--vert-d);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-style: normal;
  flex-shrink: 0;
}
@media (max-width: 560px) {
  .tcl-feats {
    grid-template-columns: 1fr;
  }
}

.tcl-cards {
  background: var(--crem2);
  padding: 88px 0;
}
.tcl-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 940px) {
  .tcl-cards-grid {
    grid-template-columns: 1fr;
  }
}

.tcl-card {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  transition: 0.3s;
  border: 1px solid var(--line);
}
.tcl-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.12);
}
.tcl-card .ph {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.tcl-card .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.tcl-card:hover .ph img {
  transform: scale(1.06);
}
.tcl-card .tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #fff;
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.35em 0.8em;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.tcl-card .bd {
  padding: 26px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.tcl-card .tcl-card-title {
  font-family: var(--disp);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.1;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.tcl-card p {
  color: var(--ink2);
  font-size: 0.95rem;
  flex: 1;
}
.tcl-card .sub {
  font-size: 0.82rem;
  color: var(--vert-d);
  font-weight: 600;
  margin: 0.6rem 0 1rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.tcl-card .sub span {
  background: rgba(108, 156, 0, 0.1);
  padding: 0.3em 0.7em;
}
.tcl-card .lnk {
  font-weight: 600;
  color: var(--terra);
  font-size: 0.9rem;
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
}
.tcl-card:hover .lnk {
  gap: 0.7rem;
}

.tcl-reviews {
  background: var(--dark);
  color: #fff;
  padding: 88px 0;
}
.tcl-reviews .tcl-sec-head-title {
  color: #fff;
}
.tcl-reviews .tcl-sec-head p {
  color: rgba(255, 255, 255, 0.65);
}
.tcl-reviews-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 44px;
}
.tcl-reviews-top .tcl-sec-head {
  margin-bottom: 0;
}
.tcl-reviews-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 940px) {
  .tcl-reviews-cards {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}
@media (max-width: 560px) {
  .tcl-reviews-cards {
    grid-template-columns: 1fr;
  }
}

.tcl-gscore {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 1rem 1.4rem;
}
.tcl-gscore .g {
  font-family: var(--disp);
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1;
}
.tcl-gscore .stars {
  color: #F5B400;
  letter-spacing: 2px;
}
.tcl-gscore small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
}

.tcl-review {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 26px;
}
.tcl-review .stars {
  color: #F5B400;
  letter-spacing: 2px;
  margin-bottom: 0.8rem;
}
.tcl-review p {
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.9);
}
.tcl-review .who {
  margin-top: 1.3rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.tcl-review .who b {
  font-size: 0.9rem;
  font-weight: 600;
}
.tcl-review .who span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  display: block;
}

.tcl-partners {
  background: var(--terra);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.tcl-partners::after {
  content: "";
  position: absolute;
  right: 6%;
  top: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}
.tcl-partners .eyebrow {
  color: #F4E3B0;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.tcl-partners-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 28px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
}
@media (max-width: 940px) {
  .tcl-partners-inner {
    grid-template-columns: 1fr;
  }
}
.tcl-partners-title {
  font-family: var(--disp);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.1;
  font-size: 2.3rem;
  color: #fff;
  position: relative;
}
.tcl-partners p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0.8rem 0 0;
  position: relative;
}
.tcl-partners .r {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 940px) {
  .tcl-partners .r {
    justify-content: flex-start;
  }
}

.tcl-hand {
  animation: tcl-hand-wave 2.4s ease-in-out infinite;
  transform-origin: 70% 70%;
}

@keyframes tcl-hand-wave {
  0%, 60%, 100% {
    transform: translateY(0) rotate(0);
  }
  70% {
    transform: translateY(-3px) rotate(-8deg);
  }
  80% {
    transform: translateY(-3px) rotate(6deg);
  }
  90% {
    transform: translateY(-1px) rotate(-3deg);
  }
}
.tcl-logos {
  overflow: hidden;
  background: var(--white);
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.tcl-logos.bg-crem {
  background: var(--crem);
}
.tcl-logos.no-sep-top {
  border-top: none;
}
.tcl-logos.no-sep-bottom {
  border-bottom: none;
}
.tcl-logos-track {
  display: flex;
  gap: var(--tcl-logos-gap, 48px);
  align-items: center;
  animation: tcl-scroll var(--tcl-speed, 60s) linear infinite;
  width: max-content;
  padding-left: var(--tcl-logos-gap, 48px);
}
.tcl-logos-track .lg {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  opacity: var(--tcl-logo-opacity, 0.75);
  transition: 0.3s;
  font-family: var(--disp);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--ink2);
  white-space: nowrap;
}
.tcl-logos-track .lg img {
  height: var(--tcl-logo-h, 56px);
  width: auto;
  object-fit: contain;
  display: block;
}
.tcl-logos-track .lg:hover {
  opacity: 1;
}
.tcl-logos.is-grayscale .lg img {
  filter: grayscale(1);
}

.tcl-social {
  background: var(--vert);
  color: #fff;
  text-align: center;
  padding: 88px 0;
}
.tcl-social .eyebrow {
  color: #F4E3B0;
}
.tcl-social-title {
  font-family: var(--disp);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.1;
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin: 0.6rem 0 1rem;
}
.tcl-social p {
  max-width: 52ch;
  margin: 0 auto 2.6rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  font-size: 1.05rem;
}
.tcl-social-btns {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.tcl-sbtn {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 1em 1.8em;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: 0.3s;
}
.tcl-sbtn:hover {
  background: #fff;
  color: var(--vert-d);
  transform: translateY(-3px);
}
.tcl-sbtn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.tcl-agenda {
  background: #fff;
  position: relative;
  overflow: hidden;
  padding: 88px 0;
}
.tcl-agenda .eyebrow {
  display: block;
  margin-bottom: 0.6rem;
}
.tcl-agenda-title {
  font-family: var(--disp);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.1;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--vert-d);
  margin-bottom: 40px;
}
.tcl-agenda .slider {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: stretch;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
}
@media (max-width: 940px) {
  .tcl-agenda .slider {
    grid-template-columns: 1fr;
  }
}
.tcl-agenda .slide-info {
  background: var(--vert);
  color: #fff;
  padding: 54px 50px 0;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.tcl-agenda .slide-info::before {
  content: "";
  position: absolute;
  right: -60px;
  top: 40px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.tcl-agenda .slide-info h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.05;
  position: relative;
}
.tcl-agenda .slide-info p {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: 42ch;
  position: relative;
}
.tcl-agenda .slide-info .btn {
  margin-top: 2rem;
  align-self: flex-start;
  position: relative;
}
@media (max-width: 940px) {
  .tcl-agenda .slide-info {
    padding: 36px 30px 0;
  }
}
.tcl-agenda .slide-dates {
  color: #FFD9A8;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  margin: 1.2rem 0 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}
.tcl-agenda .slide-dates .arw {
  color: #FFD9A8;
}
.tcl-agenda .slide-nav {
  display: flex;
  gap: 14px;
  margin: 2.2rem 0 3rem;
  position: relative;
}
.tcl-agenda .slide-nav button {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: var(--vert-d);
  font-size: 1.3rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: 0.25s;
}
.tcl-agenda .slide-nav button:hover {
  background: var(--terra);
  color: #fff;
  transform: scale(1.05);
}
.tcl-agenda .slide-photo {
  position: relative;
  min-height: 440px;
  overflow: hidden;
}
.tcl-agenda .slide-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.4s;
}
.tcl-agenda .slide-photo.past img {
  filter: grayscale(1) contrast(0.95);
}
.tcl-agenda .slide-photo.past .slide-past-badge {
  display: block;
}
@media (max-width: 940px) {
  .tcl-agenda .slide-photo {
    min-height: 280px;
    order: -1;
  }
}
.tcl-agenda .slide-past-badge {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  background: var(--dark);
  color: #fff;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.7em 1.2em;
  display: none;
}
.tcl-agenda .timeline {
  grid-column: 1/-1;
  background: var(--vert-d);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 22px 44px;
}
.tcl-agenda .timeline .tl-end {
  white-space: nowrap;
}
.tcl-agenda .timeline .tl-end:last-child {
  text-align: right;
}
.tcl-agenda .timeline .tl-end .m {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
}
.tcl-agenda .timeline .tl-end .y {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}
.tcl-agenda .timeline .tl-bar {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
}
.tcl-agenda .timeline .tl-bar .dot {
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: 0.25s;
}
.tcl-agenda .timeline .tl-bar .dot:hover {
  transform: translate(-50%, -50%) scale(1.35);
}
.tcl-agenda .timeline .tl-bar .cursor {
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--vert-d);
  border: 3px solid #fff;
  transform: translate(-50%, -50%);
  cursor: pointer;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.15);
}
@media (max-width: 940px) {
  .tcl-agenda .timeline {
    flex-wrap: wrap;
    gap: 14px;
    padding: 18px 24px;
  }
}

.tcl-page-hero {
  background: linear-gradient(160deg, var(--vert) 0%, var(--vert-d) 100%);
  color: #fff;
  padding: 64px 0 70px;
  position: relative;
  overflow: hidden;
}
.tcl-page-hero::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -40px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}
.tcl-page-hero .eyebrow {
  color: #F4E3B0;
}
.tcl-page-hero-title {
  font-family: var(--disp);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.1;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: #fff;
  margin: 0.6rem 0 0.8rem;
  position: relative;
}
.tcl-page-hero-title em {
  font-style: italic;
  color: #F4E3B0;
  font-weight: 600;
}
.tcl-page-hero p {
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  font-size: 1.08rem;
  position: relative;
}
.tcl-page-hero .tcl-art-meta {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1rem;
  position: relative;
}
.tcl-page-hero.is-article {
  padding: 56px 0 62px;
}
.tcl-page-hero.is-article .tcl-page-hero-title {
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  margin: 0.4rem 0 0;
  max-width: 20ch;
}

.tcl-breadcrumb {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.4rem;
  position: relative;
}
.tcl-breadcrumb a {
  color: #F4E3B0;
}

.tcl-section {
  padding: 88px 0;
}
.tcl-section.sp-compact {
  padding: 88px 0;
}
.tcl-section.sp-large {
  padding: 178px 0;
}
.tcl-section.sp-after-hero {
  padding: 134px 0 178px;
}
.tcl-section.sp-after-stats {
  padding: 138px 0 178px;
}
@media (max-width: 940px) {
  .tcl-section.sp-large {
    padding: 144px 0;
  }
  .tcl-section.sp-after-hero {
    padding: 100px 0 144px;
  }
  .tcl-section.sp-after-stats {
    padding: 104px 0 144px;
  }
}
@media (max-width: 700px) {
  .tcl-section.sp-after-hero {
    padding: 88px 0 144px;
  }
  .tcl-section.sp-after-stats {
    padding: 92px 0 144px;
  }
}
.tcl-section.bg-crem {
  background: var(--crem);
}
.tcl-section.bg-crem2 {
  background: var(--crem2);
}

.tcl-section-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.tcl-section-grid.cols-equal {
  grid-template-columns: 1fr 1fr;
}
.tcl-section-grid.cols-intro {
  grid-template-columns: 1.1fr 0.9fr;
}
.tcl-section-grid.img-left {
  grid-template-columns: 0.9fr 1.1fr;
}
.tcl-section-grid.img-left.cols-intro {
  grid-template-columns: 0.9fr 1.1fr;
}
.tcl-section-grid.img-left.cols-equal {
  grid-template-columns: 1fr 1fr;
}
.tcl-section-grid.img-left .tcl-section-txt {
  order: 2;
}
.tcl-section-grid.img-left .tcl-section-media {
  order: 1;
}
@media (max-width: 940px) {
  .tcl-section-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .tcl-section-grid.cols-intro {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .tcl-section-grid.cols-equal {
    grid-template-columns: 1fr;
  }
  .tcl-section-grid.img-left, .tcl-section-grid.img-left.cols-intro, .tcl-section-grid.img-left.cols-equal {
    grid-template-columns: 1fr;
  }
  .tcl-section-grid.img-left .tcl-section-txt {
    order: 1;
  }
  .tcl-section-grid.img-left .tcl-section-media {
    order: 2;
  }
  .tcl-section-grid.mobile-media-first .tcl-section-media {
    order: 1;
  }
  .tcl-section-grid.mobile-media-first .tcl-section-txt {
    order: 2;
  }
}

.tcl-section-txt .eyebrow {
  color: var(--terra);
}

.tcl-section-title {
  font-family: var(--disp);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.1;
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  margin: 0.6rem 0 1.2rem;
}

.tcl-section-text p {
  color: var(--ink2);
  font-weight: 300;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.tcl-section-media {
  position: relative;
}
.tcl-section-media.is-single img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.16);
}
.tcl-section-media.is-dual .p1 {
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
.tcl-section-media.is-dual .p2 {
  position: absolute;
  right: -18px;
  bottom: -30px;
  width: 52%;
  overflow: hidden;
  aspect-ratio: 1;
  border: 6px solid var(--crem);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.15);
}
.tcl-section-media.is-dual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tcl-section-badge {
  position: absolute;
  z-index: 2;
  background: var(--terra);
  color: #fff;
  font-family: var(--disp);
}
.tcl-section-badge.pos-tl {
  top: -24px;
  left: -24px;
}
.tcl-section-badge.pos-tr {
  top: -24px;
  right: -24px;
}
.tcl-section-badge.pos-bl {
  bottom: -24px;
  left: -24px;
}
.tcl-section-badge.pos-br {
  bottom: -24px;
  right: -24px;
}
.tcl-section-badge.is-rect {
  padding: 1.1rem 1.4rem;
  font-weight: 600;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}
.tcl-section-badge.is-rect b {
  font-size: 2rem;
  display: block;
  line-height: 1;
}
.tcl-section-badge.is-rect span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.tcl-section-badge.is-round {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.1;
  transform: rotate(-8deg);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
}
.tcl-section-badge.is-round b {
  font-size: 1.9rem;
  display: block;
}
.tcl-section-badge.is-round.pos-tl {
  top: -22px;
  left: -22px;
}
.tcl-section-badge.is-round.pos-tr {
  top: -22px;
  right: -22px;
}
.tcl-section-badge.is-round.pos-bl {
  bottom: -22px;
  left: -22px;
}
.tcl-section-badge.is-round.pos-br {
  bottom: -22px;
  right: -22px;
}
@media (max-width: 940px) {
  .tcl-section-badge.mob-inside, .tcl-section-badge.is-round.mob-inside {
    top: auto;
    right: auto;
    bottom: 16px;
    left: 16px;
  }
}

.tcl-coach-grid {
  padding: 90px 0;
}
.tcl-coach-grid.pt-0 {
  padding-top: 0;
}
.tcl-coach-grid.pb-0 {
  padding-bottom: 0;
}
.tcl-coach-grid.no-space {
  padding: 0;
}
@media (max-width: 700px) {
  .tcl-coach-grid.hide-md {
    display: none;
  }
}

.tcl-coach-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.tcl-coach-card {
  flex: 0 0 calc((100% - 90px) / 4);
  max-width: calc((100% - 90px) / 4);
}
@media (max-width: 940px) {
  .tcl-coach-card {
    flex-basis: calc((100% - 30px) / 2);
    max-width: calc((100% - 30px) / 2);
  }
}
@media (max-width: 560px) {
  .tcl-coach-card {
    flex-basis: 280px;
    max-width: 280px;
  }
}
.tcl-coach-card {
  text-align: center;
}
.tcl-coach-card .ph {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--crem2);
  margin-bottom: 16px;
}
.tcl-coach-card .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
.tcl-coach-card:hover .ph img {
  transform: scale(1.05);
}
.tcl-coach-card .name {
  font-family: var(--disp);
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.tcl-coach-card .lvl {
  font-size: 0.78rem;
  color: var(--ink2);
  margin: 0.3rem 0 0.8rem;
}
.tcl-coach-card .disc {
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  cursor: pointer;
}
.tcl-coach-card .disc .ar {
  transition: transform 0.3s;
}
.tcl-coach-card .disc:hover .ar {
  transform: translateX(4px);
}

.tcl-coach-detail {
  padding: 80px 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 80px;
}
.tcl-coach-detail.no-sep {
  border-top: none;
}
@media (max-width: 700px) {
  .tcl-coach-detail.no-sep {
    padding-top: 56px;
  }
}

.tcl-cd-grid {
  display: grid;
  grid-template-columns: 0.62fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.tcl-cd-grid.rev .tcl-cd-img {
  order: 2;
}
.tcl-cd-grid.rev .tcl-cd-txt {
  order: 1;
}
@media (max-width: 940px) {
  .tcl-cd-grid, .tcl-cd-grid.rev {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .tcl-cd-grid.rev .tcl-cd-img {
    order: 1;
  }
  .tcl-cd-grid.rev .tcl-cd-txt {
    order: 2;
  }
}

.tcl-cd-img img {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.16);
}

.tcl-cd-txt .cd-name {
  font-family: var(--body);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  line-height: 1.6;
  letter-spacing: normal;
  text-transform: none;
  margin-bottom: 0.3rem;
}
.tcl-cd-txt .cd-diploma {
  display: inline-block;
  background: var(--vert);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4em 0.9em;
  margin-bottom: 1.2rem;
}
.tcl-cd-txt h4, .tcl-cd-txt .tcl-cd-cv-title {
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink2);
  margin: 1.4rem 0 0.7rem;
}

.tcl-cd-cv {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.6rem;
}
.tcl-cd-cv li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.96rem;
  font-weight: 300;
  color: var(--ink2);
}
.tcl-cd-cv li i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(108, 156, 0, 0.14);
  color: var(--vert-d);
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-style: normal;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.tcl-cd-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
}
.tcl-cd-actions .btn-ico {
  padding: 1em;
  gap: 0;
  justify-content: center;
}
.tcl-cd-actions .btn-ico svg {
  width: 15px;
  height: 15px;
  display: block;
}
.tcl-cd-actions .btn-ico .ico-tel {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.tcl-cd-actions .btn-ico .ico-wa {
  fill: currentColor;
}
.tcl-cd-actions .btn-wa {
  background: #25d366;
  color: #fff;
}
.tcl-cd-actions .btn-wa:hover {
  background: #1da851;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.28);
  transform: translateY(-2px);
}

.tcl-cd-tarifs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 1.6rem 0;
}
.tcl-cd-tarifs .tcl-cd-tarif {
  margin: 0;
}

.tcl-cd-tarif {
  background: var(--crem2);
  padding: 18px 22px;
  margin: 1.6rem 0;
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  flex-wrap: nowrap;
}
.tcl-cd-tarif .from {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink2);
  white-space: nowrap;
}
.tcl-cd-tarif .price {
  font-family: var(--disp);
  font-size: 2rem;
  color: var(--terra);
  line-height: 1;
  white-space: nowrap;
}
.tcl-cd-tarif .unit {
  font-size: 0.85rem;
  color: var(--ink2);
  white-space: nowrap;
}
@media (max-width: 700px) {
  .tcl-cd-tarif {
    padding: 14px 18px;
    gap: 0.4rem 0.6rem;
    flex-wrap: wrap;
    align-items: center;
  }
  .tcl-cd-tarif .from {
    font-size: 0.72rem;
    width: 100%;
    margin-bottom: -0.2rem;
  }
  .tcl-cd-tarif .price {
    font-size: 1.6rem;
  }
  .tcl-cd-tarif .unit {
    font-size: 0.82rem;
  }
}

.tcl-team {
  padding: 0;
}
.tcl-team.has-wrap {
  padding: 3rem 0;
}

.tcl-team-grid {
  display: grid;
  gap: 34px;
}
.tcl-team-grid.row1 {
  grid-template-columns: 1fr;
  max-width: 280px;
  margin: 0 auto;
}
.tcl-team-grid.row2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 560px;
  margin: 0 auto;
}
.tcl-team-grid.row3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 860px;
  margin: 36px auto 0;
}
.tcl-team-grid.row4 {
  grid-template-columns: repeat(4, 1fr);
}
.tcl-team-grid.row4 .tcl-member .name {
  font-size: 1rem;
}
.tcl-team-grid.has-mt {
  margin-top: 36px;
}
@media (max-width: 940px) {
  .tcl-team-grid.row4, .tcl-team-grid.row3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .tcl-team-grid.row1, .tcl-team-grid.row2, .tcl-team-grid.row3 {
    grid-template-columns: 1fr;
    max-width: 280px;
  }
}

.tcl-member {
  text-align: center;
}
.tcl-member .ph {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--crem2);
  margin-bottom: 16px;
}
.tcl-member .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
.tcl-member:hover .ph img {
  transform: scale(1.05);
}
.tcl-member .name {
  font-family: var(--disp);
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.tcl-member .role {
  font-size: 0.8rem;
  color: var(--terra);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.4rem;
}

.tcl-team-sep {
  text-align: center;
  margin: 0 auto;
  padding-top: 8px;
}
.tcl-team-sep .eyebrow {
  color: var(--terra);
}

.tcl-team-title {
  font-family: var(--disp);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.1;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-top: 0.5rem;
}

.tcl-pricing {
  padding: 0 0 80px;
}
.tcl-pricing.sp-none {
  padding-top: 0;
}
.tcl-pricing.sp-top {
  padding-top: 80px;
}
.tcl-pricing.sp-block {
  padding: 80px 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 140px;
}
.tcl-pricing.sp-block.no-sep {
  border-top: none;
}

.tcl-pricing-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}
.tcl-pricing-head.is-tight {
  margin-bottom: 24px;
}
.tcl-pricing-head .eyebrow {
  color: var(--terra);
}
.tcl-pricing-head p {
  color: var(--ink2);
  font-weight: 300;
  margin-top: 1rem;
}

.tcl-pricing-title {
  font-family: var(--disp);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.1;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-top: 0.5rem;
}

.tcl-pricing-intro {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
  color: var(--ink2);
  font-weight: 300;
  font-size: 1.04rem;
}
.tcl-pricing-intro p {
  margin-bottom: 1rem;
}
.tcl-pricing-intro p:last-child {
  margin-bottom: 0;
}

.tcl-pricing-table {
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid var(--line);
  background: #fff;
}
.tcl-pricing-table .trow {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 20px 28px;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.tcl-pricing-table .trow:last-child {
  border-bottom: none;
}
.tcl-pricing-table .trow:nth-child(even) {
  background: var(--crem);
}
@media (max-width: 560px) {
  .tcl-pricing-table .trow {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
.tcl-pricing-table .tlabel {
  font-size: 1rem;
  color: var(--ink);
  font-weight: 400;
}
.tcl-pricing-table .tdetail {
  display: inline;
  font-size: 0.9rem;
  color: var(--ink2);
  font-weight: 300;
}
.tcl-pricing-table .tdetail.is-block {
  font-size: 0.85rem;
  font-weight: 400;
}
.tcl-pricing-table .tprice {
  font-family: var(--disp);
  font-size: 1.6rem;
  color: var(--terra);
  white-space: nowrap;
  text-align: right;
}
.tcl-pricing-table .tprice .from {
  display: block;
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink2);
  margin-bottom: 0.2rem;
}
.tcl-pricing-table .tprice.is-small {
  font-size: 1rem;
}
@media (max-width: 560px) {
  .tcl-pricing-table .tprice {
    font-size: 1.4rem;
    text-align: left;
  }
}

.tcl-pricing-caption {
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink2);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 16px;
  font-weight: 300;
}

.tcl-pricing-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.tcl-pricing-actions.is-center {
  justify-content: center;
}

.tcl-trn {
  padding: 0 0 76px;
  scroll-margin-top: 140px;
}
.tcl-trn.sp-top {
  padding-top: 76px;
}
.tcl-trn.sp-block {
  padding: 76px 0;
  border-top: 1px solid var(--line);
}
.tcl-trn.bg-crem2 {
  background: var(--crem2);
}
.tcl-trn.bg-crem {
  background: var(--crem);
}
.tcl-trn.bg-white {
  background: #fff;
}

.tcl-trn-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
}
.tcl-trn-head .eyebrow {
  color: var(--terra);
}

.tcl-trn-title {
  font-family: var(--disp);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.1;
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  margin-top: 0.5rem;
}

.tcl-trn-table {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
}
.tcl-trn-table .trn-row {
  display: grid;
  grid-template-columns: 1.15fr 0.55fr 1.35fr 1.25fr;
  gap: 18px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.tcl-trn-table .trn-row:last-child {
  border-bottom: none;
}
.tcl-trn-table .trn-row:nth-child(even) {
  background: var(--crem);
}
.tcl-trn-table .trn-row.trn-head-row {
  background: var(--vert);
  color: #fff;
}
.tcl-trn-table .trn-row.trn-head-row span {
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.tcl-trn-table.no-head .trn-row:nth-child(even) {
  background: transparent;
}
.tcl-trn-table.no-head .trn-row:nth-child(odd) {
  background: var(--crem);
}
.tcl-trn-table .trn-date {
  font-weight: 600;
  color: var(--ink);
}
.tcl-trn-table .trn-type {
  font-family: var(--disp);
  font-weight: 600;
  color: var(--terra);
  letter-spacing: 0.02em;
}
.tcl-trn-table .trn-cat {
  color: var(--ink);
  font-weight: 300;
}
.tcl-trn-table .trn-clas {
  color: var(--ink2);
  font-weight: 300;
  font-size: 0.94rem;
}
.tcl-trn-table .trn-k {
  display: none;
  color: var(--ink2);
}
@media (max-width: 860px) {
  .tcl-trn-table .trn-row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 16px 20px;
  }
  .tcl-trn-table .trn-row.trn-head-row {
    display: none;
  }
  .tcl-trn-table .trn-k {
    display: inline;
  }
}

.tcl-trn-caption {
  text-align: center;
  color: var(--ink2);
  font-weight: 300;
  font-size: 0.92rem;
  max-width: 900px;
  margin: 20px auto 0;
}

.tcl-trn-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.tcl-trn-actions.is-center {
  justify-content: center;
}

.tcl-block {
  padding: 80px 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 140px;
}
.tcl-block.no-sep {
  border-top: none;
}
.tcl-block.bg-crem {
  background: var(--crem);
}
.tcl-block.bg-crem2 {
  background: var(--crem2);
}

.tcl-block-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.tcl-block-grid.rev .tcl-block-img {
  order: 2;
}
.tcl-block-grid.rev .tcl-block-txt {
  order: 1;
}
@media (max-width: 940px) {
  .tcl-block-grid, .tcl-block-grid.rev {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .tcl-block-grid.rev .tcl-block-img {
    order: 1;
  }
  .tcl-block-grid.rev .tcl-block-txt {
    order: 2;
  }
}

.tcl-block-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.16);
}

.tcl-block-title {
  font-family: var(--disp);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.1;
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  margin: 0.6rem 0 1.2rem;
}

.tcl-block-txt .eyebrow {
  color: var(--terra);
}
.tcl-block-txt p {
  color: var(--ink2);
  font-weight: 300;
  font-size: 1.04rem;
  margin-bottom: 1rem;
}
.tcl-block-txt > .btn {
  margin-top: 1.4rem;
}

.tcl-block-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}
.tcl-block-btns.is-center {
  justify-content: center;
}
.tcl-block-btns .btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.tcl-block-badge {
  display: inline-block;
  background: var(--vert);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45em 1em;
  margin-top: 0.4rem;
}

.tcl-tel-big {
  font-family: var(--disp);
  font-size: 1.5rem;
  color: var(--terra);
  margin: 0.4rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}
.tcl-tel-big svg {
  width: 22px;
  height: 22px;
  stroke: var(--terra);
  fill: none;
  stroke-width: 2;
}
.tcl-tel-big.is-lg {
  font-size: 1.8rem;
  margin: 0.6rem 0;
}
.tcl-tel-big.is-lg svg {
  width: 26px;
  height: 26px;
}

.tcl-info-note {
  background: var(--crem2);
  border-left: 3px solid var(--terra);
  padding: 16px 20px;
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 400;
  margin-top: 1.4rem;
}

.tcl-quote {
  background: var(--crem2);
  color: var(--ink);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.tcl-quote::before {
  content: "“";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: Georgia, serif;
  font-size: 11rem;
  color: rgba(192, 84, 0, 0.12);
  line-height: 1;
}
.tcl-quote .wrap {
  position: relative;
  max-width: 900px;
}
.tcl-quote blockquote {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 300;
  line-height: 1.5;
  font-style: italic;
  color: var(--ink);
}
.tcl-quote .qauthor {
  margin-top: 1.8rem;
  font-style: normal;
}
.tcl-quote .qauthor b {
  display: block;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
}
.tcl-quote .qauthor span {
  font-size: 0.85rem;
  color: var(--terra);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tcl-contact-info {
  background: var(--dark);
  color: #fff;
  padding: 36px 0;
}
.tcl-contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}
.tcl-contact-info-grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}
.tcl-contact-info-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.tcl-contact-info-grid.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}
.tcl-contact-info-grid .ci b {
  display: block;
  font-family: var(--disp);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #F4E3B0;
  margin-bottom: 0.4rem;
}
.tcl-contact-info-grid .ci a, .tcl-contact-info-grid .ci span {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  font-size: 1rem;
}
@media (max-width: 860px) {
  .tcl-contact-info-grid, .tcl-contact-info-grid.cols-2, .tcl-contact-info-grid.cols-3, .tcl-contact-info-grid.cols-4 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.tcl-part-list {
  padding: 80px 0;
}

.tcl-part-cards {
  display: grid;
  gap: 28px;
  grid-auto-rows: 1fr;
}
.tcl-part-cards.row4 {
  grid-template-columns: repeat(4, 1fr);
}
.tcl-part-cards.row3 {
  grid-template-columns: repeat(3, 1fr);
}
.tcl-part-cards.row2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 940px) {
  .tcl-part-cards.row4, .tcl-part-cards.row3, .tcl-part-cards.row2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .tcl-part-cards.row4, .tcl-part-cards.row3, .tcl-part-cards.row2 {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin: 0 auto;
  }
}

.tcl-pcard {
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: 0.3s;
  height: 100%;
  min-width: 0;
  overflow: hidden;
}
.tcl-pcard:hover {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}
.tcl-pcard .plogo {
  aspect-ratio: 16/9;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  border-bottom: 1px solid var(--line);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.tcl-pcard .plogo img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  object-fit: contain;
}
.tcl-pcard .pbody {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.tcl-pcard .pname {
  font-family: var(--disp);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.2;
  min-height: 2.4em;
  display: flex;
  align-items: flex-start;
}
.tcl-pcard .pactivity {
  font-size: 0.8rem;
  color: var(--terra);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0.4rem 0 1rem;
  min-height: 2.4em;
}
.tcl-pcard .presp {
  font-size: 0.9rem;
  color: var(--ink2);
  font-weight: 300;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  min-height: 3.6em;
}
.tcl-pcard .presp b {
  font-weight: 600;
  color: var(--ink);
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}

.tcl-pcard .pcontact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: auto;
  min-width: 0;
}
.tcl-pcard .pcontact a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: var(--ink2);
  font-weight: 300;
  min-width: 0;
  transition: 0.2s;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.tcl-pcard .pcontact a:hover {
  color: var(--terra);
}
.tcl-pcard .pcontact a:hover svg {
  stroke: var(--terra);
}
.tcl-pcard .pcontact a span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.tcl-pcard .pcontact a svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: var(--vert-d);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tcl-pcard .pcontact a.is-addr {
  align-items: flex-start;
  white-space: normal;
  line-height: 1.4;
}
.tcl-pcard .pcontact a.is-addr span {
  white-space: normal;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.tcl-pcard .pcontact a.is-addr svg {
  margin-top: 0.15rem;
}

.tcl-inst {
  padding: 0 0 80px;
}

.tcl-inst-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}
.tcl-inst-head .eyebrow {
  color: var(--terra);
}

.tcl-inst-title {
  font-family: var(--disp);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.1;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-top: 0.5rem;
}

.tcl-inst-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  grid-auto-rows: 1fr;
}
@media (max-width: 1100px) {
  .tcl-inst-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 700px) {
  .tcl-inst-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

.tcl-icard {
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: 0.3s;
  height: 100%;
}
.tcl-icard:hover {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}
.tcl-icard .ilogo {
  height: 136px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
}
.tcl-icard .ilogo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
@media (max-width: 700px) {
  .tcl-icard .ilogo {
    height: 110px;
    padding: 16px;
  }
}
.tcl-icard .iname {
  border-top: 1px solid var(--line);
  padding: 14px 16px;
  text-align: center;
  font-family: var(--disp);
  font-size: 0.98rem;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 700px) {
  .tcl-icard .iname {
    font-size: 0.88rem;
    padding: 12px;
  }
}

.tcl-stats-band {
  background: var(--dark);
  color: #fff;
  padding: 64px 0;
}

.tcl-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.tcl-stats-grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}
.tcl-stats-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.tcl-stats-grid.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}
.tcl-stats-grid .n {
  font-family: var(--disp);
  font-size: 2.6rem;
  color: var(--white);
  line-height: 1;
}
.tcl-stats-grid .l {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.5rem;
}
@media (max-width: 940px) {
  .tcl-stats-grid, .tcl-stats-grid.cols-2, .tcl-stats-grid.cols-3, .tcl-stats-grid.cols-4 {
    grid-template-columns: 1fr 1fr;
    gap: 36px 20px;
  }
}

.tcl-cta-band {
  background: var(--vert);
  color: #fff;
  text-align: center;
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.tcl-cta-band::after {
  content: "";
  position: absolute;
  right: 8%;
  top: -30px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
}
.tcl-cta-band .wrap {
  position: relative;
  max-width: 680px;
}
.tcl-cta-band .tcl-cta-band-pict {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 auto 0.6rem;
  fill: none;
  stroke: #F4E3B0;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tcl-cta-band p {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  max-width: 48ch;
  margin: 0 auto 1.8rem;
}

.tcl-cta-band-title {
  font-family: var(--disp);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.1;
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: 0.8rem;
}

.tcl-text-block {
  padding: 80px 0;
  scroll-margin-top: 140px;
}
.tcl-text-block.has-sep {
  border-top: 1px solid var(--line);
}
.tcl-text-block.bg-crem {
  background: var(--crem);
}
.tcl-text-block.bg-crem2 {
  background: var(--crem2);
}
.tcl-text-block .wrap {
  max-width: 820px;
  text-align: center;
}
.tcl-text-block .eyebrow {
  color: var(--terra);
}
.tcl-text-block p {
  color: var(--ink2);
  font-weight: 300;
  font-size: 1.08rem;
  margin-bottom: 1rem;
}
.tcl-text-block p:last-child {
  margin-bottom: 0;
}

.tcl-text-block-title {
  font-family: var(--disp);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.1;
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  margin: 0.6rem 0 1.2rem;
}

.tcl-tag-band {
  background: var(--dark);
  color: #fff;
  padding: 80px 0;
  border-top: 1px solid var(--line);
}
.tcl-tag-band.no-sep {
  border-top: none;
}
.tcl-tag-band .wrap {
  max-width: 900px;
  text-align: center;
}
.tcl-tag-band .eyebrow {
  color: #F4E3B0;
}
.tcl-tag-band p {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
  font-size: 1.08rem;
  margin-bottom: 1.6rem;
}
.tcl-tag-band p b {
  color: #fff;
}
.tcl-tag-band .tags {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.tcl-tag-band .tag {
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.6em 1.2em;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.tcl-tag-band-title {
  font-family: var(--disp);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.1;
  color: #fff;
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  margin: 0.6rem 0 1.2rem;
}

.tcl-news {
  padding: 88px 0;
}

.tcl-news-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 940px) {
  .tcl-news-cards {
    grid-template-columns: 1fr;
  }
}

.tcl-news-card {
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: 0.3s;
}
.tcl-news-card:hover {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
.tcl-news-card .ph {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.tcl-news-card .ph a {
  display: block;
  width: 100%;
  height: 100%;
}
.tcl-news-card .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.tcl-news-card:hover .ph img {
  transform: scale(1.06);
}
.tcl-news-card .bd {
  padding: 26px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.tcl-news-card .date {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--terra);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.tcl-news-card h3,
.tcl-news-card .tcl-news-card-title {
  font-family: var(--disp);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.1;
  font-size: 1.25rem;
  margin: 0.6rem 0 0.7rem;
}
.tcl-news-card p {
  font-size: 0.92rem;
  color: var(--ink2);
  font-weight: 300;
  flex: 1;
  margin-bottom: 1.3rem;
}

.tcl-news-all {
  display: flex;
  justify-content: center;
  margin-top: 52px;
}

.tcl-actu {
  padding: 80px 0;
}

.tcl-actu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  grid-auto-rows: 1fr;
}
@media (max-width: 940px) {
  .tcl-actu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .tcl-actu-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }
}

.tcl-acard {
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: 0.3s;
  text-decoration: none;
}
.tcl-acard:hover {
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}
.tcl-acard .aph {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.tcl-acard .aph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
.tcl-acard:hover .aph img {
  transform: scale(1.05);
}
.tcl-acard .abody {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.tcl-acard .acat {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.6rem;
}
.tcl-acard .adate {
  font-size: 0.76rem;
  color: var(--ink2);
  margin-bottom: 0.5rem;
}
.tcl-acard .atitle {
  font-family: var(--disp);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.1;
  font-size: 1.2rem;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 0.6rem;
  min-height: 3em;
}
.tcl-acard .aexc {
  font-size: 0.92rem;
  color: var(--ink2);
  font-weight: 300;
  line-height: 1.55;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1rem;
}
.tcl-acard .alnk {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terra);
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  margin-top: auto;
}
.tcl-acard:hover .alnk {
  gap: 0.7em;
}

.tcl-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 50px;
}
.tcl-pagination a.page-numbers,
.tcl-pagination span.page-numbers,
.tcl-pagination button {
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.9rem;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink2);
  transition: 0.25s;
}
.tcl-pagination a.page-numbers,
.tcl-pagination button {
  cursor: pointer;
}
.tcl-pagination a.page-numbers:hover,
.tcl-pagination button:hover:not(:disabled) {
  border-color: var(--terra);
  color: var(--terra);
}
.tcl-pagination span.current,
.tcl-pagination button.active {
  background: var(--terra);
  border-color: var(--terra);
  color: #fff;
}
.tcl-pagination button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.tcl-pagination .prev,
.tcl-pagination .next,
.tcl-pagination .pnav {
  width: auto;
  padding: 0 16px;
}
.tcl-pagination .dots {
  border: none;
  background: none;
  cursor: default;
}

.tcl-art-hero-img {
  margin: -40px auto 0;
  max-width: 960px;
  position: relative;
  z-index: 2;
  padding: 0 28px;
}
.tcl-art-hero-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/8;
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.tcl-article {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 28px 80px;
}
.tcl-article p {
  color: var(--ink2);
  font-size: 1.08rem;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1.4rem;
}
.tcl-article p.lead, .tcl-article.is-lead-first > p:first-of-type {
  font-size: 1.25rem;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.6;
}
.tcl-article h2 {
  font-family: var(--disp);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.1;
  font-size: 1.9rem;
  margin: 2.4rem 0 1rem;
  color: var(--ink);
}
.tcl-article h3 {
  font-family: var(--disp);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.1;
  font-size: 1.35rem;
  margin: 1.8rem 0 0.8rem;
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0;
}
.tcl-article ul {
  list-style: none;
  margin: 0 0 1.6rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.tcl-article ul li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: var(--ink2);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.6;
}
.tcl-article ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--terra);
  border-radius: 50%;
  margin-top: 0.6em;
  flex-shrink: 0;
}
.tcl-article ol {
  margin: 0 0 1.6rem;
  padding-left: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.tcl-article ol li {
  color: var(--ink2);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.6;
}
.tcl-article blockquote {
  border-left: 3px solid var(--terra);
  background: var(--crem2);
  padding: 24px 30px;
  margin: 2rem 0;
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.5;
}
.tcl-article blockquote p {
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  color: inherit;
  line-height: inherit;
  margin: 0;
}
.tcl-article blockquote p + p {
  margin-top: 1rem;
}
.tcl-article cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 600;
  color: var(--terra);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.tcl-article table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.8rem 0;
  font-size: 0.98rem;
}
.tcl-article th {
  background: var(--vert);
  color: #fff;
  text-align: left;
  padding: 14px 18px;
  font-family: var(--disp);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tcl-article td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--ink2);
  font-weight: 300;
}
.tcl-article tbody tr:nth-child(even) td {
  background: var(--crem);
}
.tcl-article .wp-block-table {
  overflow-x: auto;
  margin: 1.8rem 0;
}
.tcl-article .wp-block-table table {
  margin: 0;
}
.tcl-article img {
  height: auto;
}
.tcl-article > img,
.tcl-article figure {
  margin: 1.8rem 0;
}
.tcl-article figure img {
  margin: 0;
}
.tcl-article figcaption {
  margin-top: 0.6rem;
  font-size: 0.86rem;
  color: var(--ink2);
  font-weight: 300;
  text-align: center;
}
.tcl-article p a,
.tcl-article li a {
  color: var(--terra);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.tcl-art-gallery {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px 80px;
}
.tcl-art-gallery-title {
  font-family: var(--disp);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.1;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  color: var(--ink);
}
.tcl-art-gallery .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.tcl-art-gallery .grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  cursor: pointer;
  transition: 0.3s;
}
.tcl-art-gallery .grid img:hover {
  opacity: 0.85;
  transform: scale(1.02);
}
@media (max-width: 700px) {
  .tcl-art-gallery .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.tcl-contact-sec {
  padding: 80px 0;
}

.tcl-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
}
@media (max-width: 860px) {
  .tcl-contact-grid {
    grid-template-columns: 1fr;
  }
}

.tcl-contact-left {
  padding: 48px 44px;
  background: #fff;
}
.tcl-contact-left .eyebrow {
  color: var(--terra);
}
.tcl-contact-left > p {
  color: var(--ink2);
  font-weight: 300;
  margin-bottom: 1.8rem;
}
@media (max-width: 860px) {
  .tcl-contact-left {
    order: 1;
  }
}

.tcl-contact-title {
  font-family: var(--disp);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.1;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin: 0.5rem 0 0.6rem;
}

.tcl-contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tcl-contact-form input,
.tcl-contact-form select,
.tcl-contact-form textarea {
  font-family: var(--body);
  font-size: 0.95rem;
  padding: 0.85em 1em;
  border: 1px solid var(--line);
  background: var(--crem);
  color: var(--ink);
  width: 100%;
}
.tcl-contact-form input::placeholder,
.tcl-contact-form select::placeholder,
.tcl-contact-form textarea::placeholder {
  color: var(--ink2);
  opacity: 0.7;
}
.tcl-contact-form input:focus,
.tcl-contact-form select:focus,
.tcl-contact-form textarea:focus {
  outline: none;
  border-color: var(--terra);
}
.tcl-contact-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%234A4B3C' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1em center;
  padding-right: 2.4em;
  cursor: pointer;
}
.tcl-contact-form textarea {
  resize: vertical;
  min-height: 110px;
}
.tcl-contact-form button {
  background: var(--terra);
  color: #fff;
  border: none;
  border-radius: 0;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1.1em;
  margin-top: 0.4rem;
  cursor: pointer;
  transition: 0.25s;
  width: 100%;
}
.tcl-contact-form button:hover {
  background: var(--terra-d);
}

.tcl-contact-map {
  position: relative;
  min-height: 520px;
}
.tcl-contact-map > iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(1.05);
}
.tcl-contact-map .map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  z-index: 2;
  pointer-events: none;
}
.tcl-contact-map .map-pin svg {
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.35));
}
@media (max-width: 860px) {
  .tcl-contact-map {
    min-height: 360px;
    order: 2;
  }
}

.tcl-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(20, 24, 15, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.tcl-modal.open {
  display: flex;
}

.tcl-modal-box {
  background: #fff;
  max-width: 480px;
  width: 100%;
  padding: 38px 34px;
  position: relative;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
  max-height: 90vh;
  overflow-y: auto;
}
.tcl-modal-box.is-sm {
  max-width: 460px;
  max-height: none;
  overflow-y: visible;
}
.tcl-modal-box .sub {
  font-size: 0.9rem;
  color: var(--ink2);
  margin-bottom: 1.4rem;
  font-weight: 300;
}
.tcl-modal-box .modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--crem2);
  border: none;
  width: 38px;
  height: 38px;
  font-size: 1.3rem;
  cursor: pointer;
  line-height: 1;
  transition: 0.25s;
}
.tcl-modal-box .modal-close:hover {
  background: var(--terra);
  color: #fff;
}
.tcl-modal-box .modal-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tcl-modal-box .modal-form input,
.tcl-modal-box .modal-form textarea {
  font-family: var(--body);
  font-size: 0.95rem;
  padding: 0.8em 1em;
  border: 1px solid var(--line);
  background: var(--crem);
  color: var(--ink);
  width: 100%;
}
.tcl-modal-box .modal-form input::placeholder,
.tcl-modal-box .modal-form textarea::placeholder {
  color: var(--ink2);
  opacity: 0.7;
}
.tcl-modal-box .modal-form input:focus,
.tcl-modal-box .modal-form textarea:focus {
  outline: none;
  border-color: var(--terra);
}
.tcl-modal-box .modal-form textarea {
  resize: vertical;
  min-height: 80px;
}
.tcl-modal-box .modal-form .stage-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.tcl-modal-box .modal-form .stage-field span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink2);
}
.tcl-modal-box .modal-form .stage-field input {
  background: var(--crem2);
  border-color: var(--terra);
  color: var(--ink);
  font-weight: 600;
  cursor: default;
}
.tcl-modal-box .modal-form button {
  background: var(--terra);
  color: #fff;
  border: none;
  border-radius: 0;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1em;
  margin-top: 0;
  cursor: pointer;
  transition: 0.25s;
  width: 100%;
}
.tcl-modal-box .modal-form button:hover {
  background: var(--terra-d);
}
.tcl-modal-box.is-sm .modal-form textarea {
  min-height: 90px;
}

.tcl-modal-title {
  font-family: var(--disp);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.1;
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.tcl-join {
  background: var(--terra);
  color: #fff;
  padding: 0;
  position: relative;
  overflow: hidden;
}
.tcl-join::after {
  content: "";
  position: absolute;
  right: 6%;
  top: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}
.tcl-join .eyebrow {
  color: #F4E3B0;
}
.tcl-join p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0.8rem 0 0;
  font-weight: 300;
}

.tcl-join-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
}
@media (max-width: 940px) {
  .tcl-join-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.tcl-join-title {
  font-family: var(--disp);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.1;
  font-size: 2.2rem;
  color: #fff;
}

.tcl-join-form {
  background: #fff;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tcl-join-form input,
.tcl-join-form textarea {
  font-family: var(--body);
  font-size: 0.95rem;
  padding: 0.85em 1em;
  border: 1px solid var(--line);
  background: var(--crem);
  color: var(--ink);
  width: 100%;
}
.tcl-join-form input::placeholder,
.tcl-join-form textarea::placeholder {
  color: var(--ink2);
  opacity: 0.7;
}
.tcl-join-form input:focus,
.tcl-join-form textarea:focus {
  outline: none;
  border-color: var(--terra);
}
.tcl-join-form textarea {
  resize: vertical;
  min-height: 90px;
}
.tcl-join-form button {
  background: var(--terra);
  color: #fff;
  border: none;
  border-radius: 0;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1em;
  margin-top: 0;
  cursor: pointer;
  transition: 0.25s;
  width: 100%;
}
.tcl-join-form button:hover {
  background: var(--terra-d);
}

.tcl-filters {
  position: sticky;
  top: var(--tcl-header-h, 64px);
  z-index: 40;
  background: var(--crem);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
@media (max-width: 940px) {
  .tcl-filters {
    position: static;
  }
}

.tcl-filters-inner {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.tcl-filters-inner .filter-btn {
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.75em 1.5em;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink2);
  cursor: pointer;
  transition: 0.25s;
}
.tcl-filters-inner .filter-btn:hover {
  border-color: var(--terra);
  color: var(--terra);
}
.tcl-filters-inner .filter-btn.active {
  background: var(--terra);
  border-color: var(--terra);
  color: #fff;
}

.tcl-form {
  --tcl-form-gap: 14px;
  --tcl-form-field-pad: .85em 1em;
  --tcl-form-textarea-min: 110px;
  --tcl-form-submit-pad: 1.1em;
  --tcl-form-submit-mt: .4rem;
}
.tcl-form .elementor-form-fields-wrapper {
  --grid-column-gap: 0px;
  --grid-row-gap: 0px;
  display: flex;
  flex-direction: column;
  gap: var(--tcl-form-gap);
  margin: 0;
}
.tcl-form .elementor-field-group {
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}
.tcl-form .elementor-field-label {
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink2);
  margin-bottom: 0.35rem;
  padding: 0;
  line-height: 1.4;
}
.tcl-form .elementor-field-required .elementor-field-label:after,
.tcl-form .elementor-mark-required .elementor-field-label:after {
  color: var(--terra);
}
.tcl-form .elementor-field-group input.elementor-field,
.tcl-form .elementor-field-group input[type=text].elementor-field,
.tcl-form .elementor-field-group input[type=email].elementor-field,
.tcl-form .elementor-field-group input[type=tel].elementor-field,
.tcl-form .elementor-field-group input[type=url].elementor-field,
.tcl-form .elementor-field-group input[type=number].elementor-field,
.tcl-form .elementor-field-group input[type=date].elementor-field,
.tcl-form .elementor-field-group input[type=time].elementor-field,
.tcl-form .elementor-field-group textarea.elementor-field,
.tcl-form .elementor-field-group select.elementor-field,
.tcl-form .elementor-field-group .elementor-select-wrapper select,
.tcl-form .elementor-field-group .elementor-field-textual {
  font-family: var(--body);
  font-size: 0.95rem;
  padding: var(--tcl-form-field-pad);
  border: 1px solid var(--line);
  background: var(--crem);
  color: var(--ink);
  width: 100%;
}
.tcl-form .elementor-field-group input.elementor-field::placeholder,
.tcl-form .elementor-field-group input[type=text].elementor-field::placeholder,
.tcl-form .elementor-field-group input[type=email].elementor-field::placeholder,
.tcl-form .elementor-field-group input[type=tel].elementor-field::placeholder,
.tcl-form .elementor-field-group input[type=url].elementor-field::placeholder,
.tcl-form .elementor-field-group input[type=number].elementor-field::placeholder,
.tcl-form .elementor-field-group input[type=date].elementor-field::placeholder,
.tcl-form .elementor-field-group input[type=time].elementor-field::placeholder,
.tcl-form .elementor-field-group textarea.elementor-field::placeholder,
.tcl-form .elementor-field-group select.elementor-field::placeholder,
.tcl-form .elementor-field-group .elementor-select-wrapper select::placeholder,
.tcl-form .elementor-field-group .elementor-field-textual::placeholder {
  color: var(--ink2);
  opacity: 0.7;
}
.tcl-form .elementor-field-group input.elementor-field,
.tcl-form .elementor-field-group input[type=text].elementor-field,
.tcl-form .elementor-field-group input[type=email].elementor-field,
.tcl-form .elementor-field-group input[type=tel].elementor-field,
.tcl-form .elementor-field-group input[type=url].elementor-field,
.tcl-form .elementor-field-group input[type=number].elementor-field,
.tcl-form .elementor-field-group input[type=date].elementor-field,
.tcl-form .elementor-field-group input[type=time].elementor-field,
.tcl-form .elementor-field-group textarea.elementor-field,
.tcl-form .elementor-field-group select.elementor-field,
.tcl-form .elementor-field-group .elementor-select-wrapper select,
.tcl-form .elementor-field-group .elementor-field-textual {
  border-radius: 0;
  box-shadow: none;
  line-height: 1.6;
  min-height: 0;
  transition: border-color 0.25s;
}
.tcl-form .elementor-field-group input.elementor-field:focus,
.tcl-form .elementor-field-group input[type=text].elementor-field:focus,
.tcl-form .elementor-field-group input[type=email].elementor-field:focus,
.tcl-form .elementor-field-group input[type=tel].elementor-field:focus,
.tcl-form .elementor-field-group input[type=url].elementor-field:focus,
.tcl-form .elementor-field-group input[type=number].elementor-field:focus,
.tcl-form .elementor-field-group input[type=date].elementor-field:focus,
.tcl-form .elementor-field-group input[type=time].elementor-field:focus,
.tcl-form .elementor-field-group textarea.elementor-field:focus,
.tcl-form .elementor-field-group select.elementor-field:focus,
.tcl-form .elementor-field-group .elementor-select-wrapper select:focus,
.tcl-form .elementor-field-group .elementor-field-textual:focus {
  outline: none;
  border-color: var(--terra);
  box-shadow: none;
}
.tcl-form .elementor-select-wrapper {
  padding: 0;
  border: 0;
  background: none;
  display: block;
  position: relative;
}
.tcl-form .elementor-select-wrapper .select-caret-down-wrapper {
  display: none;
}
.tcl-form .elementor-field-group .elementor-select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%234A4B3C' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1em center;
  padding-right: 2.4em;
  cursor: pointer;
}
.tcl-form .elementor-field-group select.elementor-field {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%234A4B3C' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1em center;
  padding-right: 2.4em;
  cursor: pointer;
}
.tcl-form .elementor-field-group textarea.elementor-field,
.tcl-form .elementor-field-group.elementor-field-type-textarea textarea {
  resize: vertical;
  min-height: var(--tcl-form-textarea-min);
}
.tcl-form .elementor-field-subgroup {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.2rem;
}
.tcl-form .elementor-field-subgroup .elementor-field-option {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--ink2);
}
.tcl-form .elementor-field-subgroup input[type=checkbox],
.tcl-form .elementor-field-subgroup input[type=radio] {
  accent-color: var(--terra);
  width: auto;
}
.tcl-form .elementor-field-type-acceptance .elementor-field-option label {
  font-size: 0.85rem;
  color: var(--ink2);
  font-weight: 300;
}
.tcl-form .elementor-field-type-submit {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.tcl-form .elementor-field-type-submit .elementor-button {
  background: var(--terra);
  color: #fff;
  border: none;
  border-radius: 0;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: var(--tcl-form-submit-pad);
  margin-top: var(--tcl-form-submit-mt);
  cursor: pointer;
  transition: 0.25s;
  width: 100%;
}
.tcl-form .elementor-field-type-submit .elementor-button:hover {
  background: var(--terra-d);
}
.tcl-form .elementor-field-type-submit .elementor-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  text-decoration: none;
  line-height: 1.2;
  box-shadow: none;
}
.tcl-form .elementor-field-type-submit .elementor-button-content-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
}
.tcl-form .elementor-field-type-submit .elementor-button-text {
  flex-grow: 0;
}
.tcl-form .elementor-field-type-submit .elementor-button-icon {
  display: inline-flex;
}
.tcl-form .elementor-message {
  font-family: var(--body);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.5;
  background: var(--crem2);
  border-left: 3px solid var(--vert);
  color: var(--ink);
  padding: 16px 20px;
  margin-top: 14px;
}
.tcl-form .elementor-message.elementor-message-success {
  border-left-color: var(--vert);
}
.tcl-form .elementor-message.elementor-message-danger, .tcl-form .elementor-message.elementor-error {
  border-left-color: var(--terra);
  color: var(--terra-d);
}
.tcl-form .elementor-message.elementor-help-inline {
  background: none;
  border: none;
  padding: 0;
  margin-top: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--terra-d);
}
.tcl-form .elementor-field-group.elementor-error .elementor-field,
.tcl-form .elementor-field-group.elementor-error .elementor-field-textual {
  border-color: var(--terra);
}
.tcl-form.is-modal, .tcl-modal-box .tcl-form {
  --tcl-form-gap: 12px;
  --tcl-form-field-pad: .8em 1em;
  --tcl-form-textarea-min: 80px;
  --tcl-form-submit-pad: 1em;
  --tcl-form-submit-mt: 0;
}
.tcl-modal-box.is-sm .tcl-form {
  --tcl-form-textarea-min: 90px;
}
.tcl-form.is-join, .tcl-join-inner .tcl-form {
  --tcl-form-textarea-min: 90px;
  --tcl-form-submit-pad: 1em;
  --tcl-form-submit-mt: 0;
  background: #fff;
  padding: 32px;
}

.tcl-form-msg {
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.5;
}
.tcl-form-msg:empty {
  display: none;
}
.tcl-form-msg.is-pending {
  color: var(--ink2);
}
.tcl-form-msg.is-ok {
  color: var(--vert-d);
  background: rgba(108, 156, 0, 0.1);
  padding: 0.8em 1em;
  margin-top: 1rem;
}
.tcl-form-msg.is-ko {
  color: var(--terra-d);
  background: rgba(192, 84, 0, 0.1);
  padding: 0.8em 1em;
  margin-top: 1rem;
}

.tcl-form.is-done > *:not(.tcl-form-result) {
  display: none;
}

.tcl-form-result:not([hidden]) {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.9rem;
  padding: 2rem 1.5rem;
  outline: none;
}
.tcl-form-result .tcl-form-result-ico {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.tcl-form-result .tcl-form-result-ico svg {
  width: 28px;
  height: 28px;
}
.tcl-form-result .tcl-form-result-text {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink2);
  margin: 0;
  max-width: 34ch;
}
.tcl-form-result .tcl-form-retry {
  width: auto;
  margin-top: 0.2rem;
  padding: 0.9em 2.2em;
}
.tcl-form-result.is-ok .ico-ko, .tcl-form-result.is-ok .tcl-form-retry {
  display: none;
}
.tcl-form-result.is-ok .tcl-form-result-ico {
  background: rgba(108, 156, 0, 0.14);
  color: var(--vert-d);
}
.tcl-form-result.is-ko .ico-ok {
  display: none;
}
.tcl-form-result.is-ko .tcl-form-result-ico {
  background: rgba(192, 84, 0, 0.12);
  color: var(--terra-d);
}

.tcl-join .tcl-form-result .tcl-form-result-text {
  color: rgba(255, 255, 255, 0.9);
}
.tcl-join .tcl-form-result.is-ok .tcl-form-result-ico {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.tcl-join .tcl-form-result.is-ko .tcl-form-result-ico {
  background: rgba(0, 0, 0, 0.22);
  color: #fff;
}

.tcl-join .tcl-form-msg.is-pending {
  color: rgba(255, 255, 255, 0.8);
}
.tcl-join .tcl-form-msg.is-ok {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
}
.tcl-join .tcl-form-msg.is-ko {
  color: #fff;
  background: rgba(0, 0, 0, 0.22);
}

.tcl-stages {
  padding: 80px 0;
}

.tcl-stages-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 52px;
}
.tcl-stages-intro .eyebrow {
  color: var(--terra);
}
.tcl-stages-intro p {
  color: var(--ink2);
  font-weight: 300;
  font-size: 1.06rem;
  margin-bottom: 0.9rem;
}

.tcl-stages-intro-title {
  font-family: var(--disp);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.1;
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  margin: 0.5rem 0 1.2rem;
}

.tcl-stages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  grid-auto-rows: 1fr;
}
@media (max-width: 1100px) {
  .tcl-stages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  .tcl-stages-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }
}

.tcl-stage-card {
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 26px 24px 24px;
  transition: 0.3s;
}
.tcl-stage-card:hover {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}
.tcl-stage-card .stg-tag {
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35em 0.8em;
  margin-bottom: 1rem;
}
.tcl-stage-card .stg-tag.enf {
  background: #EAF0DF;
  color: var(--vert-d);
}
.tcl-stage-card .stg-tag.ad {
  background: #F7E7D8;
  color: var(--terra-d);
}
.tcl-stage-card .stg-meta {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding-bottom: 1.1rem;
  margin-bottom: 1.1rem;
  border-bottom: 1px solid var(--line);
}
.tcl-stage-card .stg-meta li {
  font-size: 0.94rem;
  color: var(--ink);
  font-weight: 300;
  line-height: 1.35;
}
.tcl-stage-card .stg-meta li b {
  display: block;
  font-weight: 600;
  color: var(--ink2);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}
.tcl-stage-card .stg-meta li .places {
  font-weight: 600;
  color: var(--vert-d);
}
.tcl-stage-card .stg-meta li .places.full {
  color: var(--terra-d);
}
.tcl-stage-card .stg-foot {
  margin-top: auto;
}
.tcl-stage-card .stg-price {
  margin-bottom: 1.4rem;
}
.tcl-stage-card .stg-price .from {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink2);
  margin-bottom: 0.2rem;
}
.tcl-stage-card .stg-price .amount {
  font-family: var(--disp);
  font-size: 1.7rem;
  color: var(--terra);
  line-height: 1;
}
.tcl-stage-card .stg-price .unit {
  font-size: 0.86rem;
  color: var(--ink2);
  font-weight: 300;
  margin-left: 0.3rem;
}
.tcl-stage-card .btn {
  width: 100%;
  justify-content: center;
}

.tcl-stage-card-title {
  font-family: var(--disp);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.1;
  font-size: 1.28rem;
  line-height: 1.22;
  margin-bottom: 1rem;
  min-height: 2.5em;
}
@media (max-width: 620px) {
  .tcl-stage-card-title {
    min-height: 0;
  }
}

.tcl-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 70px 0 32px;
}

.tcl-foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.tcl-foot-grid .tcl-foot-col-title {
  color: var(--white);
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.6;
  margin-bottom: 1.1rem;
}
.tcl-foot-grid ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.92rem;
}
.tcl-foot-grid a:hover {
  color: #fff;
}
@media (max-width: 940px) {
  .tcl-foot-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .tcl-foot-grid {
    grid-template-columns: 1fr;
  }
}

.tcl-foot-brand img {
  height: 56px;
  margin-bottom: 1rem;
}
.tcl-foot-brand p {
  font-size: 0.9rem;
  max-width: 32ch;
}

.tcl-foot-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 26px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.tcl-foot-social {
  display: flex;
  gap: 0.7rem;
  margin-top: 1rem;
}
.tcl-foot-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  transition: 0.25s;
}
.tcl-foot-social a:hover {
  background: var(--vert);
}

.tcl-map {
  position: relative;
  height: 420px;
  overflow: hidden;
  background: var(--crem2);
  padding: 0;
  margin: 0;
}
.tcl-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(1.05);
  display: block;
}
.tcl-map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  z-index: 2;
  pointer-events: none;
  animation: tcl-pin-drop 0.6s ease-out;
}
.tcl-map-pin svg {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.35));
}
.tcl-map-pin .pin-pulse {
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 8px;
  background: rgba(192, 84, 0, 0.35);
  border-radius: 50%;
  animation: tcl-pin-pulse 2s ease-in-out infinite;
}
.tcl-map-card {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 3;
  background: #fff;
  padding: 20px 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  max-width: 280px;
}
.tcl-map-card b {
  font-family: var(--disp);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 0.4rem;
}
.tcl-map-card p {
  font-size: 0.86rem;
  color: var(--ink2);
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 0.8rem;
}
.tcl-map-card a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terra);
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
}
.tcl-map-card a:hover {
  gap: 0.7em;
}
@media (max-width: 560px) {
  .tcl-map {
    height: 340px;
  }
  .tcl-map-card {
    left: 16px;
    right: 16px;
    top: 16px;
    max-width: none;
  }
}
.tcl-map.is-inset {
  height: auto;
  min-height: 520px;
  background: none;
  overflow: visible;
}
.tcl-map.is-inset iframe {
  position: absolute;
  inset: 0;
}
.tcl-map.is-inset .tcl-map-pin {
  animation: none;
}
.tcl-map.is-inset .tcl-map-pin svg {
  width: 44px;
  height: 44px;
}
.tcl-map.is-inset .pin-pulse,
.tcl-map.is-inset .tcl-map-card {
  display: none;
}
@media (max-width: 860px) {
  .tcl-map.is-inset {
    min-height: 360px;
  }
}

@keyframes tcl-pin-drop {
  0% {
    transform: translate(-50%, -160%);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -100%);
    opacity: 1;
  }
}
@keyframes tcl-pin-pulse {
  0%, 100% {
    transform: translateX(-50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translateX(-50%) scale(1.5);
    opacity: 0.2;
  }
}
:root {
  --tcl-ease: cubic-bezier(.22, 1, .36, 1);
  --tcl-ease-slow: cubic-bezier(.16, 1, .3, 1);
  --tcl-rise: 640ms;
  --tcl-unveil: 900ms;
}

.tcl-motion [data-tcl-reveal] {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition: opacity var(--tcl-rise) var(--tcl-ease) var(--tcl-d, 0ms), transform var(--tcl-rise) var(--tcl-ease) var(--tcl-d, 0ms);
}
.tcl-motion [data-tcl-reveal].is-in {
  opacity: 1;
  transform: none;
}
.tcl-motion [data-tcl-reveal] .tcl-section-media.is-single img,
.tcl-motion [data-tcl-reveal] .tcl-section-media .p1,
.tcl-motion [data-tcl-reveal] .tcl-section-media .p2,
.tcl-motion [data-tcl-reveal] .tcl-block-img > img,
.tcl-motion [data-tcl-reveal] .tcl-art-hero-img > img {
  clip-path: inset(calc(100% + 100px) -100px -100px -100px);
  transition: clip-path var(--tcl-unveil) var(--tcl-ease-slow) var(--tcl-d, 0ms);
}
.tcl-motion [data-tcl-reveal] .tcl-section-media .p1 > img,
.tcl-motion [data-tcl-reveal] .tcl-section-media .p2 > img {
  transform: scale(1.06);
  transition: transform var(--tcl-unveil) var(--tcl-ease-slow) var(--tcl-d, 0ms);
}
.tcl-motion [data-tcl-reveal] .tcl-section-media .p2,
.tcl-motion [data-tcl-reveal] .tcl-section-media .p2 > img {
  transition-delay: calc(var(--tcl-d, 0ms) + 140ms);
}
.tcl-motion [data-tcl-reveal].is-in .tcl-section-media.is-single img,
.tcl-motion [data-tcl-reveal].is-in .tcl-section-media .p1,
.tcl-motion [data-tcl-reveal].is-in .tcl-section-media .p2,
.tcl-motion [data-tcl-reveal].is-in .tcl-block-img > img,
.tcl-motion [data-tcl-reveal].is-in .tcl-art-hero-img > img {
  clip-path: inset(-100px -100px -100px -100px);
}
.tcl-motion [data-tcl-reveal].is-in .tcl-section-media .p1 > img,
.tcl-motion [data-tcl-reveal].is-in .tcl-section-media .p2 > img {
  transform: none;
}
.tcl-motion [data-tcl-cascade] > * {
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  transition: opacity 520ms var(--tcl-ease) var(--tcl-d, 0ms), transform 520ms var(--tcl-ease) var(--tcl-d, 0ms);
}
.tcl-motion .is-in [data-tcl-cascade] > * {
  opacity: 1;
  transform: none;
}
.tcl-motion [data-tcl-reveal]:has([data-tcl-cascade]) {
  transform: none;
}
.tcl-motion .tcl-hero[data-tcl-reveal] {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .tcl-motion [data-tcl-reveal],
  .tcl-motion [data-tcl-reveal] .p1,
  .tcl-motion [data-tcl-reveal] .p2,
  .tcl-motion [data-tcl-cascade] > *,
  .tcl-motion [data-tcl-reveal] img {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    transition: none !important;
  }
}
.tcl-lb-src {
  cursor: zoom-in;
  transition: opacity 0.3s var(--tcl-ease, ease-out);
}
.tcl-lb-src:hover {
  opacity: 0.92;
}
.tcl-lb-src:focus-visible {
  outline: 3px solid var(--terra);
  outline-offset: 4px;
}

.tcl-lb-lock {
  overflow: hidden;
}

.tcl-lb {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 40px 20px 64px;
  background: rgba(32, 36, 15, 0.93);
  opacity: 0;
  transition: opacity 240ms var(--tcl-ease, cubic-bezier(0.22, 1, 0.36, 1));
}
.tcl-lb[hidden] {
  display: none;
}
.tcl-lb.is-open {
  opacity: 1;
}

.tcl-lb-fig {
  margin: 0;
  max-width: 92vw;
  max-height: 84vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transform: translate3d(0, 10px, 0) scale(0.97);
  transition: transform 320ms var(--tcl-ease, cubic-bezier(0.22, 1, 0.36, 1));
}
.is-open .tcl-lb-fig {
  transform: none;
}

.tcl-lb-img {
  max-width: 92vw;
  max-height: 74vh;
  width: auto;
  height: auto;
  display: block;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

.tcl-lb-cap {
  color: var(--crem);
  font-family: var(--body);
  font-weight: 300;
  font-size: 0.92rem;
  text-align: center;
  max-width: 60ch;
}
.tcl-lb-cap[hidden] {
  display: none;
}

.tcl-lb-count {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  color: rgba(251, 248, 241, 0.7);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}
.tcl-lb-count[hidden] {
  display: none;
}

.tcl-lb-close,
.tcl-lb-nav {
  border: none;
  background: rgba(251, 248, 241, 0.1);
  color: var(--crem);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.25s, color 0.25s;
}
.tcl-lb-close:hover,
.tcl-lb-nav:hover {
  background: var(--terra);
  color: #fff;
}
.tcl-lb-close:focus-visible,
.tcl-lb-nav:focus-visible {
  outline: 3px solid var(--crem);
  outline-offset: 3px;
}
.tcl-lb-close[hidden],
.tcl-lb-nav[hidden] {
  display: none;
}

.tcl-lb-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
}

.tcl-lb-nav {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.3rem;
  flex: 0 0 auto;
}

@media (max-width: 700px) {
  .tcl-lb {
    padding: 64px 12px 88px;
  }
  .tcl-lb-nav {
    position: absolute;
    bottom: 16px;
    width: 44px;
    height: 44px;
  }
  .tcl-lb-prev {
    left: calc(50% - 76px);
  }
  .tcl-lb-next {
    right: calc(50% - 76px);
  }
  .tcl-lb-count {
    bottom: 30px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .tcl-lb,
  .tcl-lb-fig,
  .tcl-lb-src {
    transition: none !important;
    transform: none !important;
  }
}
