/* contact-us — ported from tch-website-181/pages/contact-us.hbs,
   scoped under .tch-page so it cannot reach the shared header, footer,
   booking widgets or commerce surfaces. */
.tch-page .custom-hero-contact{
  position: relative !important;
  width: 100% !important;
  height: 100vh !important;
  min-height: 600px !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}.tch-page .custom-video-container{
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 1 !important;
}.tch-page .custom-hero-video{
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}.tch-page .custom-mobile-fallback{
  display: none !important;
  width: 100% !important;
  height: 100% !important;
}.tch-page .custom-fallback-image{
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}.tch-page .custom-video-overlay{
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.4), rgba(74, 85, 104, 0.3)) !important;
  z-index: 2 !important;
}.tch-page .custom-hero-content{
  position: relative !important;
  z-index: 3 !important;
  text-align: center !important;
  color: var(--white) !important;
  max-width: 800px !important;
  padding: 0 24px !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
}.tch-page .custom-content-wrapper{
  flex-grow: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
}.tch-page .custom-hero-title{
  font-family: var(--font-heading) !important;
  font-size: 48px !important;
  font-weight: 400 !important;
  line-height: 52px !important;
  margin-bottom: 8px !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3) !important;
  color: white;
}.tch-page .custom-title-underline{
  width: 32px !important;
  height: 4px !important;
  background-color: var(--accent) !important;
  margin: 8px auto 24px !important;
  border-radius: 2px !important;
}.tch-page .custom-hero-subtitle{
  font-family: var(--font-body) !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 28px !important;
  margin-bottom: 32px !important;
  opacity: 0.95 !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3) !important;
}.tch-page .custom-contact-btn{
  font-family: var(--font-heading) !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  background-color: var(--brand-primary) !important;
  color: var(--white) !important;
  border: none !important;
  padding: 12px 24px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all var(--transition-fast) !important;
  box-shadow: 0 4px 12px rgba(240, 188, 94, 0.3) !important;
}.tch-page .custom-contact-btn:hover{
  background-color: var(--brand-dark) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(240, 188, 94, 0.4) !important;
}.tch-page .custom-contact-btn:focus{
  outline: 2px solid var(--brand-primary) !important;
  outline-offset: 2px !important;
}.tch-page .custom-scroll-indicator{
  position: absolute !important;
  bottom: 32px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 4 !important;
}.tch-page .custom-arrow-container{
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  animation: custom-bounce 2s infinite !important;
}.tch-page .custom-scroll-arrow{
  font-size: 20px !important;
  color: var(--white) !important;
  animation: custom-arrow-pulse 2s infinite !important;
}@keyframes custom-bounce{
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) !important;
  }
  40% {
    transform: translateY(-10px) !important;
  }
  60% {
    transform: translateY(-5px) !important;
  }
}@keyframes custom-arrow-pulse{
  0%, 100% {
    opacity: 0.7 !important;
  }
  50% {
    opacity: 1 !important;
  }
}@media (max-width: 767px){.tch-page .custom-hero-video{
    display: none !important;
  }.tch-page .custom-mobile-fallback{
    display: block !important;
  }.tch-page .custom-hero-contact{
    min-height: 80vh !important;
    height: 80vh !important;
  }.tch-page .custom-hero-title{
    font-size: 32px !important;
    line-height: 36px !important;
  }.tch-page .custom-hero-subtitle{
    font-size: 16px !important;
    line-height: 24px !important;
  }.tch-page .custom-hero-content{
    padding: 0 16px !important;
  }.tch-page .custom-scroll-indicator{
    bottom: 24px !important;
  }}@media (max-width: 480px){.tch-page .custom-hero-title{
    font-size: 28px !important;
    line-height: 32px !important;
  }.tch-page .custom-hero-subtitle{
    font-size: 14px !important;
    line-height: 20px !important;
    margin-bottom: 24px !important;
  }.tch-page .custom-contact-btn{
    font-size: 14px !important;
    padding: 10px 20px !important;
  }}@media (min-width: 768px) and (max-width: 991px){.tch-page .custom-hero-title{
    font-size: 40px !important;
    line-height: 44px !important;
  }.tch-page .custom-hero-subtitle{
    font-size: 17px !important;
    line-height: 26px !important;
  }}.tch-page .custom-details-section{
  background-color: #FFFFFF !important;
  padding: 64px 0 !important;
}.tch-page .custom-details-container{
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
}.tch-page .custom-details-title{
  font-family: var(--font-heading) !important;
  font-size: 36px !important;
  font-weight: 400 !important;
  line-height: 40px !important;
  color: var(--gray-dark) !important;
  margin-bottom: 16px !important;
  text-align: center !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}.tch-page .custom-details-subtitle{
  font-family: var(--font-body) !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 24px !important;
  color: var(--neutral) !important;
  margin-bottom: 48px !important;
  text-align: center !important;
}.tch-page .custom-details-grid{
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 24px !important;
  justify-content: center !important;
}.tch-page .custom-detail-card{
  flex: 0 1 calc(33.333% - 16px) !important;
  min-width: 300px !important;
  max-width: 400px !important;
  background-color: var(--white) !important;
  border: 1px solid var(--gray-light) !important;
  border-radius: 8px !important;
  padding: 32px 24px !important;
  text-align: center !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
  transition: all var(--transition-fast) !important;
  cursor: pointer !important;
}.tch-page .custom-detail-card:hover{
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15) !important;
  transform: translateY(-4px) !important;
  border-color: var(--brand-primary) !important;
}.tch-page .custom-card-icon{
  width: 64px !important;
  height: 64px !important;
  background-color: var(--brand-primary) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto 24px !important;
  transition: all var(--transition-fast) !important;
}.tch-page .custom-detail-card:hover .custom-card-icon{
  background-color: var(--brand-dark) !important;
  transform: scale(1.1) !important;
}.tch-page .custom-card-icon i{
  font-size: 24px !important;
  color: var(--white) !important;
}.tch-page .custom-card-title{
  font-family: var(--font-heading) !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 22px !important;
  color: var(--gray-dark) !important;
  margin-bottom: 16px !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}.tch-page .custom-card-link{
  font-family: var(--font-body) !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  line-height: 24px !important;
  color: var(--brand-primary) !important;
  text-decoration: none !important;
  display: block !important;
  margin-bottom: 16px !important;
  transition: all var(--transition-fast) !important;
}.tch-page .custom-card-link:hover{
  color: var(--brand-dark) !important;
  text-decoration: underline !important;
}.tch-page .custom-card-description{
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 20px !important;
  color: var(--neutral) !important;
  margin-bottom: 0 !important;
}.tch-page .custom-card-address{
  margin-bottom: 16px !important;
}.tch-page .custom-address-text{
  font-family: var(--font-body) !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 22px !important;
  color: var(--gray-dark) !important;
  margin-bottom: 16px !important;
}.tch-page .custom-map-container{
  border-radius: 8px !important;
  overflow: hidden !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}.tch-page .custom-map-embed{
  width: 100% !important;
  height: 150px !important;
  border: none !important;
  border-radius: 8px !important;
}@media (max-width: 991px){.tch-page .custom-detail-card{
    flex: 0 1 calc(50% - 12px) !important;
  }}@media (max-width: 767px){.tch-page .custom-details-container{
    padding: 0 16px !important;
  }.tch-page .custom-details-title{
    font-size: 28px !important;
    line-height: 32px !important;
  }.tch-page .custom-details-subtitle{
    font-size: 14px !important;
    line-height: 20px !important;
    margin-bottom: 32px !important;
  }.tch-page .custom-detail-card{
    flex: 0 1 100% !important;
    padding: 24px 20px !important;
  }.tch-page .custom-card-icon{
    width: 56px !important;
    height: 56px !important;
    margin-bottom: 20px !important;
  }.tch-page .custom-card-icon i{
    font-size: 20px !important;
  }.tch-page .custom-card-title{
    font-size: 16px !important;
    line-height: 20px !important;
  }.tch-page .custom-card-link{
    font-size: 16px !important;
    line-height: 22px !important;
  }}@media (max-width: 480px){.tch-page .custom-details-title{
    font-size: 24px !important;
    line-height: 28px !important;
  }.tch-page .custom-detail-card{
    padding: 20px 16px !important;
  }}.tch-page .custom-faq-section{
  background-color: #FFFFFF !important;
  padding: 64px 0 !important;
}.tch-page .custom-faq-container{
  max-width: 800px !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
}.tch-page .custom-faq-title{
  font-family: var(--font-heading) !important;
  font-size: 36px !important;
  font-weight: 400 !important;
  line-height: 40px !important;
  color: var(--gray-dark) !important;
  margin-bottom: 16px !important;
  text-align: center !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}.tch-page .custom-faq-subtitle{
  font-family: var(--font-body) !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 24px !important;
  color: var(--neutral) !important;
  margin-bottom: 48px !important;
  text-align: center !important;
}.tch-page .custom-faq-accordion{
  margin-bottom: 48px !important;
}.tch-page .custom-faq-item{
  border: 1px solid var(--gray-light) !important;
  border-radius: 8px !important;
  margin-bottom: 16px !important;
  overflow: hidden !important;
  transition: all var(--transition-fast) !important;
}.tch-page .custom-faq-item:hover{
  border-color: var(--brand-primary) !important;
  box-shadow: 0 2px 8px rgba(240, 188, 94, 0.1) !important;
}.tch-page .custom-faq-question{
  width: 100% !important;
  padding: 20px 24px !important;
  background-color: var(--white) !important;
  border: none !important;
  text-align: left !important;
  cursor: pointer !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  font-family: var(--font-heading) !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 22px !important;
  color: var(--gray-dark) !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  transition: all var(--transition-fast) !important;
}.tch-page .custom-faq-question:hover{
  background-color: #F9FAFB !important;
  color: var(--brand-primary) !important;
}.tch-page .custom-faq-question:focus{
  outline: 2px solid var(--brand-primary) !important;
  outline-offset: 2px !important;
}.tch-page .custom-faq-question[aria-expanded="true"]{
  background-color: var(--brand-primary) !important;
  color: var(--white) !important;
}.tch-page .custom-faq-question[aria-expanded="true"] .custom-faq-icon{
  transform: rotate(45deg) !important;
}.tch-page .custom-faq-icon{
  font-size: 16px !important;
  transition: transform var(--transition-fast) !important;
  flex-shrink: 0 !important;
}.tch-page .custom-faq-answer{
  max-height: 0 !important;
  overflow: hidden !important;
  transition: max-height 300ms ease !important;
}.tch-page .custom-faq-answer.open{
  max-height: 200px !important;
}.tch-page .custom-faq-content{
  padding: 0 24px 24px 24px !important;
  background-color: #F9FAFB !important;
}.tch-page .custom-faq-content p{
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 22px !important;
  color: var(--gray-dark) !important;
  margin-bottom: 0 !important;
}.tch-page .custom-faq-cta{
  text-align: center !important;
  padding: 32px 24px !important;
  background-color: #F9FAFB !important;
  border-radius: 12px !important;
  border: 1px solid var(--gray-light) !important;
}.tch-page .custom-faq-cta-title{
  font-family: var(--font-heading) !important;
  font-size: 24px !important;
  font-weight: 400 !important;
  line-height: 28px !important;
  color: var(--gray-dark) !important;
  margin-bottom: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}.tch-page .custom-faq-cta-text{
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 20px !important;
  color: var(--neutral) !important;
  margin-bottom: 24px !important;
}.tch-page .custom-faq-contact-btn{
  font-family: var(--font-heading) !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  background-color: var(--brand-primary) !important;
  color: var(--white) !important;
  border: none !important;
  padding: 12px 24px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all var(--transition-fast) !important;
  box-shadow: 0 4px 12px rgba(240, 188, 94, 0.3) !important;
}.tch-page .custom-faq-contact-btn:hover{
  background-color: var(--brand-dark) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(240, 188, 94, 0.4) !important;
}.tch-page .custom-faq-contact-btn:focus{
  outline: 2px solid var(--brand-primary) !important;
  outline-offset: 2px !important;
}@media (max-width: 767px){.tch-page .custom-faq-container{
    padding: 0 16px !important;
  }.tch-page .custom-faq-title{
    font-size: 28px !important;
    line-height: 32px !important;
  }.tch-page .custom-faq-subtitle{
    font-size: 14px !important;
    line-height: 20px !important;
    margin-bottom: 32px !important;
  }.tch-page .custom-faq-question{
    padding: 16px 20px !important;
    font-size: 16px !important;
    line-height: 20px !important;
  }.tch-page .custom-faq-content{
    padding: 0 20px 20px 20px !important;
  }.tch-page .custom-faq-cta{
    padding: 24px 20px !important;
  }.tch-page .custom-faq-cta-title{
    font-size: 20px !important;
    line-height: 24px !important;
  }.tch-page .custom-faq-contact-btn{
    font-size: 14px !important;
    padding: 10px 20px !important;
  }}@media (max-width: 480px){.tch-page .custom-faq-title{
    font-size: 24px !important;
    line-height: 28px !important;
  }.tch-page .custom-faq-question{
    padding: 14px 16px !important;
    font-size: 14px !important;
    line-height: 18px !important;
  }.tch-page .custom-faq-content{
    padding: 0 16px 16px 16px !important;
  }.tch-page .custom-faq-content p{
    font-size: 13px !important;
    line-height: 20px !important;
  }.tch-page .custom-faq-cta{
    padding: 20px 16px !important;
  }.tch-page .custom-faq-cta-title{
    font-size: 18px !important;
    line-height: 22px !important;
  }}.tch-page .custom-contact-section{
  background-color: #F9FAFB !important;
  padding: 64px 0 !important;
}.tch-page .custom-contact-container{
  max-width: 800px !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
}.tch-page .custom-contact-content{
  background-color: var(--white) !important;
  padding: 48px !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1) !important;
}.tch-page .custom-section-title{
  font-family: var(--font-heading) !important;
  font-size: 36px !important;
  font-weight: 400 !important;
  line-height: 40px !important;
  color: var(--gray-dark) !important;
  margin-bottom: 16px !important;
  text-align: center !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}.tch-page .custom-section-subtitle{
  font-family: var(--font-body) !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 24px !important;
  color: var(--neutral) !important;
  margin-bottom: 32px !important;
  text-align: center !important;
}.tch-page .custom-form-row{
  display: flex !important;
  gap: 16px !important;
  margin-bottom: 0 !important;
}.tch-page .custom-form-group{
  margin-bottom: 24px !important;
  flex: 1 !important;
}.tch-page .custom-form-label{
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: var(--gray-dark) !important;
  margin-bottom: 8px !important;
  display: block !important;
}.tch-page .custom-form-input{
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 20px !important;
  padding: 12px !important;
  border: 1px solid var(--gray-light) !important;
  border-radius: 4px !important;
  width: 100% !important;
  transition: all var(--transition-fast) !important;
  background-color: var(--white) !important;
  color: var(--gray-dark) !important;
}.tch-page .custom-form-input:focus{
  outline: none !important;
  border: 2px solid var(--brand-primary) !important;
  box-shadow: 0 0 0 2px rgba(240, 188, 94, 0.2) !important;
}.tch-page .custom-form-input.error{
  border: 2px solid var(--error) !important;
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2) !important;
}.tch-page .custom-form-select{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e") !important;
  background-position: right 8px center !important;
  background-repeat: no-repeat !important;
  background-size: 16px 12px !important;
  padding-right: 40px !important;
  appearance: none !important;
}.tch-page .custom-form-textarea{
  resize: vertical !important;
  min-height: 100px !important;
}.tch-page .custom-form-error{
  font-family: var(--font-body) !important;
  font-size: 12px !important;
  color: var(--error) !important;
  margin-top: 4px !important;
  display: none !important;
}.tch-page .custom-form-error.show{
  display: block !important;
}.tch-page .custom-checkbox-group{
  margin-bottom: 32px !important;
}.tch-page .custom-checkbox-label{
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  cursor: pointer !important;
  font-family: var(--font-body) !important;
}.tch-page .custom-checkbox-input{
  position: absolute !important;
  opacity: 0 !important;
  cursor: pointer !important;
}.tch-page .custom-checkbox-custom{
  width: 20px !important;
  height: 20px !important;
  border: 2px solid var(--gray-light) !important;
  border-radius: 4px !important;
  position: relative !important;
  flex-shrink: 0 !important;
  transition: all var(--transition-fast) !important;
  margin-top: 2px !important;
}.tch-page .custom-checkbox-input:checked + .custom-checkbox-custom{
  background-color: var(--brand-primary) !important;
  border-color: var(--brand-primary) !important;
}.tch-page .custom-checkbox-input:checked + .custom-checkbox-custom::after{
  content: '' !important;
  position: absolute !important;
  left: 6px !important;
  top: 2px !important;
  width: 6px !important;
  height: 10px !important;
  border: solid var(--white) !important;
  border-width: 0 2px 2px 0 !important;
  transform: rotate(45deg) !important;
}.tch-page .custom-checkbox-input:focus + .custom-checkbox-custom{
  box-shadow: 0 0 0 2px rgba(240, 188, 94, 0.2) !important;
}.tch-page .custom-checkbox-text{
  font-size: 14px !important;
  line-height: 20px !important;
  color: var(--gray-dark) !important;
}.tch-page .custom-btn-primary{
  font-family: var(--font-heading) !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  padding: 12px 24px !important;
  background-color: var(--brand-primary) !important;
  color: var(--white) !important;
  border: none !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all var(--transition-fast) !important;
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
}.tch-page .custom-btn-primary:hover:not(:disabled){
  background-color: var(--brand-dark) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(240, 188, 94, 0.3) !important;
}.tch-page .custom-btn-primary:focus{
  outline: 2px solid var(--brand-primary) !important;
  outline-offset: 2px !important;
}.tch-page .custom-btn-primary:disabled{
  opacity: 0.5 !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
}@media (max-width: 767px){.tch-page .custom-contact-content{
    padding: 32px 24px !important;
  }.tch-page .custom-section-title{
    font-size: 28px !important;
    line-height: 32px !important;
  }.tch-page .custom-form-row{
    flex-direction: column !important;
    gap: 0 !important;
  }}@media (max-width: 480px){.tch-page .custom-contact-container{
    padding: 0 16px !important;
  }.tch-page .custom-contact-content{
    padding: 24px 16px !important;
  }.tch-page .custom-section-title{
    font-size: 24px !important;
    line-height: 28px !important;
  }.tch-page .custom-section-subtitle{
    font-size: 14px !important;
    line-height: 20px !important;
  }}@media (prefers-reduced-motion: reduce){.tch-page .custom-arrow-container, .tch-page .custom-scroll-arrow{
    animation: none !important;
  }.tch-page .custom-contact-btn:hover, .tch-page .custom-btn-primary:hover{
    transform: none !important;
  }.tch-page .custom-form-input, .tch-page .custom-checkbox-custom, .tch-page .custom-btn-primary{
    transition: none !important;
  }}
